Page 1 of 1

Lives for player.

PostPosted: Thu Apr 05, 2007 1:32 pm
by Tytan McAnguns-PL
What to make the lives for player.
please instruction.

PostPosted: Thu Apr 05, 2007 1:55 pm
by makslane

PostPosted: Tue Apr 10, 2007 1:12 pm
by Tytan McAnguns-PL
Not working .
Errors lines !

PostPosted: Tue Apr 10, 2007 1:18 pm
by Kodo
Tytan McAnguns-PL wrote:Not working .
Errors lines !


We can't help you very well without more info!

PostPosted: Sat Apr 21, 2007 7:17 am
by Tytan McAnguns-PL
Exist a any tourial to lifes or health ?

PostPosted: Sat Apr 21, 2007 9:26 am
by Caaz Games
Tytan McAnguns-PL wrote:Exist a any tourial to lifes or health ?
ive posted an easy way to make an easy health bar! http://game-editor.com/forum/tp-3133-Ea ... h-Bar.html

PostPosted: Sat Apr 21, 2007 5:01 pm
by Sgt. Sparky
just make a variable called lives,
on the create actor event of the view,
[/code]lives--;[code]
when the player dies,
[code]if(lives >0)lives -= 1;
else
{
EventDisable("Event Actor", EVENTDESTROYACTOR);
DestroyActor("Event Actor");
}
[/code]
:D
I hope that helps