since i don't frequent the GMC anymore or yoyogames i'd figure i ask here
why this no work if (heal_step=0) {
heal_number=-1;
i=0;
for (i=0;i>=6;i+=1) {
if (slot[i+1,0]!=0) { // meaning in slot i, is there a species sitting there?
heal_number+=1;
} else { // if there isn't, end the loop
i=6;
}
show_message("hey look at me i work");
}
heal_monitor=0;
heal_ball_number=0;
draw_heal_animation=true;
heal_counter=30;
show_message(string(heal_number));
}
for (i=0;i>=6;i+=1) {
if (slot[i+1,0]!=0) { // meaning in slot i, is there a species sitting there?
heal_number+=1;
} else { // if there isn't, end the loop
i=6;
}
show_message("hey look at me i work");
}
I resisted the temptation to be pedantic about coding style,so I was pedantic about something completely irrelevant instead.
Coding style I really don't care much about anyway, I blame the language for giving you the option of using bad style. Python has been growing on me for this reason, I like the way they do things