03.08.2013, 21:28
I'm starting a new gamemode, so I want to make it a modular gamemode (divided in files) to keep it organized. Though, I also have a problem; only the first file I #include is included.
However, if I do this:
That part is at the top of the script, I have tried at the bottom of the script but it's the same thing.
Anyone got an idea, please?
pawn Code:
// Scripts
#include "../scriptfiles/GAMEMODE/SCRIPTS/Script1.pwn" // This one loads.
#include "../scriptfiles/GAMEMODE/SCRIPTS/Script2.pwn" // This one doesn't loads.
pawn Code:
// Scripts
#include "../scriptfiles/OUTBREAK/SCRIPTS/Script2.pwn" // This one loads.
#include "../scriptfiles/OUTBREAK/SCRIPTS/Script1.pwn" // This one doesn't loads.
That part is at the top of the script, I have tried at the bottom of the script but it's the same thing.
Anyone got an idea, please?