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

Is there any developer/programmer forum/guide/documentation?

Lightseeker

New Member
Joined
Mar 26, 2012
Messages
96
Reaction score
0
Hi,

I'm wondering if there is any forum, guide or documentation regarding the architecture and functions of Demonbuddy so that I can develop my own plugins, custom classes and profiles.

Thanks in advance!
 
The simple answer is no, there is no official documentation. You may find some scattered around the forum, but it's not official.

Import Demonbuddy.exe into your new Microsoft Visual Studio project as a reference, then you can import the libraries.

Code:
using Zeta;
using Zeta.Common;
using Zeta.CommonBot;
using Zeta.CommonBot.Settings;
using Zeta.Common.Plugins;
using Zeta.Internals;
using Zeta.Internals.Actors;
using Zeta.Internals.Service;

Also, feel free to figure out how other people's plugins work... and go off of them. There are certain methods that are required, which you will quickly find out... and not all of them work either, but are still required.

You can take a look at my plugin, Profile Restarter, to see a pretty good idea on some of it, which includes the Config button for the plugin. (The way I have some of it set up may be a little too advanced for beginners to programming though. Just ask if you have any questions!)
 
Last edited:
Back
Top