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

Spam one key plugin?

phaedrus

Member
Joined
Jul 12, 2013
Messages
964
Reaction score
0
Hello. Is there any plugin that spam one key (macro) like every 1 sec?
 
Thank you but i am looking for it on HB. Not other addon or script launcher.

edit: just looking very simple thing. It ll press number 9 (for examle) every 1 sec.
 
Last edited:
No, Honorbuddy doesn't interact with your interface, it sends commands directly to the server.
 
Well there is auto it scripts but when i start it i need to put wow on top of screen. I just want when this auto macro working i work on something else. Do you know how i do that?
 
u can do this, not sure if its what ur after tho,
PHP:
<CustomBehavior File="RunMacro" Macro="/click ActionButton3" NumOfTimes="1"/>
just put this in a while
 
u can do this, not sure if its what ur after tho,
PHP:
<CustomBehavior File="RunMacro" Macro="/click ActionButton3" NumOfTimes="1"/>
just put this in a while
Put where? :) Can you explain? Thanks
 
What "key" are you wanting to spam?

PHP:
<HBProfile>
<QuestOrder>

	<While Condition="true" >
		<CustomBehavior File="Misc\RunLua" Lua="ActionButton1:Click();" WaitTime="1000" />
	</While>

</QuestOrder>
</HBProfile>

The above code if pasted into a xml and loaded+ran through the Questing botbase will make the bot spam your first button endlessly while waiting 1 second between spams.
If you'll note it says: ActionButton1.
1 is your first button whereas 2, 3, 4, -etc are the other buttons in sequential of your spell bar starting from the left.




You could also add multiple button spams per loop.

This would make it spam two buttons at once.
<CustomBehavior File="Misc\RunLua" Lua="ActionButton1:Click(); ActionButtion2:Click();" WaitTime="1000" />​


This would make it spam one button, wait 1 second, then spam another button, wait 1 second.
<CustomBehavior File="Misc\RunLua" Lua="ActionButton1:Click();" WaitTime="1000" />
<CustomBehavior File="Misc\RunLua" Lua="ActionButtion2:Click();" WaitTime="1000" />​


The times are in milliseconds. So 1000 milliseconds = 1 second.
 
Last edited:
What "key" are you wanting to spam?

PHP:
<HBProfile>
<QuestOrder>

	<While Condition="true" >
		<CustomBehavior File="Misc\RunLua" Lua="ActionButton1:Click();" WaitTime="1000" />
	</While>

</QuestOrder>
</HBProfile>

The above code if pasted into a xml and loaded+ran through the Questing botbase will make the bot spam your first button endlessly while waiting 1 second between spams.
If you'll note it says: ActionButton1.
1 is your first button whereas 2, 3, 4, -etc are the other buttons in sequential of your spell bar starting from the left.




You could also add multiple button spams per loop.

This would make it spam two buttons at once.
<CustomBehavior File="Misc\RunLua" Lua="ActionButton1:Click(); ActionButtion2:Click();" WaitTime="1000" />​


This would make it spam one button, wait 1 second, then spam another button, wait 1 second.
<CustomBehavior File="Misc\RunLua" Lua="ActionButton1:Click();" WaitTime="1000" />
<CustomBehavior File="Misc\RunLua" Lua="ActionButtion2:Click();" WaitTime="1000" />​


The times are in milliseconds. So 1000 milliseconds = 1 second.

Thank you very much! It is working great :)
 
Can we add anti afk code in this one? Cuz when i start this my char tagged with afk and then log off :)
But not jump please :)
 
Last edited:
Can we add anti afk code in this one? Cuz when i start this my char tagged with afk and then log off :)
But not jump please :)
I've already replied to your PM about this.


But for anyone who may be interested.

PHP:
<HBProfile> 
<QuestOrder>

	<CustomBehavior File="Hooks\DoWhen" ActivityName="AntiAFK" UseWhen="Me.IsAFKFlagged" >
		<CustomBehavior File="Misc\RunLua" Lua="JumpOrAscendStart();" WaitTime="1000" />
	</CustomBehavior>

	<While Condition="true" > 
		<CustomBehavior File="Misc\RunLua" Lua="ActionButton1:Click();" WaitTime="1000" /> 
	</While> 

</QuestOrder> 
</HBProfile>
 
Is there any way without jump? Maybe turn left or right?

Use the Lua function: TurnLeftStart(); then use a timer to wait a little bit. Then run TurnLeftStop();
 
Is it possibel to make this profile a plugin?

Willing to make a donation for your help! I simple need a plugin that clicks "1" every X seconds
 
Back
Top