i could always teach you english for
https://www.warzone.com/Forum/684861-nonprogrammers-make-modsi want the language i'm making for it (which gets converted into lua) be easy for everyone to make mods
for things like
addsetting <name>
-- do stuff with setting until 2 newline characters back to back
create <uielement> <parent>
-- do stuff with <uielement> until 2 newline characters back to back
someVariable = create <uielement> <parent>
-- same as above but remember what's just been created (in local scope)
<parent> has to be included because of how the mod framework works
the hard part seems to be variable declarations (like variable scope - i need to track this)
minimising runtime errors is something i'd like to do because the code gets transpiled into mod lua
Edited 4/8/2023 16:17:41