02.01.2010, 09:10
My server will be using a lot of gamemodes which will be constantly changing and using the same commands. I didn't even mind it before because I thought I could use FS instead but now I need some opinions.
Should I use command handlers?
With command handlers I mean a script out of the main GMs but integrated with this. Also, how can I use these handlers or scripts without placing them in the includes folder (because I'd like to add them in a folder like ...\serverfolder\handlers\handler.pwn)?
how can I do something like:
Should I use command handlers?
With command handlers I mean a script out of the main GMs but integrated with this. Also, how can I use these handlers or scripts without placing them in the includes folder (because I'd like to add them in a folder like ...\serverfolder\handlers\handler.pwn)?
pawn Код:
#include "Vehicles.pwn" // this would normally read it from the includes folder
pawn Код:
#include handler "commands.pwn" // it would read it directly from the handlers folder