ID:266475
 
this are the codes
    proc
Heat()
Start
sleep(5)
usr.HP -= 5
usr << "Your burning up!"
usr.Die()
sleep(65)
goto(Start)

proc
HeatExit()
sleep(5)
usr.HP -= 1

volcanoheat//Defines an area called forest
Entered()//When a mob enters this area
usr.Heat()
Exited()
usr.HeatExit()


after u enter the area volcano heat it calls the heat proc and it never stops how can i fix this?
when u exit put Heat(null)
In response to Strange Kidd
now its not calling the normal heat proc
ok it called the heat proc but its doing it like 10 times
The line "goto Start" is causing it to run an infinite loop. If you don't want it to run forever, don't use goto...