script help

Desolation Mir2 (Med Rate Server)

K_Jonzy

Golden Oldie
Golden Oldie
Oct 8, 2008
590
15
105
My House
ok in my m2server it says:
15/10/2010 15:47:08] Quest problem: goto @wizardf Row:55 Filename: .\Envir\Npc_def\NoobHelp-0.txt
[15/10/2010 15:47:08] Quest problem: goto @warriorf Row:62 Filename: .\Envir\Npc_def\NoobHelp-0.txt
[15/10/2010 15:47:08] Quest problem: goto @taof Row:69 Filename: .\Envir\Npc_def\NoobHelp-0.txt
[15/10/2010 15:47:08] Quest problem: goto @wizard Row:76 Filename: .\Envir\Npc_def\NoobHelp-0.txt
[15/10/2010 15:47:08] Quest problem: goto @warrior Row:83 Filename: .\Envir\Npc_def\NoobHelp-0.txt
[15/10/2010 15:47:08] Quest problem: goto @tao Row:90 Filename: .\Envir\Npc_def\NoobHelp-0.txt

heres the script, i cant figure out whats wrong with it...

Code:
i can help you. give me your noob token \
and i shall give you kit and levels.
<give noobtoken/@noooob>\
<no thanks/@exit>\

[@noooob]
#if
checkitem noobtoken
#act
take noobtoken
goto @noob12gender
#elseact
sendmsg 6 "you dont have a noob token"

[@noob12gender]
are you a male or female character?\
<male/@male>\
<female/@female>\

[@male]
#if 
gender man
#act
goto @dmale
#elseact
sendmsg 6 "your no man"
break


[@dmale]
#if
checkjob wizard
goto @wizard
#elseact
goto @checkwarrior

[@female]
#if 
gender woman
#act
goto @fmale
#elseact
sendmsg 6 "your no woman"
break



[@fmale]
#if
checkjob wizard
goto @wizardf
#elseact
goto @checkwarriorf

[@checkwarrior]
#if
checkjob warrior
goto @warriorf
#elseact
goto @taof

[@tao]
#if
checkjob taoist
goto @taof
#elseact
break

[@checkwarrior]
#if
checkjob warrior
goto @warrior
#elseact
goto @tao

[@tao]
#if
checkjob taoist
goto @tao
#elseact
break

[@warriorf]
#act
give StarterBlade
give StarterArmour(F)
give StarterRing 2
give StartedGlove 2
give StarterShoes
give StarterWhip
Give StarterNeckl
Give StarterMask
Give WarLight
sendmsg 6 "you have recieved warrior kit"

[@warrior]
#act
give StarterBlade
give StarterArmour(M)
give StarterRing 2
give StartedGlove 2
give StarterShoes
give StarterWhip
Give StarterNeckl
Give StarterMask
Give WarLight
sendmsg 6 "you have recieved warrior kit"

[@tao]
#act
give StarterFan
give StarterDrapes(M)
give StartersRing 2
give StartedBrace 2
give StarterWarmers
give StarterBuckle
Give StarterNecklace
Give StarterHelmet
Give TaoLight
sendmsg 6 "you have recieved taoist kit"

[@taof]
#act
give StarterFan
give StarterDrapes(F)
give StarterRing 2
give StartedBrace 2
give StarterWarmers
give StarterBuckle
Give StarterNecklace
Give StarterHelmet
Give TaoLight
sendmsg 6 "you have recieved taoist kit"

[@wizard]
#act
give StarterStaff
give StarterRobe(M)
give StarterCircle 2
give StartedBand 2
give StarterBoots
give StarterBelt
Give StarterNeck
Give StarterHelm
Give WizLight
sendmsg 6 "you have recieved wizard kit"

[@wizardf]
#act
give StarterStaff
give StarterRobe(F)
give StarterCircle 2
give StartedBand 2
give StarterBoots
give StarterBelt
Give StarterNeck
Give StarterHelm
Give WizLight
sendmsg 6 "you have recieved wizard kit"
 

Bon

Legend
Legendary
Jul 29, 2004
6,745
346
330
Kent, UK
isnt it obvious?

[@fmale]
#if
checkjob wizard
goto @wizardf
#elseact
goto @checkwarriorf

u got no #act...


[@fmale]
#if
checkjob wizard
#act
goto @wizardf
#elseact
goto @checkwarriorf
 
Upvote 0