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
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()
{
}
}
}






