Skip to content

Instantly share code, notes, and snippets.

@DeluxtDev
Created July 12, 2024 06:25
Show Gist options
  • Save DeluxtDev/0c635b4c9f58e387121af44023c81ee2 to your computer and use it in GitHub Desktop.
Save DeluxtDev/0c635b4c9f58e387121af44023c81ee2 to your computer and use it in GitHub Desktop.
Login Max Weapon Skills
-- Created for WowEmulation.com by Deluxt
local firstLoginOnly = true
local function OnLogin(event, player)
player:AdvanceSkillsToMax()
end
if (firstLoginOnly) then
RegisterPlayerEvent(30, OnLogin)
else
RegisterPlayerEvent(3, OnLogin)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment