SA-MP Forums Archive
[Help] Remove symbol - 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: [Help] Remove symbol (/showthread.php?tid=203741)



[Help] Remove symbol - IllidanS46 - 27.12.2010

How to remove variable or function?
On the wiki is:
Quote:
pawn Код:
native my_print(const string[]) = print;
Now the function print doesn't actually exist. It is still in SA:MP, and the compiler knows it's real name thanks to the "= print" part, but if you try call it in PAWN you will get an error as you have renamed print internally to my_print.

But the function print still exist. How can I remove it so that compiler doesn't know its real name?