09.09.2018, 09:40
Код:
for(new i = 0; i < 10; i++) { if(HealthInfo[id][HealthLevel][i] == 3) break; else HealthInfo[id][HealthLevel][i]++, break; }
Another Edit: To the best of my knowledge, I'm not so sure you understand what '++' does, at least according to the second pastebin you sent. This increments the number of 'HealthInfo[id][HealthLevel][i]' up by 1 each time. If you happen to know SQL I'm sure it would remind you of 'AUTO_INCREMENT', it works the same way.