18.12.2013, 19:05
That means there's Time variable already defined for something else.
Just change the "Time" to "TimeX"
Just change the "Time" to "TimeX"
pawn Код:
@Release(playerid);
@Release(playerid)
{
new string[120];
new TimeX = GetPVarInt(playerid, "JailTime");
if(!IsPlayerConnected(playerid))return 0;
if(Time < 1)
{
SetPVarInt(playerid, "Jailed", 0);
SetPlayerInterior(playerid, 6);
SetPlayerPos(playerid, 246.5301,86.7577,1003.6406);
SetPlayerFacingAngle(playerid, 176.7961);
SetPlayerHealth(playerid,100);
format(string,sizeof(string),"%s(%d) Has been realesed from Los Santos Jail after %d",PlayerInfo(playerid),playerid,GetPVarInt(playerid, "JailTime"),playerid);
SendClientMessageToAll(COLOR_ORANGE,string);
return 1;
}
new str[30];
format(str, sizeof(str), "You will be released in: %d", TimeX);
GameTextForPlayer(playerid, str, 2500, 3); // Change it if you want
SetPVarInt(playerid, "JailTime", TimeX - 1); // Decrease the player's jail time
SetTimerEx("@Release", 1000, false, "i", playerid);
return 1;
}