Can You 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)
+--- Thread: Can You Help ? (
/showthread.php?tid=472044)
Can You Help ? -
BatZackMan - 26.10.2013
Hey
Today, when i were scripting/updating a Gmod i find a kind of bug ?! Any way can you help me to fix it ?
______________________
Errors
______________________
Код:
error 017: undefined symbol "ExecuteHackerPlayerNamesAction"
warning 203: symbol is never used: "ExecuteHackerAction"
warning 203: symbol is never used: "PlayerNames"
This is the error that i find it evry time i try to /delete it or /add new think..
______________________
in .pwn as a script
______________________
Код:
#pragma unused ExecuteHackerPlayerNames
((by the way its the last line in all the script))
Can You Help Me ?
Re: Can You Help ? -
Konewka - 26.10.2013
Why wont you try moving this line to the very top of the code, but after your includes.
Код:
#pragma unused ExecuteHackerPlayerName
Re: Can You Help ? -
JeaSon - 26.10.2013
Код:
error 017: undefined symbol "ExecuteHackerPlayerNamesAction"
warning 203: symbol is never used: "ExecuteHackerAction"
warning 203: symbol is never used: "PlayerNames"
1st error means your symbol is not defined
2 and 3 ! means you made PlayerNames and ExecuteHackerAction but you didnt used them
just delete 2,3 error i mean delete PlayerNames and ExecuteHackerAction
like above said that defined ExecuteHackerPlayerNamesAction at the top of script but after includes
Re: Can You Help ? -
Hamam - 26.10.2013
Try this add it on top of your gm.
Код:
#define ExecuteHackerPlayerName
Re: Can You Help ? -
BatZackMan - 26.10.2013
I put it in the top , but it didn't work ? same bugs..
Quote:
#pragma unused ExecuteHackerPlayerNames
|