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

Taking requests

silverdraco

Member
Joined
Jan 29, 2015
Messages
50
Reaction score
0
I just decided to try out Archebuddy 4 days ago and so far I'm entertained :)

You guys have any requests? (I checked the main ones on the first pages of this subforum, but feel free to repeat if you really want to see one of them)
 
Heal Plugin :(

something simple like :

Press Hotkey 1 - Use healing rotation 1
Press Hotkey 2 - Use healing rotation 2
etc.

Best way would be if the user is able to configure the rotations themself by simply ticking checkboxes of skills they want to use in each rotation.
 
Heal Plugin :(

something simple like :

Press Hotkey 1 - Use healing rotation 1
Press Hotkey 2 - Use healing rotation 2
etc.

Best way would be if the user is able to configure the rotations themself by simply ticking checkboxes of skills they want to use in each rotation.

I really dislike making UI's in this. If you want, post me the rotations and explain how they work and I'll make a hardcoded version that you can edit by just changing variables.
 
How about a simple pluggin that runs my mount in a circle. I know I can do this with a simple macro, but I want to use my computer while I level the mount.
 
How about a simple pluggin that runs my mount in a circle. I know I can do this with a simple macro, but I want to use my computer while I level the mount.

Ask and you shall receive!
Code:
using System;
using System.Drawing;
using System.Windows.Forms;
using System.Threading;
using System.Collections.Generic;
using System.Linq;
using ArcheBuddy.Bot.Classes;

namespace DefaultNameSpace{
    public class DefaultClass : Core
    {
        public static string GetPluginAuthor()
        {
            return "Silver";
        }

        public static string GetPluginVersion()
        {
            return "1.0";
        }

        public static string GetPluginDescription()
        {
            return "Spawns mount and runs in circles";
        }
        
        String mountType = "Brown Donkey"; //Change this to whatever mount you have. [I](ie. Brown Lilyut Horse, White Reindeer, ...)[/I]
        //Call on plugin start
        public void PluginRun()
        {   
            if(!isMounted()){
                UseItem(mountType);
                Thread.Sleep(1000);
                SitToMount();
            }
            while(true){
                MoveForward(true);
                RotateRight(true);
            }
        }
        //Call on plugin stop
        public void PluginStop()
        {
            MoveForward(false);
            RotateRight(false);
        }
    }
}
 
Last edited:
A Jury bot that does:
- Pauses any other plugin on jury invite
- Accept Jury invite
Add random verdict :D
After getting teleported back, resumes other plugin(s)
 
A Jury bot that does:
- Pauses any other plugin on jury invite
- Accept Jury invite
Add random verdict :D
After getting teleported back, resumes other plugin(s)

I looked through the API, there seems to be no references to "jury". I don't think it's supported, unfortunately :\
 
Since your taking requests and while I've been working on a farming plugin of my own, I'd like to see one related to pack placement. I do not see anything in the API specify for it, but pack placement should/would be nothing more than pack placement on a scarecrow and maximizing it's placement for most packs possible.
 
Since you take request.. we lack a decent AH plugin..
 
Since your taking requests and while I've been working on a farming plugin of my own, I'd like to see one related to pack placement. I do not see anything in the API specify for it, but pack placement should/would be nothing more than pack placement on a scarecrow and maximizing it's placement for most packs possible.


I'm not really sure.. It seems like quite a hassle to get something like that working.

Theoretically, one could just define a set pattern that the bot would just replicate every time (ie. For a small farm, move to farmStartX + offset x counter > turn character at some preset angle > drop back > repeat). But still, it sounds like quite a pain doing even that...

EDIT: I actually might have an idea for this. I'll see what I can do during the weekend.
 
What would that involve?
Automatically bidding on items that will expire soon if they are below a pre-set price
Automatically buyout items that are below a pre-set price
Collect gold/items from mailbox, return to AH
...

many feature can be thinked :)
 
Automatically bidding on items that will expire soon if they are below a pre-set price
Automatically buyout items that are below a pre-set price
Collect gold/items from mailbox, return to AH
...

many feature can be thinked :)

Pm'ing you for more info
 
Hello Silverdraco! Although you might consider this a pain( Seeing how you grunt at all the larger projects) I believe you should finish or even recreate a plugin that levels a player to LVL 50 through quests. This has been a thing I believe many people have been waiting for Samolka to finish. Yet people haven't heard or been updated about any further development as you can see in his thread "https://www.thebuddyforum.com/archebuddy-forum/archebuddy-plugins/questing/177636-plugin-questing-102.html" . Furthermore, I think this is a task you should contemplate doing for the Buddy Community as I know many would appreciate it! Also, I am not with any knowledge of creating buddy plugins but if you need help feel free tp PM me.
 
Hello Silverdraco! Although you might consider this a pain( Seeing how you grunt at all the larger projects) I believe you should finish or even recreate a plugin that levels a player to LVL 50 through quests. This has been a thing I believe many people have been waiting for Samolka to finish. Yet people haven't heard or been updated about any further development as you can see in his thread "https://www.thebuddyforum.com/archebuddy-forum/archebuddy-plugins/questing/177636-plugin-questing-102.html" . Furthermore, I think this is a task you should contemplate doing for the Buddy Community as I know many would appreciate it! Also, I am not with any knowledge of creating buddy plugins but if you need help feel free tp PM me.

When did you see me "grunt" at all the large projects?
 
I want to toss my hat in the rink for a good Marketplace plugin. If you'd like some help with functionality ideas or testing, I'd be glad to help. No coding experience on my end to speak of.
 
We desperately need an update to the questing plugin. Perhaps create a new one that finishes all quests to 50. You would become everyone's best friend.
 
I want to toss my hat in the rink for a good Marketplace plugin. If you'd like some help with functionality ideas or testing, I'd be glad to help. No coding experience on my end to speak of.

AH plugin is already in the making and mostly functional. The problem is that releasing something like this might not be the best idea...
 
The questing plugin would help the community quite a bit. I personally don't think an AH plugin should be released, but I feel the same with the land grabber. They're both very manipulative and exploitative, they actually hurt legitimate players.
 
Back
Top