When I try to use the extension, my changes don't apply and I get syntax error messages. The game compiles fine though, so I don't understand what I'm doing wrong.
For example, I created an event with only the following lines:
live_call();
for (var i = 0; i < 10; i = i + 1) {
show_debug_message("test");
}
And I get "Expected a statement, got number" at [3:24].
Again, I created an event with only:
live_call();
if (10 > 0) {
show_debug_message("test");
}
And I get "Expected a closing parenthesis" at [3:11].
I'm using GMS1. Anyone can help me?
