[AJUDA] Como fazer comandos /kick e /ban somente para admin - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [AJUDA] Como fazer comandos /kick e /ban somente para admin (
/showthread.php?tid=272716)
[AJUDA] Como fazer comandos /kick e /ban somente para admin -
Niko_Bellik - 29.07.2011
Gostaria de saber como faz os comandos /kick e /ban, se alguem poder ajudar ai agradeзo
OBS: Jб procurei no search sim, mas quando vou colocar da erro sempre..
Respuesta: [AJUDA] Como fazer comandos /kick e /ban somente para admin -
D3IMON - 29.07.2011
http://forum.sa-mp.com/showthread.ph...ghlight=admins
__________________________________________________ ________
https://sampwiki.blast.hk/wiki/Kick
https://sampwiki.blast.hk/wiki/Ban
https://sampwiki.blast.hk/wiki/IsPlayerAdmin
Re: [AJUDA] Como fazer comandos /kick e /ban somente para admin -
Josma_cmd - 29.07.2011
https://sampwiki.blast.hk/wiki/Strtok
Re: [AJUDA] Como fazer comandos /kick e /ban somente para admin -
Macintosh - 29.07.2011
pawn Код:
if(strcmp("/kickar", cmdtext, true) == 0)
{
new idkickado,string[100];
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid, vermelho, "Uso Correto:{FFFFFF} /Kickar [ID]");
idkickado = strval(tmp);
Kick(idkickado);
format(string, sizeof(string), "[ADM-INFO] %s kickou %s", pNome(playerid), pNome(idkickado));
SendClientMessageToAll(-1, string);
return 1;
}
pawn Код:
if(strcmp("/banir", cmdtext, true) == 0)
{
new idbanido,string[100];
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid, vermelho, "Uso Correto:{FFFFFF} /Kickar [ID]");
idbanido = strval(tmp);
Kick(idbanido);
format(string, sizeof(string), "[ADM-INFO] %s baniu %s", pNome(playerid), pNome(idbanido));
SendClientMessageToAll(-1, string);
return 1;
}
pawn Код:
stock pNome(playerid)
{
new nome[MAX_PLAYER_NAME];
GetPlayerName(playerid, nome, sizeof(nome));
return nome;
}