Re: [SOLVED] Fix: missing tactics after login
Posted: Sat Dec 05, 2015 11:19 am
Sorry for overreacting and gz on your F5 CA 

Warhammer Online
https://www.returnofreckoning.com/forum/
https://www.returnofreckoning.com/forum/viewtopic.php?t=8892
Code: Select all
tactic = {}
-- Global
setTactic = 3
justlogged = true
function tactic.update()
if (justlogged)
then
TextLogAddEntry("Chat", 0, L"Settings tactic set to: " .. setTactic)
TacticsEditor.OnSetMenuSelectionChanged(setTactic)
justlogged = false
end
end
function tactic.init()
RegisterEventHandler(SystemData.Events.RELOAD_INTERFACE, "tactic.update")
RegisterEventHandler(SystemData.Events.LOADING_END, "tactic.update")
end