05.04.2012, 22:02
nao consigo meter isto a dar.....
podem-me ajudar
quando eu fazo no jogo /ajustar [id] [tempo (minutos) apareçeme outra vez a dizer o mesmo "/ajustar [id] [tempo (minutos) nao tou a ver qual é o problema
podem-me ajudar
quando eu fazo no jogo /ajustar [id] [tempo (minutos) apareçeme outra vez a dizer o mesmo "/ajustar [id] [tempo (minutos) nao tou a ver qual é o problema
pawn Код:
if(strcmp(cmd, "/ajustar", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(IsACop(playerid))
{
if(OnDuty[playerid] != 1)
{
SendClientMessage(playerid, COLOR_GREY, " Você não Bateu o cartão!");
return true;
}
if(!PlayerToPoint(12.0, playerid, 268.3327,77.8972,1001.0391) && !PlayerToPoint(12.0, playerid, 1545.4073,-1607.9791,13.3828) && !PlayerToPoint(12.0, playerid, 324.3141,-1496.9177,24.9219) && !PlayerToPoint(12.0, playerid, 920.5212,-1184.8267,16.9766) && !PlayerToPoint(12.0, playerid, 221.1459,115.3492,999.0156) && !PlayerToPoint(12.0, playerid, 193.9101,179.2799,1003.0234) && !PlayerToPoint(12.0, playerid, 1545.7220,-1609.4769,13.3828)
&& !PlayerToPoint(12.0, playerid, 1019.6051,-317.6436,73.9922) && !PlayerToPoint(12.0, playerid, 195.5733,158.4008,1003.0234)
&& !PlayerToPoint(12.0, playerid, -1298.8188,490.5014,11.1953) && !PlayerToPoint(12.0, playerid, 264.1557,77.5797,1001.0391) && !PlayerToPoint(12.0, playerid, 1361,175.1075,1003.0234) && !PlayerToPoint(12.0, playerid, 321.8284,315.6733,999.1484) && !PlayerToPoint(12.0, playerid, 709.5662,-568.6655,-6.1966) && !PlayerToPoint(3,playerid,852.7875,-1275.1605,14.3879))
{// Jail spot
SendClientMessage(playerid, COLOR_GREY, " Você não está perto da cela, não pode ajustar o tempo do suspeito !");
return true;
}
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /ajustar [id] [tempo (minutos)]");
return true;
}
giveplayerid = ReturnUser(tmp);
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /ajustar [id] [tempo (minutos)]");
return true;
}
new time = strval(tmp);
if(time < 1 || time > 20) { SendClientMessage(playerid, COLOR_GREY, " O Tempo não pode ser menor que 1 nem maior que 20 !"); return true; }
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /ajustar [id] [tempo (minutos)]");
return true;
}
new suspect = giveplayerid;
if(IsPlayerConnected(suspect))
{
format(string, sizeof(string), "* Você ajustou %s !", giveplayer);
SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
PlayerInfo[suspect][pJailTime] = time * 60;
format(string, sizeof(string), "Oficial %s ajustou seu tempo de prisão para %d Segundos.", PlayerName(playerid),PlayerInfo[suspect][pJailTime]);
SendClientMessage(suspect, COLOR_LIGHTBLUE, string);
}
}
else
{
SendClientMessage(playerid, COLOR_GREY, " Você não é um Oficial !");
return true;
}
}
return true;
}