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

Search results

  1. Apoc

    Bot not walking towards target (Cannot generate paths before the map is initialized)

    Just restart the bot if that happens. When the nav server dies, sometimes the connection is picked up too quickly on restart. I'll add some stuff to prevent that later. But for now, just restart.
  2. Apoc

    GameManager.LocalPlayer.GetActiveCCs() not working correctly

    Yes, just recently. I have a feeling the actual times are off. Are they correct?
  3. Apoc

    GameManager.Inventory.Bags.Items List never updates

    GreyMagic (the memory library we use) caches memory reads until they are cleared. This is per-thread. You'll need to do GameManager.Memory.ClearCache() In your button handler before you pull anything from memory.
  4. Apoc

    Crazy fps lag

    Please do not post snippets from the log window. There is an actual log file (in the botdir/Logs directory). We need that file, as it contains more information.
  5. Apoc

    Wildbuddy dont load

    Very strange. It looks like you pressed the inventory dump hotkey, which failed. On top of the general initialization failing. If you are willing, I'd like to remote into your PC to help figure out what's going on. I can only assume something is blocking the bot from being able to talk to the...
  6. Apoc

    GameManager.Inventory.Bags.Items List never updates

    This is not true at all. AutoEquip relies on the inventory being updated when the UpdateInventory Lua event is fired. Please show me your code, I have a feeling you're just not doing something properly.
  7. Apoc

    Creature selection issues or Instancing Issue?

    The "new" operator on things won't work in this case, because the code is referencing ProfileElement. It will never call your CanRunDuringCombat, since we're not calling the tag directly, using a specific type reference. (Look up the 'new' keyword caveats) Set CanRunDuringCombat="true" in your...
  8. Apoc

    GameManager.LocalPlayer.GetActiveCCs() not working correctly

    Use Actor.GetCCStateTimeRemaining
  9. Apoc

    Question regarding release versus Beta

    Yes, I will re-open the beta thread. Sorry about that!
  10. Apoc

    Bot down?

    There was a patch. Please read the message the bot presents you when you start it. A new version of the bot will be available in the next 15-20 minutes.
  11. Apoc

    ETA on clearing the new build ?

    About 10 minutes for both Beta and Release builds.
  12. Apoc

    GameManager.LocalPlayer.GetActiveCCs() not working correctly

    Please test and see if CC states work properly now! If not, I'll have to do more in-depth testing. (It's slightly difficult to find a place where I can test CC's and not constantly die)
  13. Apoc

    PathMagic Path and Challenge related profile tags and conditional statements

    Also, moving this to the plugins forum, since this isn't a profile! I'll leave a redirect here however.
  14. Apoc

    Weird error

    Sorry, I forgot to remove something from the latest beta build. I'm pushing a new build now.
  15. Apoc

    GameManager.LocalPlayer.GetActiveCCs() not working correctly

    Thanks for the heads up. They changed how all the CC states work in the client. I'll get the core stuff updated.
  16. Apoc

    Medic broken?

    There's very little need for healing in this game until you get to level 50 and are doing party-related things. I'd suggest not having any healing abilities in your LAS at all.
  17. Apoc

    PathMagic Path and Challenge related profile tags and conditional statements

    Thanks for the awesome contribution! If you have anything you'd like to see in the core bot, just let me know. (I haven't gotten around to properly wrapping this stuff yet) My only request is that you try to stay with the conventions used with all the built-in tags. Eg; "Quest" should be...
  18. Apoc

    Line Of Sight issues with ranged players

    Elevators work FYI. I'll explain that later in another post when I document some other stuff. LOS in this game is kind of hit or miss. The servers themselves do very little in the way of LOS. And doing the checks on the bot side is expensive. (Tip: Most telegraphs ignore LOS)
  19. Apoc

    Cant get avoid creature to work

    I don't know where you guys get these examples from... AvoidCreature does not belong in the Grind tag. They are completely separate tags. Put it before the Grind tag.
  20. Apoc

    Wildbuddy dont load

    Is the game minimized to the tray? If so, don't do that. :) Also, is the game running in DX11 or DX9 mode?
Back
Top