The full list of major problems I found in the script is:
local vars can not be used in events
all local vars MUST be at the top of a function with no code separating them, for example this won't work
Code: Select all
local int test;
test = 1;
local int test2;a trigger deceleration must start with the word "trigger"
and the inevitable missing semicolon(s) (you would think that I would get over that by now
As you can see most of the major problems relate to assumptions about local vars that I made in the absence of good documentation. Most would be no big deal but the error messages are very generic and its hard to tell just what the problem is, even worse is that some errors (I forgot which ones

