Thread Tools Display Modes
Prev Previous Post   Next Post Next
03-30-20, 05:35 AM   #1
awildgoose11
A Defias Bandit
Join Date: Mar 2020
Posts: 3
Help with making my addon (WoW classic)

Hello, I am VERY new to addon programming but I wanted to make a simple one that dismounts your character if you right click on an ore vein while mounted. Here is what I made, (it doesn't seem to be working) any help would be appreciated. (WoW Classic btw)

Code:
local f = CreateFrame("Frame",nil,UIParent)
f:SetWidth(4000) 
f:SetHeight(4000)
f:SetPoint("CENTER",0,0)
while(1=1)
do
   local u = UnitName("mouseover");
f:SetScript("OnClick", function (self, button, down)
 if (button = "RightButton" and down = true and u = "Tin Vein" or u = "Iron Deposit" or u = "Mithril Vein" or u = "Copper Vein" or u = "Gold Vein" or u = "Truesilver Vein" or u = "Thorium Vein" or u = "Dark Iron Vein" or u = "Elementium Vein" or u = "Snall Obsidian Chunk" or u = "Large Obsidian Chunk") then
 Dismount();	
end
end
end
Again the goal is to dismount when an ore is right clicked. Thanks.
  Reply With Quote
 

WoWInterface » AddOns, Compilations, Macros » AddOn Help/Support » Help with making my addon (WoW classic)


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off