21.06.2016, 21:08
Do you have a #define jobtownhall or something? The errors lead me to believe you have something like:
which would then compile to:
And then the errors make sense. The 001 refers to the 1 on the first line, which is an invalid variable name. The 022 refers to the 1 on the second line, saying that it must be a variable instead of a constant value.
PHP код:
#define jobtownhall 1
PHP код:
new 1;
1 = CreatePickup(/* ... */)