Can anyone tell me why this script wont work?

Play Now

chikwidik

Dedicated Member
Dedicated Member
Jun 20, 2003
23
0
77
;Info [ Npc Name{QuestMan} X=32 Y=34 MapName={Palace} ]
[@main]
#SAY
Hello <$USERNAME> I Need you to find\
Some items that have been stolen from my\
Home, Evil monsters came and stole 4 things\
from me!\
<Sure ill Help/@main-1>\
<Go away/@exit>\\

[@main-1]
#SAY
The items that they stole from me\
are 3 magic scrolls and a special Ring\
that i was making for a friend of Mine!\
<More/@main-2>\
<No Thanx/@exit>\\

[@main-2]
#SAY
The Magic Scrolls are very important\
to me as they were given to me by my father\
<More/@main-3>\\
<This sucks/@exit>\\

[@main-3]
#SAY
The ring has no special powers as it was not finished\
However when it is of great importance that\
that i get these items back.\
<Where do i look for them?/@main-4>\
<I Have your items for you!/@main-20>\
<Too much hastle mate/@exit>\\

[@main-4]
#SAY
Several Monsters stole my items as i have already said\
The Suspects are (insert monster names in here)\
If you kill these monsters soon you stand a good\
Chance of finding these item in there posession!\
<Ok im on my way to find them!!!/@exit>\\
<Thats too hard for me./@exit>\\

[@main-20]
#IF
checkitem MysticScroll 1
checkitem StrengthScroll 1
checkitem WarScroll 1
checkitem UnfinishedRing 1
#SAY
Wow you have done well my friend.\
What item would you like in return?\
<What do you have?/@main-99>\
#ELSESAY
Go Away i knew you couldn't do it.\
<Sorry/@exit>\\

[@main-99]
#SAY
I have 3 Rings that i have made depending\
on the job you do i can let you have one\
for returning my things to me!\
<Im a Warrior/@warrior>\
<Im a Taos/@taos>\
<Im A Wizard/@wizard>\
<Exit/@exit>\\

[@warrior]
checkjob Warrior
#SAY
Ah <$USERNAME> What a fine warrior you are.\
Thankyou for your Help.\
In Return i will give you the warRing.\
<Thankyou/@warring>\
<Exit/@exit>\\
#ELSESAY
You are not a Warrior go away you fool!!!\
[Exit/@exit>\\

[@warrring]
checkitem MysticScroll 1
checkitem StrengthScroll 1
checkitem WarScroll 1
checkitem UnfinishedRing 1
#ACT
take MysticScroll 1
take StrengthScroll 1
take WarScroll 1
take UnfinishedRing 1
give warring 1
break

[@tao]
checkjob taos
#SAY
Ah <$USERNAME> What a fine Toaist you are.\
Thankyou for your Help.\
In Return i will give you the taoRing.\
<Thankyou/@taoring>\
<Exit/@exit>\\
#ELSESAY
You are not a Taoist go away you fool!!!\
<Exit/@exit>\\

[@taoring]
checkitem MysticScroll 1
checkitem StrengthScroll 1
checkitem WarScroll 1
checkitem UnfinishedRing 1
#ACT
take MysticScroll 1
take StrengthScroll 1
take WarScroll 1
take UnfinishedRing 1
give taoring 1
break

[@wizard]
checkjob wizard
#SAY
Ah <$USERNAME> What a fine Wizard you are.\
Thankyou for your Help.\
In Return i will give you the WizRing.\
<Thankyou/@wizring>\
<Exit/@exit>\\
#ELSESAY
You are not a Wizard go away you fool!!!\
<Exit/@exit>\\

[@wizring]
checkitem MysticScroll 1
checkitem StrengthScroll 1
checkitem WarScroll 1
checkitem UnfinishedRing 1
#ACT
take MysticScroll 1
take StrengthScroll 1
take WarScroll 1
take UnfinishedRing 1
give wizring 1
break


Thanx for any help!!!
 

Mario_Party

Dedicated Member
Dedicated Member
May 9, 2003
36
0
82
[@warrior]
checkjob Warrior

should be

[@warrior]
#IF
checkjob warrior


and


[@tao]
checkjob taos

should be

[@tao]
#IF
checkjob taoist


and


[@wizard]
checkjob wizard

should be

[@wizard]
#IF
checkjob wizard

u basically left out all of the #IF statements everywhere.... like
#IF
checkitem x 1