help pelase with telly npc :(

SoulReaper

Dedicated Member
Dedicated Member
Apr 14, 2004
114
1
115
i cant get him working :(
this is my script...

;Info [ Npc Name{WtGodTelly} X=315 Y=271 MapName={Bichon-Province} ]

[@main]
#IF
checklevel 50
#ACT
goto @heslevel50
#ELSESAY
Sorry your to low my friend.
<Leave/@exit>
#Say
Hello i can telly you to WoomaGodTemp\
<ok/@teleport>

[@teleport]
#IF
checkgold 1000000
#ACT
take gold 1000000
mapmove WOOMAGODTEPLEF1 1346 358
give TownTeleport 1
break

thanksx
 

••Ðøåkÿ••

Too cool to post :)
Golden Oldie
Apr 12, 2004
1,010
0
142
[@main]
#IF
checklevel 50
#ACT
goto @heslevel50
#ELSESAY
Sorry your to low my friend.
<Leave/@exit>
#Say
Hello i can telly you to WoomaGodTemp\

[@heslevel50]
#IF
checkgold 1000000
#ACT
take gold 1000000
mapmove WOOMAGODTEPLEF1
give TownTeleport 1
break

/Doaky
 
Upvote 0

Fire

Golden Oldie
Golden Oldie
Apr 15, 2003
1,302
1
195
Code:
;Info [ Npc Name{WtGodTelly} X=315 Y=271 MapName={Bichon-Province} ]

[@main]
#IF 
checklevel 50
#ACT 
goto @heslevel50
#ELSESAY
Sorry your too low my friend.
<Leave/@exit>

[@heslevel50]
#IF
#SAY 
Hello i can telly you to WoomaGodTemp\
<ok/@teleport>

[@teleport]
#IF
checkgold 1000000
#ACT
take gold 1000000
mapmove WOOMAGODTEPLEF1 1346 358
give TownTeleport 1

the one above might confict some things due to the goto in the #act and the fact there is a #say
 
Upvote 0

stephenking

I HAVE A DREAM!!
Developer
Aug 28, 2005
616
39
175
Netherlands
Code:
[@main]
#IF 
checklevel 50
#Say 
Hello i can telly you to WoomaGodTemp.\
<ok/@tel1> <no/@exit> thanks.\
#ELSESAY
Sorry your lvl is to low.\
<Leave/@exit>\
 
[@tel1]
#IF
checkgold 1000000
#ACT
take gold 1000000
mapmove WOOMAGODTEPLEF1 1346 358
give TownTeleport 1
break

this should be right i think
 
Upvote 0