Version 0.9986

baseCaptured
cloneZones embarkation
xFlags xCount
This commit is contained in:
Christian Franz
2022-04-28 13:37:20 +02:00
parent 64351c8229
commit 6d95355000
13 changed files with 375 additions and 93 deletions

View File

@@ -0,0 +1,13 @@
skel = {}
function skel:onEvent(event) -- event handler
end
function skel.update()
-- schedule next update invocation
timer.scheduleFunction(skel.update, {}, timer.getTime() + 1)
-- your own stuff and checks here
trigger.action.outText("DCS, this is Lua. Hello. Lua.", 30)
end
world.addEventHandler(skel) -- connect event hander
skel.update() -- start update cycle