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

profile that can spam a macro I have?

Deathsmind

Member
Joined
Jun 14, 2013
Messages
382
Reaction score
0
So im looking for a profile that can hopefully spam a macro I made, its a macro for an addon that sorts and organizes my guild bank, I just want it to continue to push it every 10-20s or so. Im constally throwing stuff on the AH, and putting stuff on the Ah and the guild bank gets messy quickly and having something like that would be great, bet this has been asked a dozen times but hard to search for something like this.
 
that should do the job:

HTML:
<While Condition="true">
	<CustomBehavior File="RunMacro" Macro="/your macro here" />
	<CustomBehavior File="WaitTimer" WaitTime="15000" VariantTime="5000"/>
</While>

ofc, thats not the whole profile. just a snip. you can make it much more beautyful by defining while conditions and so on. but the snip above will run a macro, then wait between 10 and 20 seconds.
 
that should do the job:

HTML:
<While Condition="true">
	<CustomBehavior File="RunMacro" Macro="/your macro here" />
	<CustomBehavior File="WaitTimer" WaitTime="15000" VariantTime="5000"/>
</While>

ofc, thats not the whole profile. just a snip. you can make it much more beautyful by defining while conditions and so on. but the snip above will run a macro, then wait between 10 and 20 seconds.


This works with simple /cast macros but im trying to craft an item in my profile but i dunno how to do it when the macro is:
/cast Lederverarbeitung
/run for i=1,GetNumTradeSkills() do if GetTradeSkillInfo(i)=="Dicke draenische Hose" then CloseTradeSkill() DoTradeSkill(i) break end end

this just crafts pants with leatherworking ingame the macro works but in a profile it wont work when there r two / commands in one macro or is it still possible? when i put my macro in the custom behavior it doesnt work...
 
I actually finally got around to using this. I couldnt get it to work though. the /your macro here im assuming is where I am suppose to put my macro I want to be spammed.

<While Condition="true">
<CustomBehavior File="RunMacro" Macro="/sort bank" />
<CustomBehavior File="WaitTimer" WaitTime="15000" VariantTime="5000"/>
</While>

Is this all I need? do I need another / so //sort bank?
 
Back
Top