Your browser does not support JavaScript or its disabled!
Please turn it on, or be aware that some features on this website will not work correctly.
2.1K
Actionbar per character #3
edit game_actionbar\actionbar.lua.
Find function online() and replace whole thing with code below.
File: actionbar.lua | 315b | 9 lines.
 --[[
  Script made by Lee (Discord: l33_) - www.trainorcreations.com
  If you want to support my work, feel free to donate at https://trainorcreations.com/donate
  PS. Stop ripping off my work and selling it as your own.
 ]]--
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
+ add | - remove

01 Jan 2020
Ads