Actionbar per character
#3
edit game_actionbar\actionbar.lua.
Find function online() and replace whole thing with code below.
Find function online() and replace whole thing with code below.
function online()
+ if not g_resources.directoryExists("/actionbars/") then
+ g_resources.makeDir("/actionbars/")
+ end
+ actionConfig = g_configs.create("/actionbars/" .. g_game.getLocalPlayer():getName():lower().. ".otml")
setupActionPanel(1, actionPanel1)
setupActionPanel(2, actionPanel2)
show()
end
- remove | + add
01 Jan 2020