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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

minimal stable WOW client FPS for HB Bot

mishkigami

New Member
Joined
Oct 23, 2011
Messages
61
what is the minimal stable FPS or WOW client for HB BOT?
some ppl fix background fps in WOW client at 15, some 30.

i tested 12 bots on one machine with 25fps, seems its enogh for HB to work stable. but what is the minimal for stable HB working?
 
what is the minimal stable FPS or WOW client for HB BOT?
some ppl fix background fps in WOW client at 15, some 30.

i tested 12 bots on one machine with 25fps, seems its enogh for HB to work stable. but what is the minimal for stable HB working?
it really depends on you, since every inject or read takes a frame, the more frames you have the better off your going to be
take this code for example.
If(Me.HealthPercent <= 90 && SpellManager.CanCast("Heal"))
{
SpellManager.Cast("Heal");
}

to check Me.HealthPercent takes one frame
The CanCast takes another frame
and the Cast itself takes another.

so 3 frames are already lost just to cast a basic spell.

bigger CC's that have a lot more checks in them are going to take more frames then smaller ones. (depending on how the CC is coded framelocks allow more the one check to be made in a single frame but most developers dont have them implemented since its a fairly new addition to the bot)

if 25 frames is working great for you, awesome, but i wouldnt go below that. since as you can see from my explanation it takes time to run checks and that sometimes directly translates out to your Frames Per secand (fps)
 
im using 15 fps and everything is working well. But dont go below 15 :)
 
Back
Top