
12-23-2001, 11:04 PM
|
|
Registered User
|
Join Date: Oct 2001
Posts: 605
|
|
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
|
|
|
|
|