ID:149719
 
how can i stop a character from moving? I want him to not be able to move while healing then once he is full to let him move again.
I have a lib on that. Its called Easy Movement. you can find it under libraries or at http://www.planetrcet.w3site.com

-Rcet
I'm in a bored/giving mood:


mob
var
healing = 0

mob/verb/heal()
usr.healing = 1
//healing code here
sleep(30)
healing = 0
usr << "You are healed!"

client/Move()
if(!mob.healing)
return..()//move
else
return//no move
In response to Rcet
thanx again... i looked under demos, but the movement one there didn't help. I forgot to look under libraries.
In response to Netshark010101
how come rcet gives just to help the art succeed and yet nadrew has to be in a giving mood to help anybody
In response to Canar
When I'm in a giving mood I give away free code. When I'm not I help just like everyone else with helpful information and links.
In response to Nadrew
fair enough, again i can't complain because your demos and libraries have helped me many times. I just found it odd.