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

Profile that spams macro

Deathsmind

Member
Joined
Jun 14, 2013
Messages
382
Reaction score
0
Ok so I asked this before but I couldnt get it to work, I think the people answering me thought I had some intelligence, they were wrong lol. I havent made my own profile before for anything so I dont know what it is I need to do at all.

This is my macro

/sort guild

I want to spam that every 20s.

That is all I want.

So how can I make this happen? What botbase do I need to run it in to make it work where that is all it does.

For anyone wondering I use it on my guild bank, you have that open and run that macro and it sorts the guild bank really nice with bankstack, an addon. I throw tons of stuff on the AH all the time which gets my guild bank pretty messy with stuff that didnt sell, usually greens for transmog along with other obscure items in the game. I like to have a simi clean guild bank to continue throwing stuff up just so I know what I have on hand, and I dont put everything up on the AH either, some items I transfer between characters for whatever so I like to see how much I have of it.

So can anyone help me.
 
Try this. Run it on quest bot. Change what ever you want in this. If you want to up the time, change "20000" to "30000" (its in micro seconds, 1 sec = 1000)
Oh and I dont know how new you are, but you just copy that code into a note pad and save as whatever you need

PHP:
<HBProfile>
 
<Name>insert name here</Name>
   <MinLevel>1</MinLevel>
   <MaxLevel>101</MaxLevel>
   
   <MinDurability>-1</MinDurability>
   <MinFreeBagSlots>-1</MinFreeBagSlots>
  
<QuestOrder>  
	<While Condition="Me.IsAlive"> 
		<CustomBehavior File="RunMacro" Macro="/sort guild" WaitTime="20000" />				
	</While>
</QuestOrder>
</HBProfile>
 
Last edited:
If you wanted to make it more efficient DocBrown, get rid of the level tags and change the condition to true.
 
Back
Top