03.02.2014, 17:24
Almost got that for loop there! Just one tiny problem:
When you did "idx = 0" you put a comma when it should be a semicolon.
Also, idx++ and ++idx are the same thing
pawn Код:
for(new idx = 0; idx < MAX_HOUSES; ++idx)
Also, idx++ and ++idx are the same thing