Example #1
0
 public static void BAG_UPDATE(object sender, LuaEventArgs args)
 {
     GarrisonBase.DebugLuaEvent("LuaEvent: BAG_UPDATE");
     if (OnBagUpdate != null)
     {
         OnBagUpdate();
     }
 }
Example #2
0
 public static void GARRISON_SHOW_LANDING_PAGE(object sender, LuaEventArgs args)
 {
     GarrisonBase.DebugLuaEvent(String.Format("LuaEvent: {0}", "Garrison Landing Page Shown!"));
     if (OnGarrisonLandingPageShow != null)
     {
         OnGarrisonLandingPageShow();
     }
 }
Example #3
0
 public static void PLAYERREAGENTBANKSLOTS_CHANGED(object sender, LuaEventArgs args)
 {
     GarrisonBase.DebugLuaEvent("LuaEvent: PLAYERREAGENTBANKSLOTS_CHANGED");
     if (OnPlayerReagentsBankSlotsChanged != null)
     {
         OnPlayerReagentsBankSlotsChanged();
     }
 }
Example #4
0
 public static void GARRISON_MISSION_FINISHED(object sender, LuaEventArgs args)
 {
     GarrisonBase.DebugLuaEvent("LuaEvent: GARRISON_MISSION_FINISHED");
     if (OnGarrisonMissionFinished != null)
     {
         OnGarrisonMissionFinished();
     }
 }
Example #5
0
 public static void QUEST_LOG_UPDATE(object sender, LuaEventArgs args)
 {
     GarrisonBase.DebugLuaEvent("LuaEvent: QUEST_LOG_UPDATE");
     if (OnQuestLogUpdate != null)
     {
         OnQuestLogUpdate();
     }
 }
Example #6
0
 public static void GARRISON_BUILDING_ACTIVATABLE(object sender, LuaEventArgs args)
 {
     GarrisonBase.DebugLuaEvent("LuaEvent: GARRISON_BUILDING_ACTIVATABLE");
     if (OnGarrisonBuildingActivatable != null)
     {
         OnGarrisonBuildingActivatable();
     }
 }
Example #7
0
 public static void GARRISON_MISSION_STARTED(object sender, LuaEventArgs args)
 {
     GarrisonBase.DebugLuaEvent(String.Format("LuaEvent: {0}", "Garrison Mission Started!"));
     if (OnGarrisonMissionStarted != null)
     {
         OnGarrisonMissionStarted();
     }
 }
Example #8
0
 public static void GARRISON_MISSION_NPC_CLOSED(object sender, LuaEventArgs args)
 {
     GarrisonBase.DebugLuaEvent(String.Format("LuaEvent: {0}", "Garrison Mission NPC Closed!"));
     if (OnGarrisonMissionNpcClosed != null)
     {
         OnGarrisonMissionNpcClosed();
     }
 }
Example #9
0
 public static void GARRISON_FOLLOWER_LIST_UPDATE(object sender, LuaEventArgs args)
 {
     GarrisonBase.DebugLuaEvent(String.Format("LuaEvent: {0}", "Garrison Follower List Updated!"));
     if (OnGarrisonFollowerListUpdated != null)
     {
         OnGarrisonFollowerListUpdated();
     }
 }
Example #10
0
 public static void MERCHANT_CLOSED(object sender, LuaEventArgs args)
 {
     GarrisonBase.DebugLuaEvent("LuaEvent: MERCHANT_CLOSED");
     if (OnMerchantClosed != null)
     {
         OnMerchantClosed();
     }
 }
Example #11
0
 public static void GARRISON_MISSION_LIST_UPDATE(object sender, LuaEventArgs args)
 {
     GarrisonBase.DebugLuaEvent(String.Format("LuaEvent: {0}", "Garrison Mission List Updated!"));
     if (OnGarrisonMissionListUpdated != null)
     {
         OnGarrisonMissionListUpdated();
     }
 }
Example #12
0
 public static void MERCHANT_SHOW(object sender, LuaEventArgs args)
 {
     GarrisonBase.DebugLuaEvent("LuaEvent: MERCHANT_SHOW");
     if (OnMerchantShow != null)
     {
         OnMerchantShow();
     }
 }
Example #13
0
 public static void TAXIMAP_CLOSED(object sender, LuaEventArgs args)
 {
     GarrisonBase.DebugLuaEvent("LuaEvent: TAXIMAP_CLOSED");
     if (OnTaxiMapClosed != null)
     {
         OnTaxiMapClosed();
     }
 }
Example #14
0
 public static void MAIL_CLOSED(object sender, LuaEventArgs args)
 {
     GarrisonBase.DebugLuaEvent("LuaEvent: MAIL_CLOSED");
     MailOpen = false;
     if (OnMailClosed != null)
     {
         OnMailClosed();
     }
 }
Example #15
0
 public static void MAIL_SHOW(object sender, LuaEventArgs args)
 {
     GarrisonBase.DebugLuaEvent("LuaEvent: MAIL_SHOW");
     MailOpen = true;
     if (OnMailShow != null)
     {
         OnMailShow();
     }
 }
Example #16
0
        public static void CURRENCY_DISPLAY_UPDATE(object sender, LuaEventArgs args)
        {
            GarrisonBase.DebugLuaEvent("LuaEvent: CURRENCY_DISPLAY_UPDATE");

            if (OnCurrencyDisplayUpdate != null)
            {
                OnCurrencyDisplayUpdate();
            }
        }
Example #17
0
        public static void UI_ERROR_MESSAGE(object sender, LuaEventArgs args)
        {
            GarrisonBase.DebugLuaEvent("LuaEvent: UI_ERROR_MESSAGE");

            if (OnUiErrorMessage != null)
            {
                OnUiErrorMessage();
            }
        }
Example #18
0
        public static void CURRENT_SPELL_CAST_CHANGED(object sender, LuaEventArgs args)
        {
            GarrisonBase.DebugLuaEvent("LuaEvent: CURRENT_SPELL_CAST_CHANGED");

            if (OnCurrentSpellCastChanged != null)
            {
                OnCurrentSpellCastChanged();
            }
        }
Example #19
0
        public static void ZONE_CHANGED_NEW_AREA(object sender, LuaEventArgs args)
        {
            GarrisonBase.DebugLuaEvent("LuaEvent: ZONE_CHANGED_NEW_AREA");

            if (OnZoneChangedNewArea != null)
            {
                OnZoneChangedNewArea();
            }
        }
Example #20
0
        public static void GOSSIP_CLOSED(object sender, LuaEventArgs args)
        {
            GarrisonBase.DebugLuaEvent("LuaEvent: GOSSIP_CLOSED");

            if (OnGossipClosed != null)
            {
                OnGossipClosed();
            }
        }
Example #21
0
        public static void QUEST_ACCEPTED(object sender, LuaEventArgs args)
        {
            GarrisonBase.DebugLuaEvent("LuaEvent: QUEST_ACCEPTED");

            if (OnQuestAccepted != null)
            {
                OnQuestAccepted();
            }
        }
Example #22
0
 public static void TRADE_SKILL_SHOW(object sender, LuaEventArgs args)
 {
     GarrisonBase.DebugLuaEvent("LuaEvent: TRADE_SKILL_SHOW");
     TradeSkillFrameOpen = true;
     if (OnTradeSkillShow != null)
     {
         OnTradeSkillShow();
     }
 }
Example #23
0
 public static void TRADE_SKILL_CLOSE(object sender, LuaEventArgs args)
 {
     GarrisonBase.DebugLuaEvent("LuaEvent: TRADE_SKILL_CLOSE");
     TradeSkillFrameOpen = false;
     if (OnTradeSkillClosed != null)
     {
         OnTradeSkillClosed();
     }
 }
Example #24
0
        public static void QUEST_FINISHED(object sender, LuaEventArgs args)
        {
            GarrisonBase.DebugLuaEvent("LuaEvent: QUEST_FINISHED");

            if (OnQuestFinished != null)
            {
                OnQuestFinished();
            }
        }
Example #25
0
        public static void QUEST_REMOVED(object sender, LuaEventArgs args)
        {
            GarrisonBase.DebugLuaEvent("LuaEvent: QUEST_REMOVED");

            if (OnQuestRemoved != null)
            {
                OnQuestRemoved();
            }
        }
Example #26
0
        public static void GOSSIP_SHOW(object sender, LuaEventArgs args)
        {
            GarrisonBase.DebugLuaEvent("LuaEvent: GOSSIP_SHOW");

            if (OnGossipShow != null)
            {
                OnGossipShow();
            }
        }
Example #27
0
        public static void QUEST_PROGRESS(object sender, LuaEventArgs args)
        {
            GarrisonBase.DebugLuaEvent("LuaEvent: QUEST_PROGRESS");

            if (OnQuestProgress != null)
            {
                OnQuestProgress();
            }
        }
Example #28
0
        public static void ZONE_CHANGED(object sender, LuaEventArgs args)
        {
            GarrisonBase.DebugLuaEvent("LuaEvent: ZONE_CHANGED");

            if (OnZoneChanged != null)
            {
                OnZoneChanged();
            }
        }
Example #29
0
        public static void QUEST_DETAIL(object sender, LuaEventArgs args)
        {
            GarrisonBase.DebugLuaEvent("LuaEvent: QUEST_DETAIL");

            if (OnQuestDetail != null)
            {
                OnQuestDetail();
            }
        }
Example #30
0
        public static void QUEST_COMPLETE(object sender, LuaEventArgs args)
        {
            GarrisonBase.DebugLuaEvent("LuaEvent: QUEST_COMPLETE");

            if (OnQuestComplete != null)
            {
                OnQuestComplete();
            }
        }