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

Skip Prolog Plugin

Taranira

New Member
Joined
Dec 21, 2014
Messages
329
Reaction score
1
Just because I see sometimes users who are asking how to use SkipPrologue();

How to:
1. Unzip the folder
2. Put the skipprolog folder in your plugin folder
3. Open the Plugin Editor from Archebuddy
4. Open the prolog.cs with the plugin editor and compile it
5. Run the skipprolog plugin
6. Relog your char to get the user interface

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 "Taranira / Everyone could have done this";
        }

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

        public static string GetPluginDescription()
        {
            return "Easy Prolog";
        }

        //Call on plugin start
        public void PluginRun()
        {
            SkipPrologue();
        }
        //Call on plugin stop
        public void PluginStop()
        {
        }
    }
}
 

Attachments

thank you

for a thank you we got a nice
reputation-40b.png
button :P
But you could have done this "plugin" by yourself. Like everyone could have done with a text editor and beeing able to read and write..
It's very easy to get started with C#
And some basic plugin's shouldn't be a problem after 1 week. You only need some free time to learn ^^
 
Last edited:
Yes it does work on fresh accounts.
The archeage client might close after you use it. But after a restart you don't have to do the prolog.
Also the user interface might not show up but that will be fixed too if you restart the account.
 
Back
Top