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

Search results

  1. WoodenJester

    Plug-in for placement of packs on the scarecrow

    It's looking good :) You may want to look both here and here for your question. However that's aimed towards Buddy Store Developer, if that's what you were asking about.
  2. WoodenJester

    WTFast

    Seems quite a few people are having a problem with WTFast, waiting for an update of some sort may be the only viable option at the point. - Unless you want to attempt a full re-install to double check for overwrites.
  3. WoodenJester

    Error after uptade

    Patch will come soon
  4. WoodenJester

    Anyone botting with just 1 account?

    I run 5 accounts per server, European & US with what you described as 'smart' botting, have been doing so for quite a long time. I also log onto each account occasionally and do random things without botting to purposely mess up the routine. Just please be actively aware that you will never...
  5. WoodenJester

    System.Runtime.Remoting.RemotingException

    Sorry for being a little late, but I ran into the exact same problem & the 'solution' I found is just using catch methods as mentioned above. foreach (Creature obj in getCreatures()) { try { // Do your stuff Log(obj.name); } catch (RemotingException) { Log("Object didn't...
  6. WoodenJester

    Query a labor cost on dooded object

    If i recall correctly, you can see how much labor it will cost to gather a doodad on the description (on mouse over). You could try getting the skill description of the doodad, and then splitting that string up with substring.
  7. WoodenJester

    Seach plugin for daily gifts

    If you're talking about the 'Daily Login Tracker'... The moment it is available in the API i will be adding it to the Loyalty Token Collector, or be creating another stand-alone free plugin to do the job.
  8. WoodenJester

    TextBox Autocompletion in Windows Forms

    Before you start your form from your plugins main cs file, use this formThread.ApartmentState = ApartmentState.STA; e.g. Thread formThread = new Thread(StartFormWithSTA); formThread.ApartmentState = ApartmentState.STA; // Do this before starting formThread.Start(); private void...
  9. WoodenJester

    About interface blocked

    while(true) { //Do Things here Thread.Sleep(10); // Sleep to stop the UI from freezing up }
  10. WoodenJester

    A little Help. Free Hard Core Super Eazy Multi-autofarmer with template saving.

    So you're just trying to find the skill 'description' for the doodad? #edit There's genuinely no reason at all for you to save the skill. Try using this somewhere in your script. public string GatherSkill(DoodadObject dood) { string skill = ""...
  11. WoodenJester

    Too many applications

    https://www.thebuddyforum.com/archebuddy-forum/archebuddy-support/229021-x2-client-application-running.html
  12. WoodenJester

    Automatically target mob

    private Creature findMob() // our mob finding function { Creature choice = getCreatures().First(); // First Mob in the list of all creatures (stops us from getting a null reference later on) foreach (Creature mob in getCreatures()) // All Mobs in current view { if (mob.aggroTarget ==...
  13. WoodenJester

    [IMPORTANT] All store plugin devs - please submit new versions in store.

    Done, though it'll be a first-time release for both (5501) ICU & (5451) LTC
  14. WoodenJester

    [Plugin] LevelData - Track your leveling progress

    If you added in something to calculate an approximate time till level-up, based on how much you've gained from start - that could be pretty cool. ;) Otherwise, nice work :D
  15. WoodenJester

    Traderunner

    Sorry, i thought you were replying to totalschaden.
  16. WoodenJester

    Traderunner

    https://store.buddyauth.com/Product?productId=616
  17. WoodenJester

    Please help with code to pick up pack from a farm

    You might want to make that remotely readable by wrapping CODE around it.
  18. WoodenJester

    [Plugin] Four Songs - Party/Raid Buffs ( Songcraft FTW Baby )

    Change the 'Write your code' step to 'Copy & Paste' and that's all there is to it.
  19. WoodenJester

    [official gather2buddy post for archeage] [g2b] (gatherbuddy2)

    Then list credit on your post ;)
  20. WoodenJester

    Inject Failed - Bot has stopped working

    Yup it's working again Thanks out :)
Back
Top