Christian Franz 6d95355000 Version 0.9986
baseCaptured
cloneZones embarkation
xFlags xCount
2022-04-28 13:37:20 +02:00

14 lines
371 B
Lua

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