[Ajuda] /ban em zcmd.
#4

pawn Код:
CMD:ban(playerid, params[])
{
    new id, motivo[128], iname[MAX_PLAYER_NAME], pname[MAX_PLAYER_NAME], text[128], file[50];
    GetPlayerName(id, iname, sizeof(iname));
    GetPlayerName(playerid, pname, sizeof(pname));
    format(file, sizeof(file), "Contas/%s.ini", pname);
    if(sscanf(params, "us[128]", id, motivo)) return SendClientMessage(playerid, 0xFF0000AA, "[ERRO] Use /ban [id] [motivo]");
    if(!IsPlayerConnected(id)) return SendClientMessage(playerid, 0xFF0000AA, "[ERRO] Jogador nгo conectado.");
    format(text, sizeof(text), "[ADMIN] O(a) Administrador(a) %s baniu o(a) jogador(a) %s. Motivo: %s", pname, iname, motivo);
    SendClientMessageToAll(0xFF0000AA, text);
    format(text, sizeof(text), "[BAN] Vocк foi banido(a) pelo(a) Administrador(a) %s. Motivo: %s", pname, motivo);
    SendClientMessage(id, 0xFF0000AA, text);
    DOF2_SetInt(file, "Banido", 1);
    GameTextForPlayer(id, "~r~BANIDO(a)", 8000, 0);
    DOF2_SetString(file, "Banido por", pname);
    DOF2_SaveFile();
    TogglePlayerControllable(id, 0);
    Kick(id);
    return 1;
    }
Reply


Messages In This Thread
/ban em zcmd. - by Luiiiz - 14.12.2016, 15:20
Re: /ban em zcmd. - by FStralioti - 14.12.2016, 16:05
Re: /ban em zcmd. - by LockedLucas - 14.12.2016, 16:54
Re: /ban em zcmd. - by wender_sousa - 14.12.2016, 17:28
Re: /ban em zcmd. - by F1N4L - 14.12.2016, 17:30
Re: /ban em zcmd. - by Luiiiz - 14.12.2016, 17:51
Re: /ban em zcmd. - by LockedLucas - 14.12.2016, 17:57
Re: /ban em zcmd. - by Luiiiz - 14.12.2016, 18:24

Forum Jump:


Users browsing this thread: 1 Guest(s)