Comando : /kick | Nгo aparece ao player o motivo do kick! -
ScripterInicianteBR - 31.01.2015
Pessoal o comando /kick nгo ta aparecendo pro player que ele foi kikado aparece pra todos do server menos pra vitima kickada tipo
" Vocк foi kickado pelo administrador ... , Motivo : "
pawn Код:
if(strcmp(cmd, "/kick", true) == 0)
{
if(IsPlayerConnected(playerid))
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /kick [Nome_Sobrenome/ID] [motivo]");
return true;
}
giveplayerid = ReturnUser(tmp);
if (PlayerInfo[playerid][pAdmin] >= 1)
{
if(IsPlayerConnected(giveplayerid))
{
if(giveplayerid != INVALID_PLAYER_ID)
{
GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /kick [Id Do Jogador] [motivo]");
return true;
}
getdate(year, month, day);
if(admtrampando[playerid] == 1 && admhide[playerid] == 1)
{
format(string, sizeof(string), "AdmCmd: %s foi kickado por %s, Motivo: %s (%d-%d-%d)", giveplayer, sendername, (result),day,month,year);
KickLog(string);
format(string, sizeof(string), "AdmCmd: %s foi kickado por %s, Motivo: %s", giveplayer, sendername, (result));
SendClientMessageToAll(COLOR_LIGHTRED, string);
}
else
{
format(string, sizeof(string), "AdmCmd: %s foi kickado por %s, Motivo: %s (%d-%d-%d)", giveplayer, sendername, (result),day,month,year);
KickLog(string);
format(string, sizeof(string), "AdmCmd: %s foi kickado por %s, Motivo: %s", giveplayer, sendername, (result));
SendClientMessageToAll(COLOR_LIGHTRED, string);
}
TextDrawShowForPlayer(giveplayerid, TextKick[giveplayerid]);
Kick(giveplayerid);
return true;
}
}
}
else
{
QQIssoNovinha;
}
}
return true;
}
Re: Comando : /kick | Nгo aparece ao player o motivo do kick! -
NexNix - 31.01.2015
Й bug do sa-mp, use isso:
PHP код:
SetTimerEx("KickServer" ,1000, 0, "i", playerid);
forward KickServer(playerid);
public KickServer(playerid)
{
Kick(playerid);
return 1;
}
Re: Comando : /kick | Nгo aparece ao player o motivo do kick! -
zPain - 31.01.2015
Melhor soluзгo:
http://forum.sa-mp.com/showpost.php?...postcount=2486
Re: Comando : /kick | Nгo aparece ao player o motivo do kick! -
ScripterInicianteBR - 31.01.2015
@LucaAllexandre , cara eu procuro vйi quando nгo acho venho aqui , tu percebeu que em todos tуpico que peзo uma ajuda tu esta lб mandando eu procurar sendo que jб procurei quando nгo acho crio tуpico tudo ti me critica ...
@NexNix , Obrigado
@zPain , Deu certo obg