turf
wall
icon_state="brickwall"
density=0
Enter(mob/M)
if(!M.onwall)
M.icon_state="spiderman walk on walls"
M.onwall=1
Exit(mob/M)
M.icon_state=""
M.onwall=0
Is there anything i can do so that i can move around once i enter() the turf? Right now after i enter it, It just seems dense and i can't walk through it.
~>Jiskuha
turf
wall
icon_state="brickwall"
density=0
Enter(mob/M)
M.icon_state="spiderman walk on walls"
M.onwall=1
Exit(mob/M)
M.icon_state=""
M.onwall=0