How would i make it so after spawning(300) or whatever that if your on the water you teleport to where you casted the spell? My code is:
Walk_on_water()
set category = "Spells"
if(usr.mp-25 < 0)
usr <<"\green You dont have enough Mana!"
else
usr <<"\green You succefully cast the spell, now you can walk on water"
walk_on_water = 1
spawn(300)
walk_on_water = 0
usr <<"\green The spell ran out!"
ID:176757
![]() Dec 14 2002, 8:35 am (Edited on Dec 14 2002, 8:50 am)
|
|
Two little things you forgot here: You forgot to close the <B> tag for when the spell ran out, and you forgot to put your code in <DM> tags for the forum post--that always helps.
Of course, those don't relate to what you're asking.
To teleport back, you need to save your old location:
One thing I might suggest, instead of putting in "<B>\green ...</B>" all the time, is to make a short proc to output text in a spell format for you:
Lummox JR