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

Request. Plugin that keeps pressing a key

wowsoul

New Member
Joined
Dec 19, 2010
Messages
21
Reaction score
0
Hi, did search on the forum and didn't find anything, so.
Basicaly i am looking for a plugin that i can config, to press a specific key with a variable delay, all this while i am on another window.
I do use a macro program, the problem is i have to be on that window, else it fails.

thx.
 
This is possible with a quite simple PB profile
 
while(true) {
Styx.CastSpell("IDOFSPELL");
try{Thread.sleep(1000);}catch(Exception e) {System.err.println(e);}
}

I code java, so, that's obviously more java than C#, but, same difference. Also, not really sure the API for honor buddy. I think it's Styx.Me.CastSpell, but, no idea.
 
while(true) {
Styx.CastSpell("IDOFSPELL");
try{Thread.sleep(1000);}catch(Exception e) {System.err.println(e);}
}

I code java, so, that's obviously more java than C#, but, same difference. Also, not really sure the API for honor buddy. I think it's Styx.Me.CastSpell, but, no idea.
SpellManger.Cast("Fireball");

and you NEVER wanna sleep while coding for honorbuddy. doing so locks up the entire thread, no just your code.
 
SpellManger.Cast("Fireball");

and you NEVER wanna sleep while coding for honorbuddy. doing so locks up the entire thread, no just your code.
:Shrug:, never coded an addon. Downloading C#.net right now to start my first bot/plugin :D
 
ive been looking for something like this for days now but it says i do not have permission to download the cs file on the last page, is it locked because it archived?
 
Back
Top