Long time since I contributed and I've been saving these for a little.
Okay, the first one is simple.
People spam WSG to get Furious PvP gear to get from 0 to ~3.8-4.4k GS so they get accepted into VoA/ToC, then do ICC to get T10, etc.
But when people join WSG most of them leave and get deserter, and it's really annoying to have to wait 15 minutes to get into a BG to get honor capped again.
So this is how it goes:
Once you have enough honor, leave the group and unstuck.
You MUST use unstuck as soon as you leave your group, or you'll be teleported out early.
After you unstuck you should be in your starter zone next to the teleporter without deserter.
Make quick wowbeez gold:
Very useful for buying your first mount, or supplying some gold for professions. I recommend not using this for too long, because first of all the staff get suspicious and second of all it's annoying after a while without an auto clicker.
This is how it goes:
1. Make two macros. A 'buy' macro, and a 'sell' macro.
Buy
1020 is the amount of them you'll buy, I put 1020 to fill up all my bags.Code:/script local function buy (n,q) for i=1,100 do if n==GetMerchantItemInfo(i) then BuyMerchantItem(i,q) end end end buy ("Scroll of Intellect VIII",1020)
Sell
Quick tip if you want to mess around and make other macro-combos to make gold on other servs:Code:/run for bag=0,4,1 do for slot=1,GetContainerNumSlots(bag),1 do local name=GetContainerItemLink(bag,slot) if name and string.find(name,"ffffffff) then DEFAULT_CHAT_FRAME:AddMessage("- Selling "..name) UseContainerItem(bag,slot) end end end
"ffffffff" is the item quality, ffffffff is WHITE.Code:string.find(name,"ffffffff)
ffffffff - White [Common]
ff1eff00 - Green [Uncommon]
ff0070dd - Blue [Rare]
ffa335ee - Purple [Epic]
MAKE SURE YOU HAVE NO OTHER WHITE ITEMS IN YOUR INVENTORY, THIS MACRO WILL SELL THEM!
Spam the buy macro until your bags are full, then spam the sell macro to empty them quickly. Store all your items in the bank so you can buy and sell more at a time, make sure to buy BAGS first so you make gold faster and faster as time goes by.
I use int scrolls to make gold, feel free to mod them to use any other item.