mob/verb/Push_Up()
if(!usr.push)
usr.push = 1
usr.icon_state="Push Up"
usr<<"You are now in push-up posistion please use your arrow keys... (Up / Down)"
return
if(usr.push)
usr.push=0
usr<<"You get up off the ground"
usr.icon_state=""
mob/proc/PU()
if(src.push)
Problem description:thats what i have so far, but im trying to make it so you must push the arrow keys ( up / down ) to move make your character actually do it and im clueless
Thanks to anyone that helps