Created
July 12, 2024 06:25
-
-
Save DeluxtDev/0c635b4c9f58e387121af44023c81ee2 to your computer and use it in GitHub Desktop.
Login Max Weapon Skills
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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