18.12.2013, 19:00
im getting this error , can anyone help me in this?
pawn Код:
C:\Users\derhaker\Desktop\my script\gamemodes\start.pwn(4463) : warning 219: local variable "Time" shadows a variable at a preceding level
pawn Код:
@Release(playerid);
@Release(playerid)
{
new string[120];
new Time = 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", Time);
GameTextForPlayer(playerid, str, 2500, 3); // Change it if you want
SetPVarInt(playerid, "JailTime", Time - 1); // Decrease the player's jail time
SetTimerEx("@Release", 1000, false, "i", playerid);
return 1;
}