02.12.2009, 15:35
Okay, i tried to use this instead:
But it gives:
Or should i do like:
?
Okay, i found out that in my code was an open bracket which prevented proper compiling Now it compiles fine. Thank you anyways ;]
pawn Код:
if(Model == (400 || 424 || 470 || 489 || 495 || 500 || 505 || 579))
Код:
(11452) : warning 217: loose indentation (11452) : warning 213: tag mismatch (11481) : warning 217: loose indentation
pawn Код:
if((Model == 400) || (Model == 424) || ...))
Okay, i found out that in my code was an open bracket which prevented proper compiling Now it compiles fine. Thank you anyways ;]