28.04.2012, 00:55
Meu amigo fez este comando para mim, mais tipo ele da o seguinte erro mesmo a conta existindo fala Nome Invalido.
Se puderem me ajudar eu agradeзo
Se puderem me ajudar eu agradeзo
pawn Код:
if(strcmp(cmd, "/agendar",true) == 0)
{
if(IsPlayerConnected(playerid))
{
new tempo[20], file[128], tempo2;
if(PlayerInfo[playerid][pAdmin] < 2) return SendClientMessage(playerid, COLOR_GREY, " Vocк nгo esta autorizado para usar este comando!");
tmp = strtok(cmdtext, idx);
tempo = strtok(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid, COLOR_GRAD2, "USE: /agendar [Nome] [Tempo] [Motivo]");
if(!strlen(tempo)) return SendClientMessage(playerid, COLOR_GRAD2, "USE: /agendar [Nome] [Tempo] [Motivo]");
if(admtrampando[playerid] < 1) return SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/jogar)");
giveplayerid = ReturnUser(tmp);
tempo2 = strval(tempo);
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' ')) idx++;
new offset = idx;
new result[100];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!IsPlayerConnected(giveplayerid))
{
if(dini_Exists(file))
{
format(file,sizeof(file), "Contas/%s.ini", giveplayerid);
GetPlayerName(playerid, sendername, sizeof(sendername));
format(string, sizeof(string), "O admin %s agendou %s, %s minutos, Motivo: %s",PlayerName(playerid), giveplayerid, tempo, (result));
SendClientMessageToAll(COLOR_LIGHTRED, string);
dini_IntSet(file, "pJailed", 6);
dini_IntSet(file, "pJailTime", tempo2 * 60);
}
else return SendClientMessage(playerid, COLOR_GREY, " Nome Invalido! !");
}
else
{
SendClientMessage(playerid, COLOR_GREY, " O jogador estб online... Use o comando comum para prendelo. !");
return true;
}
}
return true;
}