View Single Post
  #1  
Old 12-23-2001, 11:04 PM
jeff335 jeff335 is offline
Registered User
Join Date: Oct 2001
Posts: 605
jeff335 is on a distinguished road
A tip for you all

Instead of using real hardcoded death in your health systems, use the following in your timeout:

if(playerhearts<playerfullhearts){
playerhearts=playerfullhearts;
hitpoints--;
if(hitpoints<1){
disabledefmovement;
setani dead;
sleep 5;
setani idle;
enabledefmovement;
}
}
__________________

Quote:
Some people like standing around talking to idiots in the real world, and some don't. Neither choice is inherently better than the other.

-Kaimetsu
Reply With Quote