28.03.2015, 15:01
Fiz agora, compilei e nгo apresentou erro, porйm nгo cheguei a testar.
PHP код:
/* Sistema de Anti-AFK simples
Criador: Luan Argolo
*/
#include <a_samp>
#include <zcmd>
//Variбveis Globais
new bool:EntrouAFK[MAX_PLAYERS], Celulas[128];
stock GetarNome(playerid) {
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, MAX_PLAYER_NAME);
return name;
}
CMD:afk(playerid) {
if(EntrouAFK[playerid] == false) {
format(Celulas, sizeof(Celulas), "O jogador %s entrou em AFK!", GetarNome(playerid));
SendClientMessageToAll(-1, Celulas);
GameTextForPlayer(playerid, "AFK!", 3000, 2);
EntrouAFK[playerid] = true;
TogglePlayerControllable(playerid, 0);
}
else {
format(Celulas, sizeof(Celulas), "O jogador %s nгo estб mais AFK", GetarNome(playerid));
SendClientMessageToAll(-1, Celulas);
EntrouAFK[playerid] = false;
TogglePlayerControllable(playerid, 1);
}
return 1;
}
CMD:jogadores_afk(playerid) {
for(new i = 0; i < MAX_PLAYERS; i++) {
if(EntrouAFK[i] == true) {
format(Celulas, sizeof(Celulas), "Jogador %s - [AFK]", GetarNome(i));
SendClientMessage(playerid, -1, Celulas);
}
}
return 1;
}