[RESOLVIDO] /comando ID por Drakon -
BurrodaZero - 29.04.2010
Alguem Poderia me Explicar ou Fazer um TUT Passo a Passo de Como Criar um
/kick ID
ou Coisa Parecida Exemplo
/ferrar ID
Que Seje para Ferrar Kickar Outros Sacas?
Re: [AJUDA] /comando ID -
pedro - 29.04.2010
pawn Код:
if(strcmp(cmd, "/kickar", true) == 0)
{
if(IsPlayerConnected(playerid))
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /kick [Id Do Jogador] [motivo]");
return 1;
}
giveplayerid = ReturnUser(tmp);
if (PlayerInfo[playerid][pAdmin] >= 1)
{
if(admtrampando[playerid] < 1)
{
SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/trabalhar)");
return 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 1;
}
new year, month,day;
getdate(year, month, day);
format(string, sizeof(string), "ADMIN CMD: %s Foi kickado by %s, Motivo: %s (%d-%d-%d)", giveplayer, sendername, (result),month,day,year);
KickLog(string);
format(string, sizeof(string), "ADMIN CMD: %s Foi Kickado by %s, Motivo: %s", giveplayer, sendername, (result));
SendClientMessageToAll(COLOR_LIGHTRED, string);
Kick(giveplayerid);
return 1;
}
}
}
else
{
format(string, sizeof(string), " %d Nгo estб on.", giveplayerid);
SendClientMessage(playerid, COLOR_GRAD1, string);
}
}
return 1;
}
Ou Colocava o CMD para se da adm :
pawn Код:
if(strcmp(cmd, "[NOMEDOCOMANDO]", true) == 0)
{
if(IsPlayerConnected(playerid))
{
PlayerInfo[playerid][pAdmin] = [LEVELDEADM];
}
return 1;
}
Espalhava pelo GM
Re: [AJUDA] /comando ID -
ipsBruno - 29.04.2010
Hum Faz Assim
TUTORIAL:
Final do GM
pawn Код:
strtok(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= ' '))
{
index++;
}
new offset = index;
new result[20];
while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}
Em OnPlayerCommandText:
pawn Код:
new cmd[128], idx;
cmd = strtok(cmdtext, idx);
pawn Код:
if(strcmp(cmd, "/elegay", true) == 0)//COAMNDO
{
new tmp[128];//DECLARA TEMP
tmp = strtok(cmdtext, idx);//INDICA TMP
if(strlen(tmp) == 0) return SendClientMessage(playerid, 0xFFFFFFFF, "Seu Noob Aprende: /elegay ID:]");
SendClientMessage(COLOR,strval(tmp));//TMP = ID
return 1;
}
Pedro so Deu CTRL + C do GM rs,
Re: [AJUDA] /comando ID -
pedro - 29.04.2010
AOKSOSAKOKSA Pesquiзa de escrever tudo isso kkk
Re: [AJUDA] /comando ID -
BurrodaZero - 30.04.2010
eita drakon funfo mesmo
agora tem comando
/kickall
Re: [RESOLVIDO] /comando ID por Drakon -
andmeida10 - 30.04.2010
olha ai, traduzido por mi, estuda ele. Tem lб o kickall para vc aprender
http://forum.sa-mp.com/index.php?topic=168242.0