ID:178243
 
NT = No Text


SuperStorm
It depends which proc your trying to stop lets see the code that you want to stop.
In response to Strange Kidd
Strange Kidd wrote:
It depends which proc your trying to stop lets see the code that you want to stop.

i usually do somthing like this, it should work i made in notepad, and at school O.o

mob/var/dancing = 0
mob/proc/Dance()
theres
if(usr.dancing == 0)
return
else
usr.icon_state = "Dance"
usr << "You dance!"
sleep(50)
usr << sound("dancing.wav",0)
sleep(200)
goto(theres)

mob/verb/Dance()
switch(alert("Do what?","","Start dancing","Stop dancing"))
if("Start dancing")
usr.Dance()
usr.dancing = 1
if("Stop dancing")
usr.dancing = 0



RaeKwon
In response to RaeKwon
nono, im talking about, the window that lets u choose attack or run, when you die, it doesnt stop opening