[PEDIDO] /tvida /tcolete
#1

Alguem sabe onde posso encontrar algum tutorial ou codigo de /tvida e /tcolete para enxer vida e colete de todos online? alguem ajuda? sou iniciante
Reply
#2

pawn Код:
if ( strcmp ( cmdtext , "/tvida" , true ) == 0 ) {
    for ( new i = 0 ; i < GetMaxPlayers ( ) ; i++ ) {
        SetPlayerHealth ( i , 100 ) ;
    }
    return true ;
}
faзa o mesmo com o tcolete, apenas mude o SetPlayerHealth para SetPlayerArmor.
Reply
#3

pawn Код:
CMD:tvida(playerid)
{
    foreach(Player, i)
    {
        SetPlayerHealth(i, 100);
    }
    new Nome[ MAX_PLAYER_NAME ], string[ 128 ], GetPlayerName(playerid, Nome, MAX_PLAYER_NAME);
    format(string, sizeof(string), "O administrador %s, restaurou a vida de todos online!", Nome);
    SendClientMessageToAll(-1, string);
    return 1;
}

CMD:tcolete(playerid)
{
    foreach(Player, i)
    {
        SetPlayerArmour(i, 100);
    }
    new Nome[ MAX_PLAYER_NAME ], string[ 128 ], GetPlayerName(playerid, Nome, MAX_PLAYER_NAME);
    format(string, sizeof(string), "O administrador %s, restaurou o colete de todos online!", Nome);
    SendClientMessageToAll(-1, string);
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)