ERROR! PLEASE HELP - 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! PLEASE HELP (
/showthread.php?tid=220988)
ERROR! PLEASE HELP -
domce200 - 04.02.2011
ERROR:
Код:
C:\Users\Dominykas\Desktop\Freeroam\filterscripts\gADMIN.pwn(60) : warning 219: local variable "pName" shadows a variable at a preceding level
LINE:
pawn Код:
new pName[MAX_PLAYER_NAME]
Re: ERROR! PLEASE HELP -
admantis - 04.02.2011
delete that line,
Re: ERROR! PLEASE HELP -
domce200 - 04.02.2011
If i delete it
i get new error
its:
Код:
C:\Users\Dominykas\Desktop\Freeroam\filterscripts\gADMIN.pwn(61) : error 076: syntax error in the expression, or invalid function call
and the line is:
pawn Код:
GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
Re: ERROR! PLEASE HELP -
Jeffry - 04.02.2011
pawn Код:
new pName[MAX_PLAYER_NAME];
to:
pawn Код:
new pNamee[MAX_PLAYER_NAME]
and
pawn Код:
GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
to:
pawn Код:
GetPlayerName(playerid,pNamee,MAX_PLAYER_NAME);
The warning just means that you already have a variable called 'pName'. Just call it differently.
Re: ERROR! PLEASE HELP -
domce200 - 04.02.2011
THANKS.