31.03.2015, 13:07
Quote:
hmm it doesn't give me any tag mismatch error while compiling with this :
Код:
new Float: Test[MAX_VEHICLES] = { -1, ... } ; |
You must do it like this:
Код:
new Float:Test[MAX_VEHICLES]; public OnGameModeInit() { for(new i; i<sizeof(Test); i++) Test[i] = -1.0; return 1; }
Код:
new Float:Test[MAX_VEHICLES] = { -1.0, ...};
Код:
#pragma compress 0