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

Search results

  1. Apoc

    Buddy Team and Star Wars: The Old Republic

    I'm with this guy.
  2. Apoc

    Developer Rules Update

    As with what Hawker said, we'd like to see that "small edits" stay with the original developer's codebase. (Having an entirely new CC that only changes 3 lines, really is just clutter.)
  3. Apoc

    Refreshing WoW's Focus Frame during Me.SetFocus

    We modify the value in memory, without firing Lua events. (The focus frame will update when an event is fired saying its changed)
  4. Apoc

    [BotBase] RaidBot - 30fps CC Execution

    The lag is due to CCs using Thread.Sleep(someValue) or StyxWoW.SleepForLagDuration(). Both of these are not recommended at all to be used. (We use them internally in HB to ensure certain bugs don't occur, but we do so in very key spots that won't cause issues.) Most CCs will sleep after...
  5. Apoc

    Report: Priest Penance spell bug

    Correct, its a channeled spell, not a casted spell. (They're stored in different places) I'll have someone add the API.
  6. Apoc

    Constantly update heal unit

    Without any code to look at, nobody can help you. We can't just give you a bunch of code as it won't really answer your question.
  7. Apoc

    handling "PLAYER_REGEN_DISABLED"

    You'll need to add an extra filter to the register call. Singular registers for the COMBAT_LOG_EVENT_UNFILTERED event, but also includes a secondary filter for that event (to cut down on spam from places like BGs, where it can slow the bot to a crawl) !Lua.Events.AddFilter(...
  8. Apoc

    Casting on the move: Scorch & Lightning Bolt

    Or, just use SpellManager.Cast, and pass false to the checkMovement parameter.
  9. Apoc

    For people with the "session invalid" problem: they're working on it

    So, just confirm, are you still getting session invalid issues right now?
  10. Apoc

    Play a wav file

    SoundPlayer simpleSound = new SoundPlayer(@"c:\Windows\Media\chimes.wav"); simpleSound.Play(); How to: Play a Sound from a Windows Form
  11. Apoc

    Beginner questions about building a CC from scratch.

    Mostly true. Every BotBase should be implementing some form of target weighting (and all bots packaged with HB by default, do) so you can use Targeting.Instance.FirstUnit to get the "best target" according to the bot. There are times where this target may not be best (for example, healers and...
  12. Apoc

    [IRC] Honorbuddy unoffical IRC Server

    We use quakenet because it avoids spam. If you need to do a lot of spamming on quakenet, use private messages, not channel messages.
  13. Apoc

    Buddy Team and Star Wars: The Old Republic

    Quick update before I head off to bed. Almost all nav-related issues are now fixed. I can happily say, we are the only ones (and likely will be the only ones, for quite some time) to implement a fully complete world mesh system (akin to HB). This includes elevators. :) A lot of stability...
  14. Apoc

    Bug: !StyxWoW.Me.CurrentTarget.IsFriendly?

    We don't support *botting* in arenas. (Combat bots are a different story. Its just far too risky to AFK arenas) As for the IsFriendly not working properly, thats likely due to how we cache it. (Since they may be friendly to begin with, but turn hostile [see: dueling] HB won't catch that change...
  15. Apoc

    [Fixed] Authentication Failed

    Sorry folks, forgot to make an announcement. We're doing some maintenance and making a few code changes for the auth servers. Might be a bit intermittent throughout the day. (However, you shouldn't lose any currently running bots!) If the bot doesn't log in right away, just wait a few minutes...
  16. Apoc

    Buddy Team and Star Wars: The Old Republic

    We have no set-in-stone ETA. Unfortunately, whenever we think we'll have it out, we always find some game-breaking issue that prevents us from doing so. (The first was a massive change to the way they reference things in the engine, which took nearly 5 days to fix properly) We've been...
  17. Apoc

    BG buddies overpopulating battlegrounds

    Alright, let me put this down in a proper form (and yes, it may seem a bit "rude" to customers, but it has to be said) BGBuddy may take the same "paths" (randomized a bit), however this is the way the majority of the customer base wants it. If we were to force it to take very long paths (say...
  18. Apoc

    TreeSharp Help PLZ

    Removed CnG's post. There's no reason for the attitude (as you already said). To give a short answer to those reading this thread; there's no difference between "ctx" and "ret". Both are just anonymous variable names. You can call it whatever you want.
  19. Apoc

    wow process id

    StyxWoW.ResetAfk(); ;)
  20. Apoc

    Simple TreeSharp Custom Class

    "TreeSharp" is just the library I wrote to implement Behavior Trees in C#. I'm sort of happy people have stopped calling it BTs and just gone to "TreeSharp" but please, be aware that TreeSharp is simply an implementation of behavior trees, for .NET. Please check the wiki, chinajade has done a...
Back
Top