Hi I took a lot of things from this community, now it's time to give something back to it. I'm going to write some stuff that i find useful for myself. Game time Maximization: Did you know that if you start a trial account and then add a vanilla gamecard right after that you have 40 days of gametime instead of 30? the 10 days of trial are converted in normal gametime Whenever these 40 days expire (and ONLY after the gametime expires, not before!) you can activate a 10 days trial for The Burning Crusade, meanwhile u can reach lvl 61 (actually you'll not be able to get the last exp point to get to lvl 61, no matter how many mobs you're going to kill). So, with a vanilla key (6 euros or so) you can have an active kamikaze account for 50 days! Level 1-2 lvl 60s into it and use it to safely post your auction (NEVER flood the ah from an account who doesn't have an high lvl character into it, you'll soon get suspended. A level 80 would be better, but even 1-2 lvl 60 in the account will do the job). Automatize your selling experience: I use Auctioneer for my auctions, it works quite good (even if sometimes it freaks out). I use Postal to collect money/items from my mailbox, it automatically retrieves everything from your mail with just one click. I even use an addon called WowLua, which allows me to perform more complex macro to, let's say, withdraw all my Titanium Ore from my guild bank with just a click. Here's an example script for doing that: Code: for t=1,6 do for s=1,98 do local l=GetGuildBankItemLink(t,s)if l and strfind(l,"Titanium Ore")then SetCurrentGuildBankTab(t)AutoStoreGuildBankItem(t,s)end end end You can do very useful stuff, just learn some LUA (it is very easy). Maximize your profit: Whenever you are going to start a new farmer, level up just GATHERING profession on it (skinning, engineering, mining and herbalism). If you want to, let's say, get into the glyph market, just lvl a dk to 65 (doable in 2 days of botting), send him the needed materials to skill up the profession and start selling Since it doesn't have to go anywhere over major cities, just leave it there and use your gathering bot to gather as many materials as possible Also, don't underestimate the low lvl mats (especially herbs)! I'll add more things after they come to my mind. PS: sorry if my english is not very good.
Really good informations, that's true about the 10 day trials that what i did with my 3 accounts, for posting i share the guildbank for all my chars and i use 3 bankers for the job i hope this help also
Quite good information though I knew all this apart from the WoWlua as I have very little understanding to what that actually is.
It makes it possible to make more advanced scripts as macros ---> meaning you get advantage over other player and can then be classed as a hack. Might be wrong here but i think i read somewhere that WoWLuA is detected. True or False ?
False, you're probably talking about LuaNinja, an hack used to run protected Lua code (it was detected by blizzard a few months ago, it's no longer working). I'm talking about WowLua, a legit addon provided on Curse: http://wow.curse.com/downloads/wow-addons/details/wowlua.aspx
thanks for giving back to the community, I've used the trail-thing aswell on my chars and noticed the 10 extra days after using it =) Thanks for the Lua-script for withdrawing a specific type. Will surely try to adept that into my AH grind.