Questions & Answers

nkAEUp0.jpg

The UI. I originally would have all these scripts in macros, ~ about 12-15 in total ~ and I managed to form most into an lua file. Now all I need is to change this one. It's to move my pet frame where I want it. Here's the macro form:
/run PetFrame:ClearAllPoints();
/run PetFrame:SetPoint("CENTER", playerframe, "CENTER", -430, 210);
/run PetFrame.SetPoint = function() end
Now This is what I get in attempt to make it work in lua file:
local plscript = CreateFrame("Frame")
plscript:RegisterEvent("PLAYER_ENTERING_WORLD")
local function eventHandler(self,event)
if event == "PLAYER_ENTERING_WORLD" then
PetFrame:ClearAllPoints();
PetFrame:SetPoint("CENTER", playerframe, "CENTER", -430, 210)
end
end
plscript:SetScript("OnEvent",eventHandler)

Nevermind, got it it fixed :)
Final Code:
local plscript = CreateFrame("Frame")
plscript:RegisterEvent("PLAYER_ENTERING_WORLD")
local function eventHandler(self,event)
if event == "PLAYER_ENTERING_WORLD" then
for i=1,12 do _G["ActionButton"..i.."Name"]:SetAlpha(0) _G["MultiBarBottomRightButton"..i.."Name"]:SetAlpha(0) _G["MultiBarBottomLeftButton"..i.."Name"]:SetAlpha(0) _G["MultiBarRightButton"..i.."Name"]:SetAlpha(0) _G["MultiBarLeftButton"..i.."Name"]:SetAlpha(0) end
--for i=1,12 do _G["ActionButton"..i.."HotKey"]:SetAlpha(0) _G["MultiBarBottomRightButton"..i.."HotKey"]:SetAlpha(0) _G["MultiBarBottomLeftButton"..i.."HotKey"]:SetAlpha(0) _G["MultiBarRightButton"..i.."HotKey"]:SetAlpha(0) _G["MultiBarLeftButton"..i.."HotKey"]:SetAlpha(0) end
SpellActivationOverlayFrame:SetScale(.6)
--BuffFrame:SetScale(1.2)
PetFrame:ClearAllPoints()
PetFrame:SetPoint("CENTER", playerframe, "CENTER", -430, 210)
PetFrame.SetPoint = function() end
TargetFrameToT:ClearAllPoints()
TargetFrameToT:SetPoint("BOTTOMRIGHT",TargetFrame,-15,-10)
FocusFrameToT:ClearAllPoints()
FocusFrameToT:SetPoint("BOTTOMRIGHT",FocusFrame,-15,-10)
for i=0,3 do _G["MainMenuBarTexture"..i]:SetAlpha(0)end
for i=0,3 do _G["MainMenuMaxLevelBar"..i]:SetAlpha(0)end
FocusFrameSpellBar:SetScale(1.2)
TargetFrameSpellBar:SetScale(1.2)
MainMenuBar:ClearAllPoints()
MainMenuBar:SetPoint('BOTTOM','UIParent','BOTTOM', 260, 20)
MultiBarBottomRight:ClearAllPoints()
MultiBarBottomRight:SetPoint("BOTTOM", -254,100)
MultiBarBottomLeft:ClearAllPoints()
MultiBarBottomLeft:SetPoint("BOTTOM", 100,0)
PetActionBarFrame:ClearAllPoints()
PetActionBarFrame('BOTTOM','UIParent','BOTTOM', 0, 0)
MainMenuBarLeftEndCap:Hide()
MainMenuBarRightEndCap:Hide()
ReputationWatchBar:SetAlpha(0)
ActionBarUpButton:SetAlpha(0)
ActionBarDownButton:SetAlpha(0)
MainMenuBarPageNumber:SetAlpha(0)
for i=0,3 do _G["MainMenuBarTexture"..i]:SetAlpha(0)end
for i=0,3 do _G["MainMenuMaxLevelBar"..i]:SetAlpha(0)end
FocusFrameSpellBar:SetScale(1.2)
TargetFrameSpellBar:SetScale(1.2)
end
end
plscript:SetScript("OnEvent",eventHandler)
 
Last edited by a moderator:
Atm it seems that people with full acc can see their battle net friends playing on linked f2p accs. There is however not much they can do with it beside inviting. Assuming this is bug, did it came up recently? or was it so for long time? kinda missed it.
 
Atm it seems that people with full acc can see their battle net friends playing on linked f2p accs. There is however not much they can do with it beside inviting. Assuming this is bug, did it came up recently? or was it so for long time? kinda missed it.

Always been that way.
 
nkAEUp0.jpg

The UI. I originally would have all these scripts in macros, ~ about 12-15 in total ~ and I managed to form most into an lua file. Now all I need is to change this one. It's to move my pet frame where I want it. Here's the macro form:

Now This is what I get in attempt to make it work in lua file:
Awesome work. Didnt know u can modify the playerframes that muchwith scripts. Rly apprechiate that work!
Would you be so nice and send me the script for black border + classcolors please?
 
Ive been having Latency problems on WoW lately. Is anyone else suffering as well?


Yeah this is a Blizzard-end problem.
 
Been trying to tidy up some jumps and learn some new ones. In doing so I wondered if anyone uses a macro of sorts for a forward jump. I try to be as fast as I can between starting forward and jumping, but I still oftentimes end up running off the spot where I'm standing. Thought a single button push would be a lot more efficient and consistent. Could just be that I'm slow, computer is dumb, or some other issue. Anyway I did find some old scripts for it on the web, but they seem to be pretty old. I am using a Mac and thought I might play around with making an Automator setup with a universal keyboard shortcut. Anyone have any experience with this?


Sent from my iPhone using Tapatalk
 
Ok but trolls are being nerfed come wod

I thought goblins would have also been good because they can make healing potions and have nice racials

Totally forgot about gobbies but although trolls are being nerfed the haste is still really good combined with lifeblood.

It really all depends on what you want to do as mage
 

Users who are viewing this thread

Top