ID:270059
 
How to make a beam goes in straight line like kamehameha?...non holming...How to transform to the person i want to transform to and then i turn back to myself i need help with that lol...and how to create a water walking verb?

thx for helping
1. Use walk to move the beam.

2. I have no idea what you want here.

3.
mob/var/waterwalk
mob/verb/Walk_on_Water()
usr.waterwalk = 1
turf/water/Enter(mob/M)
if(istype(M,/mob/))
if(M.waterwalk)
return 1
else
return 0


// fixed the 1 & 0- thanks
In response to Bobthehobo
You've changed the returns. Return 1 in enter means 'continue', let it allow'. Return 0 means stop all of the current actions.