17.09.2010, 18:39
So I figured out it was possible to insert "defined" values into string parameters like this:
Note that this'll print "Cows are over 9000!!!!!".
Now my burning question is: Is it possible to use exactly the same method, but then with simple variables?"
pawn Code:
#define cowstring "Cows are over "
#define cowamount 9000
print(#cowstring #cowamount "!!!!!");
Now my burning question is: Is it possible to use exactly the same method, but then with simple variables?"