Quote:
Originally Posted by ******
You can't just do:
pawn Код:
native DisableAllCheats();
main() { DisableAllCheats(); }
And expect it to work - that would require intelligent computers, and we don't have them. You have to write the native function in a plugin, then using "native" in your PAWN script gives it access to the function in the plugin
|
Yes this is just what I meant, that I can't do it like this. The main point of my question was, "how to actually declare the native", so if I'd create it in a plugin, how would I declare the native what it should do?