This page displays an example event created with lua code.
local event = {} function event.hello_event() print("hello event from inside lua!") end function event.hello_event_again() print("hello event again from inside lua!") end return event
Last updated 1 year ago