So, you downloaded Auctionator and you just love how easy it makes to spam the AH with the single stacked items?
However anytime you want to post more then 40 at once, the stupid message box comes up 

Well there is a way to get rid of it, and its really easy as well!
Just go into your wow/interface/addons folder, and look for the folder called “Auctionator”

Open the folder, then open the Auctionator.lua file, this is the core of this addon.
So how do we get rid of the popup? Simple! Search for the text that comes up when you want to put more then 40 items on the AH. (I searched for “You may have at most”)
and you should arrive at this
Code:
if (Atr_StackSize() == 1 and gBS_FullStackSize > 1) then
local scan = gCurrentPane.activeScan;
if (scan and scan.numYourSingletons + gBS_NumAuctionsToCreate > 40) then
local s = ZT("You may have at most 40 single-stack (x1)\nauctions posted for this item.\n\nYou already have %d such auctions and\nyou are trying to post %d more.");
Atr_Error_Display (string.format (s, scan.numYourSingletons, gBS_NumAuctionsToCreate));
return;
end
end
I hope that you can easily work out whats going on there. If the stack size is 1, and the maximum stack size is bigger then 1, then it checks how many items you have posted and adds it to the number of items that you already have posted!
Now there is a lot of ways to get rid of that, but the simplest one is probably to just get rid of the whole if statement altogether.
So delete the code you found (From “if (Atr_StackSize() == 1 and gBS_FullStackSize > 1) then” to the second end, inclusive), and save the text file.
Now when you restart wow, you should have no trouble spamming the AH with however many single stacked items you want!
(
or if you want to, just get rid of the return from that excerpt of code and change the error message to something else to remind yourself how awesome you are!
)

this guide was created by me, at no point am I saying that what Ive done is hard, requires any skill or uses anything other then common sense.
If you dont like it or dont agree with it, leave it!
Since I couldnt care less about credits, if you want to copy this to a different website you DONT have to put me in credits (Infact just say its yours, idc)