Posts: 417
Threads: 104
Joined: Jul 2011
Reputation:
0
Like if I created an include, would I just put
#define sultan 560
#define elegy 562
and so on? ina .inc?
Posts: 85
Threads: 19
Joined: Sep 2011
Reputation:
0
#include <ina>
on the filterscript/source
and yes it works
Posts: 1,046
Threads: 29
Joined: Mar 2010
Just create an include file in your pawno\includes folder and put the stuff you want included in:
pawn Код:
#if defined sultan
#define sultan 560
#endif
#if defined elegy
#define elegy 562
#endif
then in your gamemode/filterscript on top
pawn Код:
#include <insert_name_here>
Posts: 2,334
Threads: 62
Joined: Dec 2009
Reputation:
0
But why creating an inculude for only 3 functions? What the....