mob
Game_verbs
verb
Toggle_water_walking()
set category = "Commands"
if(usr.waterwalking==0)
for(var/turf/Water/W in world)
W.density = 0
usr.waterwalking=1
usr<<"<font color=red>You are now able to walk on water."
else
for(var/turf/Water/W in world)
W.density = 1
usr.waterwalking=0
usr<<"<font color=red>You are now not able to walk on water."
Problem description:
Well there isn't an error just something to do to the code as u can see i am doing a water walking code also that when i activate it all the water in the world goes undense make everyone able to walk on the water well i am trying to get it it so if you are using water walk then u can walk onto the water i tried using a enter proc and using return but wont work so help me please
I think this explains himself...