- Joined
- Aug 7, 2013
- Messages
- 1,338
Hi,
I downloaded the jass new gen5d package and updated the jass helper, etc. according to the instructions on that page. But this still claims that there are hundreds of the syntax errors for the jass code already in the map, which can't be true, because the map and its systems work fine already (monster master rpg ).
Also wouldn't this be valid JASS?
Here's a more concrete example:
This brings up the following error: undeclared variable q, in addition to a hundred other errors claiming that "statement outside of function." Note I didn't include the entire library from above, but the function is complete and has endfunction, etc.
I downloaded the jass new gen5d package and updated the jass helper, etc. according to the instructions on that page. But this still claims that there are hundreds of the syntax errors for the jass code already in the map, which can't be true, because the map and its systems work fine already (monster master rpg ).
Also wouldn't this be valid JASS?
JASS:
library Objects
endlibrary
Here's a more concrete example:
JASS:
library F9Log initializer init
globals
private quest q
endglobals
private function init takes nothing returns nothing
//Var Init
local string s
//Save & Load
set q = CreateQuest()
This brings up the following error: undeclared variable q, in addition to a hundred other errors claiming that "statement outside of function." Note I didn't include the entire library from above, but the function is complete and has endfunction, etc.