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

Search results

  1. M

    Why do AB crash when openning SqlServer LocalDB connection?

    I tried both, inside pluginrun thread and a new WPF thread, same error. I did my plugin layout without AB and it is working find. But when I try it as class library for use it as plugin, I can't do sql connection. Sql server logs didn't register any call. If you have used Sql Server LocalDB any...
  2. M

    Why do AB crash when openning SqlServer LocalDB connection?

    Out -> I understand you must be very busy but I have searched on google several hours and I didn't find nothing I doing wrong: try { var connectionString = "Data...
  3. M

    new ab update

    When AB s updating, it renames updater.exe to updater.exe.bak, ok! But after this, it extract updater.zip to 930E4D49.exe instead to updater.exe and it keeps trying to launch the new updater(930E4D49.exe) in recursive mode and crashes. After closed and trying relaunch 930E4D49.exe seems it is...
  4. M

    Not recieving items from mail

    Same here, Mail.ReceiveItemFromMail(Item) generates an error in Archeage Client : "Invalid Slot!"
  5. M

    [UPDATED] What new playersbotters would like to see in the AB

    Out, pls give-me a light. How Do I select only items sellable by NPCs? I have done using SqlNPCs but this is hard work & slow. Maybe there is a fast way. And very important: How can we upgrade profession(Actability) level? Explained in this post. Sorry, if this post is in wrong thread...
  6. M

    getScheduleItems() BUG

    You are my Hero;) Ty very much. Testing now...
  7. M

    Is there any way for AB sessions start minimized?

    You can make a plugin, checking it with auto-run: Add using System.Diagnostics; and using System.Runtime.InteropServices; to the top of your file. Declare DllImport Functions: #region DLLImport [DllImport("user32.dll")] [return: MarshalAs(UnmanagedType.Bool)]...
  8. M

    1.7A update

    Are u Patron? Because getAuctionBuyList is working for me. Maybe, you are missing any parameter.
  9. M

    1.7A update

    Thanks Out, Auction methods is working again and without ComeTo. It's very nice. XD
  10. M

    1.7A update

    Item.MakeAuctionLot Error: "Can't list item due Character or Account restriction" (Patron Account). This was working fine before the patch. Auction methods(Patron accounts) shouldn't make use of ComeTo anymore, because now we have a shortcut.
  11. M

    ArcheBuddy Updates Delay

    When Archeage or Glyph are updated, we have to wait several hours until you update ArcheBuddy. I don't know how many people have access to update it, but can you improve this update? Cause the farms and others tasks have schedule time for harvest, etc. I have searched in ArcheBuddy's API...
  12. M

    How to send a key press for a certain skill?

    To send keys to game client, I think it must be visible and foreground and you can use imported User32.dll functions. I don't know if AB can do it itself. using System.Diagnostics; // Process using System.Runtime.InteropServices; // DllImport //... // import the function in your class...
  13. M

    How do Upgrade/Downgrade Specialization

    I found how to get specialization/points, but I couldn't find how to do upgrade/downgrade. foreach (var actb in me.getActabilities().where(w => w.points == 20000 && w.name == "Farming")) { actb.??? } And how can I cancel the current CollectItemsAtFarm/PlantItemsAtFarm being executed...
Back
Top