Been playing around with this. Having a lot of issues with the not being able to log back in. But confident I will find away around the issue. IF this works. You deserve a medal lol. +1rep
Been playing around with this. Having a lot of issues with the not being able to log back in. But confident I will find away around the issue. IF this works. You deserve a medal lol. +1rep
For the relogging issue, i suggest you remove the loop and set up a spammable macro. I'm not sure, but i suspect that the issue is the loop it does 100 times
Try this and click the macro until it dc's you, would like feedback on it ofc.
Macro
/run for bn = 0, NUM_BAG_SLOTS do for sn = 1, GetContainerNumSlots(bn) do iid = GetContainerItemID(bn, sn); if iid then SendChatMessage(select(2, GetItemInfo(iid)), "WHISPER", "nil", GetUnitName("player")); end end end
perfect I just dropped the loop down to 70 and it works like a charm. Dc's me 10-10 times with no problem logging back in. I dont have to restart client. No spamming. and No client crashes. (which i had happen when i attempted to spam first macro, lol) thanks a bunch
Tried this with lower than 70, I'm still getting the issue.
Any chance you could spam a list of item IDs. Say Item IDs 1000 through 5000 or something. Would help it become more "stable" and less random since it depends on how much people have in their bags right now.
Try this:
/run for i=0,100 do for bn=0,NUM_BAG_SLOTS do for sn=1,GetContainerNumSlots(bn) do iid=GetContainerItemID(bn,sn); if iid then SendChatMessage(select(2,GetItemInfo(iid)),"WHISPER","nil",GetUnitName("player")); if sn==10 then break; end end end end end
Tell me how it works for you.
Great find, this works as a lag macro too I believe... I will have to do some testing to see what happens server sideprobably going to be very interesting. +rep
I made a working one :
Simply whispers you with thousands of message with 9 digit random, dc in half a second, no trouble reconnecting so far/run for i=0, 2000 do SendChatMessage(random(999999999), "WHISPER", "nil", GetUnitName("player")) end
Edit : working on a more brutal one
Last edited by AraiXplorer; 09-18-2012 at 12:44 PM.