Hello,

I'm starting out with creating a mod and have a few questions about the scripting.

I followed the advice in http://www.twcenter.net/forums/showthread.php?t=433771
(Taking campaigns out of the pack, so you can edit it without repacking/restarting every time)
This helped a lot with the debugging speed. Still the debug cyce is pretty long. Is there a faster way to try something? Like calling a lua function straight from the game?


using:
Code:
log("CampaignUI")
for k,v in pairs(CampaignUI) do
  log("  "..tostring(k)..": "..tostring(v))
end
I get a nice list with interesting functions. Still it leaves me guessing at what needs to go in/out these functions. Is there any documentation of these functions?