30.12.2017, 09:26
Ok man here you go your problem fix.....
First of all #defines these:
Then write this anywhere in your script:
put this anywhere in your script (instead of don't put in any commands )
And then in your command CMD: pks, re-write every pkLVL to PKLVL
And you're done! Tell me if it don't works
First of all #defines these:
Код:
#define PK_LEVEL_1_COLOR 0xFF0000FF // or any color you want #define PK_LEVEL_1 "Peace Keeper"
Код:
stock PKLVL(lvl) { new string[128]; switch(lvl) { case 1: { format(string, 128, "%s %s", PK_LEVEL_1_COLOR, PK_LEVEL_1); } } return string; }
And then in your command CMD: pks, re-write every pkLVL to PKLVL
And you're done! Tell me if it don't works