quest help

smoochy boys on tour

K_Jonzy

Golden Oldie
Golden Oldie
Oct 8, 2008
590
15
125
My House
ok heres a quest where u collect a variety of items...
i get the 1st quest done fine with the spiritsremains, but if i do the 2nd one and giv it a ghoulheart, next time i click it im back at ghoulheart quest.. any help please?
EDIT NEVERMIND I FIGURED IT OUT
script...
Code:
[@main]
hello there <$USERNAME> would you like to take\
part in a quest?\
there are 7 different quests you need to do\
and for each one. you get a nice prize.\
\
<yes please/@check>\
<no thanks/@exit>\


[@check]
#IF
check [301] 0
#ACT
goto @q1
#Elseact
goto @check1

[@check1]
#IF
check [301] 1
#ACT
goto @q2
#Elseact
goto @check2

[@check2]
#IF
check [302] 1
#ACT
goto @q3
#Elseact
goto @check3


[@check3]
#IF
check [303] 1
#ACT
goto @q4
#Elseact
goto @check4

[@check4]
#IF
check [304] 1
#ACT
goto @q5
#Elseact
goto @check5

[@check5]
#IF
check [305] 1
#ACT
goto @q6
#Elseact
goto @check6

[@check6]
#IF
check [306] 1
#ACT
goto @q7
#Elseact
goto @check7

[@check7]
#if
check [307] 1
#act
sendmsg 6 "you have completed all my quests"


[@q1]
ok, heres what you have to do. Bring me\
a SpiritsRemains. and you will have your prize.\
\
\
<i have your item/@q1check>\
<ok i will go get it/@exit>

[@q1check]
#if
checkitem spiritsremains 1
#act
take spiritsremains
give RedDragon
set [301] 1
#elseact
goto @end


[@q2]
ok, heres what you have to do. Bring me\
a GhoulHeart. and you will have your prize.\
\
\
<i have your item/@q2check>\
<ok i will go get it/@exit>

[@q2check]
#if
checkitem GhoulHeart 1
#act
take ghoulheart
give BlueDragon
set [302] 1
#elseact
goto @end


[@q3]
ok, heres what you have to do. Bring me\
a WoomaClaw. and you will have your prize.\
\
\
<i have your item/@q3check>\
<ok i will go get it/@exit>

[@q3check]
#if
checkitem WoomaClaw 1
give DeformedAngelWings
set [303] 1
take woomaclaw
#elseact
goto @end



[@q4]
ok, heres what you have to do. Bring me\
a BabyCentipede. and you will have your prize.\
\
\
<i have your item/@q4check>\
<ok i will go get it/@exit>

[@q4check]
#if
checkitem Babycentipede 1
#act
give EnergyWings
take babycentipede
set [304] 1
#elseact
goto @end



[@q5]
ok, heres what you have to do. Bring me\
a DDsToy. and you will have your prize.\
\
\
<i have your item/@q5check>\
<ok i will go get it/@exit>

[@q5check]
#if
checkitem DDsToy 1
#act
give CradleWings
take DDsToy
set [305] 1
#elseact
goto @end



[@q6]
ok, heres what you have to do. Bring me\
a SamuraiSword. and you will have your prize.\
\
\
<i have your item/@q6check>\
<ok i will go get it/@exit>

[@q6check]
#if
checkitem SamuraiSword 1
#act
give GradientWings
set [306] 1
take samuraisword
#elseact
goto @end



[@q7]
ok, heres what you have to do. Bring me\
a MirScale. and you will have your prize.\
\
\
<i have your item/@q7check>\
<ok i will go get it/@exit>

[@q7check]
#if
checkitem MirScale 1
#act
give CompanionWings
take mirscale
set [307] 1
#elseact
goto @end


[@end]
im sorry you do not have the items\
needed. dont try conn me!!\
\
<exit/@exit>