11.07.2015, 18:28
Alright so Ive created a small folder inside Pawno > include > Modules and now im trying to load shit from it but I keep on getting errors that there are undentified symbols.
Any solutions
The Test.inc I took it and pasted it into .pwn file and compiled it, no errors or whatso ever. But when I try the use functions from it inside the Gamemode itself I get shitton of erorrs.
Test_Function is
Any solutions
pawn Код:
#include "../include/Modules/Misc/Test.inc"
pawn Код:
error 017: undefined symbol "Test_Function"
Test_Function is
pawn Код:
Test_Function
{
print("hi");
return true;
}