OK, I've figured it out, and in case anyone wants to get started, here are the new commands and the ways you can use them. Use at your own risk as it is possible Parallax will never release the updated editor and your code will be worthless:
1. NEW IF SYNTAX! There's two, actually.
The first is:
Code:
if condition then
code to execute if condition is true
else
code to execute otherwise
endif
The second is:
Code:
if condition then statement
These should make people happy as if statements now work like you're used to from C/Java/etc.
2. SELECT. Almost exactly like C's switch:
Code:
SELECT variable/expression
CASE value1
commands
CASE value2
commands
ENDSELECT
3. DO...LOOP. Like do/while.
Either the DO or the LOOP can be followed by the keyword WHILE or UNTIL. Putting it on the DO will cause it to be checked before executing any of the body. Putting it on the LOOP will cause it to be checked only after the body has been executed at least once. Examples:
Code:
DO
commands to execute
LOOP
-or-
DO WHILE condition
commands to execute
LOOP
-or-
DO
commands to execute
LOOP WHILE condition
There's one other new one, but I can't remember what it is at this time. Something similar to BRANCH, if I remember correctly.
Hope that helps.
--Rob
P.S. RoboEmu 1.09 will support all these new commands and should be done tomorrow afternoon.