29.11.2017, 18:39
You cannot use integers in-between a string - you should have defined it as following:
and use COL_WHITE instead. But there is a problem, you have 1 specifier (%s) and 2 arguments (PlayerInfo[criminal][pActiveListings], string)
If you only want to concatenate the active listings and just that, you can also use:
pawn Код:
#define COL_WHITE "{FFFFFF}"
If you only want to concatenate the active listings and just that, you can also use:
pawn Код:
string = "[PD Database:] " COL_WHITE;
strcat(string, PlayerInfo[criminal][pActiveListings]);