13.10.2013, 01:22
Post the pawn code with the [code] [ /code] tags Stefan said above.
But to help you solve your problem:
Undefined symbol means that it has not been defined yet. So near the top of your script, put this:
etc.
This often happens when you copy and paste things from another script and you don't also copy and paste the parts of the script that the code is dependent on. Also, check your includes. But we could help you more if you posted the code.
But to help you solve your problem:
Undefined symbol means that it has not been defined yet. So near the top of your script, put this:
Код:
#define OnPlayerStatsUpdate #define ABroadCast #define ProxDetector
This often happens when you copy and paste things from another script and you don't also copy and paste the parts of the script that the code is dependent on. Also, check your includes. But we could help you more if you posted the code.