ID:176764
![]() Dec 13 2002, 3:01 pm
|
|
IS there away so when u cast a spell that the waters density for only you becomes to a state where u can walk on it?
|
Dog Man wrote:
> turf What would i put for the walk_on_water var? |
Simply dont save that variable. Or if you do, just have part that resets it in your loading proc.
-DogMan |
Ummm. I would put a ..() in there, to make it do the defualt action of Login(). That's the only thing I can see that would cause it not to work.
mob Login() ..() walk_on_water = 0 -DogMan |
would this be a good code so after 30 seconds you cant walk on water anymore
Walk_on_water() walk_on_water = 1 sleep(300) walk_on_water = 0 |
Yeah, that would do the job. Your probably better off to use spawn(300).
Walk_on_water() walk_on_water = 1 spawn(300) walk_on_water = 0 |
2nd. You could use Enter(). Just make it so that the mob has a 'walk_on_water' variable. When you cast the spell, it sets that var to 1 (True). When you Enter() the water it will return 'walk_on_water'. So the water turf would look something like this.
3rd. If you just want it to walk through one water turf, and its a specific one (Like the one in front of them) just set there loc to the waters loc.
-DogMan