User:Fibby
From WoWWiki
my favorite macro
This macro tells you your PvP status
/run local m=GetPVPTimer()/1000 message(not UnitIsPVP("player")and"You are not flagged"or(GetPVPDesired()>0)and"You are permaflagged"or"Your PvP flag wears off in "..(m>60 and floor(m/60).." minutes "or"")..floor(m%60).." seconds")
Same, but report your pvp status to party/raid
/run local m=GetPVPTimer()/1000 if UnitIsPVP("player")then SendChatMessage(GetPVPDesired()>0 and"I am permaflagged"or"My PvP flag wears off in "..(m>60 and floor(m/60).." minutes "or"")..floor(m%60).." seconds", "PARTY")end
another macro, which I ran only once
This macro will increase your max camera distance. You need to execute it only once and then the change will persist, affecting all your accounts and characters
/run SetCVar("cameraDistanceMax",50)