21.12.2017, 06:48
https://sampforum.blast.hk/showthread.php?tid=580508
ou
https://sampforum.blast.hk/showthread.php?tid=502080
Comando usando o 1° sistema:
Comando usando o 2° sistema:
ou
https://sampforum.blast.hk/showthread.php?tid=502080
Comando usando o 1° sistema:
PHP код:
CMD:exp(playerid, params[])
{
new quantidade, adminName[MAX_PLAYER_NAME], string[128];
GetPlayerName(playerid, adminName, sizeof(adminName));
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, -1, "Erro: Vocк nгo estб logado na RCON!");
if(sscanf(params, "d", quantidade)) return SendClientMessage(playerid, -1, "Uso correto: /exp [quantidade]");
for(new i; i < MAX_PLAYERS; i++) { XP[i] += quantidade; }
format(string, sizeof(string), "O administrador %s deu %d XPs para todos!", adminName, quantidade);
SendClientMessageToAll(-1, string);
return 1;
}
PHP код:
CMD:exp(playerid, params[])
{
new quantidade, adminName[MAX_PLAYER_NAME], string[128];
GetPlayerName(playerid, adminName, sizeof(adminName));
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, -1, "Erro: Vocк nгo estб logado na RCON!");
if(sscanf(params, "d", quantidade)) return SendClientMessage(playerid, -1, "Uso correto: /exp [quantidade]");
for(new i; i < MAX_PLAYERS; i++) { Exp[i] += quantidade; }
format(string, sizeof(string), "O administrador %s deu %d XPs para todos!", adminName, quantidade);
SendClientMessageToAll(-1, string);
return 1;
}