22.02.2013, 16:30
Whatever there is, this is how I started my include -
Open PAWN >> new >> delete all functions present >>
And when I'm done, copy paste all this, create new .inc file in PAWNO >> Includes and paste them inside that
And then I #include <incfilename> on top of script I need to use it in
It works the same way as a script does, and when you compile the script you're using this .INCLUDE file in, it'll show you if there are any errors in the include's script.
Open PAWN >> new >> delete all functions present >>
pawn Код:
#include <a_samp>
// Custom functions, hooking, whatev's you gotta do here
And then I #include <incfilename> on top of script I need to use it in
It works the same way as a script does, and when you compile the script you're using this .INCLUDE file in, it'll show you if there are any errors in the include's script.