24.07.2013, 13:29
I think you cannot do that. Defined things need to be constants. But you can do this.
I may be wrong. But check it out!
pawn Код:
#define STRING "Hello"
new string[50];
format(string, sizeof(string), " "#STRING" world"); // Should print Hello world
print(string);

