SA-MP Forums Archive
error help fast - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: error help fast (/showthread.php?tid=172782)



error help fast - cssbart - 31.08.2010

Код:
C:\Users\Jonny\SAMP\gamemodes\DM.pwn(200) : warning 219: local variable "Warns" shadows a variable at a preceding level
line 200 to 209
Код:
stock SetPlayerWarns(playerid, Warns)
{
	PlayerInfo[playerid][Warns] = Warns;
	return 1;
}

stock GetPlayerWarns(playerid)
{
	return PlayerInfo[playerid][Warns];
}



Re: error help fast - Grim_ - 31.08.2010

pawn Код:
stock SetPlayerWarns(playerid, warns)
{
   PlayerInfo[playerid][Warns] = warns;
   return 1;
}



Re: error help fast - mmrk - 31.08.2010

Already answered..


Re: error help fast - Nero_3D - 31.08.2010

sucks, see above

they should add the "there were replys while you wrote you message" option again -_-


Re: error help fast - Jay. - 31.08.2010

You can't have two variables with the same name


Re: error help fast - cssbart - 31.08.2010

thanks for your help