[AJUDA] Comandos bugados!
#1

eae gente, to com um problema aqui de uns comandos que precisa de ID do player tipo /kick...
peguei uns comandos de um gamemode e passei pro meu gm, do GM que eu peguei estб beleza o comando mais quando pus no meu e digitei /kick jб apareceu uma msg falando que nгo pode kikar sem uma razгo apropiada. e quando digite esse comando: "/kick 0 teste" nem precisa do id do player aн kika o id 0 com o motivo: 0 teste
alguem pode ajudar ae ?

Comando:
Code:
if(strcmp(cmd, "/kick", true) == 0) {
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, aname);
if(pAdmin[playerid] == 1 || pAdmin[playerid] == 2 || pAdmin[playerid] == 3 || pAdmin[playerid] == 4 || pAdmin[playerid] == 5){
new tmp[256];
new plid;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) {
SendClientMessage(playerid, Vermelho, "Digite: /kick [id] [motivo]");
return 1;
}
plid = strval(tmp);
if(IsPlayerConnected(plid)){
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, Vermelho, "(ERRO) Vocк sу pode kickar com uma razгo apropriada.");
}else{
new pname[MAX_PLAYER_NAME];
GetPlayerName(plid, pname, MAX_PLAYER_NAME);
format(string, sizeof(string), "* Vocк kickou o jogador %s.", pname);
SendClientMessage(plid, tcadm, string);
format(string, sizeof(string), "* O Administrador %s kickou o jogador: %s (Motivo: %s)", aname,pname,result);
SendClientMessageToAll(tcadm, string);
GameTextForPlayer(plid,"~r~kickado~w~!", 2500, 3);
SetPlayerPos(plid, 831.9581,-1102.1510,24.2969);
Kick(plid);
}
}else{
format(string, sizeof(string), "(ERRO) ID %d nгo й valido!", plid);
SendClientMessage(playerid, Vermelho, string);
}
}
return 1;
}
isso acontece tambem com o comando /ban [id] [motivo] , /vida [id] [quantia]...

Obg !
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)