[Pedido] SetPlayerHealth gradualmente
#1

Jб procurei bastante e nгo achei... eu queria que invйs de setar a vida do player de uma sу vez: SetPlayerHealth(playerid,100.0); setasse gradualmente, aos poucos com o passar do tempo tipo: seta +10 health a cada 1 segundo...
Reply
#2

SetTimer/Ex + Variaveis + GetPlayerHealth + SetPlayerHealth
Reply
#3

Espero que dк certo.

New...
PHP код:
new Float:HP
Setando o Life do Player e +10.
PHP код:
GetPlayerHealth(playeridHP);
SetPlayerHealth(playeridHP+10); 
Reply
#4

Isso,

pawn Код:
healtPlayer(); public healtPlayer(){



    static Float: pHealth[ MAX_PLAYERS ];
    static Int, MaxP;
   
   
    for(Int = 0, MaxP = GetMaxPlayers(); Int != MaxP; ++Int){
   
        if(IsPlayerConnected(Int)){
            GetPlayerHealth(Int, pHealth[Int]);
           
            if(pHealth[Int] < 100){
                SetPlayerHealth(Int, 5.0);
            }
        }
    }
    return true;
}
Reply
#5

Quote:
Originally Posted by @Riichard
Посмотреть сообщение
SetTimer/Ex + Variaveis + GetPlayerHealth + SetPlayerHealth
Darб certo
Reply
#6

Sу usar um SetTimerEx na funзao do gafield
Reply
#7

Consegui fazer aki com o cуdigo do garfield com umas alteraзхes e um SetTimerEx...Obrigado a todos que responderam!
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)