13.03.2012, 18:07
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
if ( strcmp ( cmdtext , "/tvida" , true ) == 0 ) {
for ( new i = 0 ; i < GetMaxPlayers ( ) ; i++ ) {
SetPlayerHealth ( i , 100 ) ;
}
return true ;
}
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;
}