11.06.2013, 15:08
eae, bom eu criei um comando ta muito zuado eu nгo sei arrumar quando eu digito /punir id tempo eo motivo aparece o tempo tem que se maior que 0 nгo tem como eu prender o ID do jogador e tbm n estб aparecendo o administrador... prendeu o jogador fulano tempo motivo....
pawn Код:
if(strcmp(cmd, "/punirr", 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, "| ERRO | Digite: /punirr [id] [Tempo] [motivo]");
return 1;
}
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, Vermelho, "| ERRO | Digite: /punirr [id] [Tempo] [motivo]");
return 1;
}
new time = strval(tmp);
if(time < 1 || time > 20) {SendClientMessage(playerid, Vermelho, "| ERRO | O Tempo nгo pode ser menor que 1 nem maior que 20 !"); return 1; }
tmp = strtok(cmdtext, idx);
{
SendClientMessage(playerid, Vermelho, "| ERRO | Digite: /punirr [id] [Tempo] [motivo]");
return 1;
}
plid = strval(tmp);
new pname[MAX_PLAYER_NAME];
GetPlayerName(plid, pname, MAX_PLAYER_NAME);
format(file2, sizeof(file2), PASTA_CONTAS, pname);
if(IsPlayerConnected(plid)){
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' ')) {
idx++;
}
new Hour,Min,Sec;
gettime(Hour,Min,Sec);
SetPlayerPos(plid, 263.8820,77.4002,1001.0391);
SetPlayerInterior(plid, 6);
SetPlayerHealth(plid, 99999);
ResetPlayerWeapons(plid);
dini_IntSet(file2, "Preso", 1);
SendClientMessageToAll(tcadm, string);
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))
{
format(string,256,"| INFO | O administrador %s Prendeu o jogador %s Tempo %d :( Motivo: %s )", Hour,Min,Sec);
GameTextForPlayer(playerid,"~w~ PRESO", 2000, 1);
Preso[plid] = 1;
}
}else{
format(string, sizeof(string), " | ERRO | ID %d invбlido!", plid);
SendClientMessage(playerid, Vermelho, string);
}
}
return 1;
}