View Single Post
12-21-23, 07:34 PM   #3
Aethereality
A Defias Bandit
Join Date: Dec 2023
Posts: 2
Originally Posted by Dridzt View Post
Code:
local frame=CreateFrame("Frame")
frame:RegisterEvent("PLAYER_ENTERING_WORLD")
frame:SetScript("OnEvent",function(self,event,...)
    local isLogin, isReload = ...
    if isLogin then
    -- your action here
    end
end)
Thank you very much @_@
  Reply With Quote