neat. it took me like 20 minutes to get an extremely basic proof-of-concept of lua scripting in zdoom working
Conversation
Replying to
i wrote a lua script that prints the class name of every actor on the map
Replying to
the script is:
zprint('hello from lua!\n')
for actor in allactors() do
zprint(actor.classname)
end
7
