What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Useful Macros

highvoltz

Well-Known Member
Joined
Mar 22, 2010
Messages
1,729
Reaction score
141
I have some macros laying around that I thought might be useful.

This macro will send all the characters gold minus 10g to a person in friends list with the note BANKER .
You can right-click the person name in friends list to add a note or pass it as a 2nd parameter to /friend. You can change the 10 in macro to whatever amount of gold you want to keep. requires mailbox frame to be open.

Code:
/run local mo=10*10000 for i=1,GetNumFriends() do local na,l,c,a,co,s,no=GetFriendInfo(i) if no and no:upper()=='BANKER' then local m=(GetMoney()-mo)-GetSendMailPrice() SetSendMailMoney(m) SendMail(na,m/10000 .."g","") print(m/10000 .."g mailed") end end
This macro will cancel all your auctions. might be useful if for example your AH addon lists all your items for a few copper each (happened to me a few times) or you want to relist and don't care about deposit cost.
Code:
/script for index = 1, GetNumAuctionItems("owner") do local _,_,_,_,_,_,_,_,_,bidAmmount = GetAuctionItemInfo("owner", index) if (bidAmmount == 0) then CancelAuction(index) end end
Sets some graphics settings to low
Code:
/console groundEffectDensity 16
/console groundEffectDist 1
/console horizonfarclip 1305
/console farclip 177
/console characterAmbient 1
/console smallcull 1
/console skycloudlod 1
/console maxfps 30
 
Last edited:
Back
Top