[Release] Mount Level
Mount Level
Levels your mount by moving in circles.
Someone requested this before and I did it since it's literally less than 10 lines of code (needed).
If you have problems compiling you can get the compiled version by clicking the link in my signature.
Mount Level
Levels your mount by moving in circles.
Someone requested this before and I did it since it's literally less than 10 lines of code (needed).
Code:
using ArcheBuddy.Bot.Classes;
using System;
namespace Mount_Level {
public class Main : Core {
public static string GetPluginAuthor() {
return "CoalCloud";
}
public static string GetPluginVersion() {
return "1.0.0.0";
}
public static string GetPluginDescription() {
return "Mount Level";
}
public void PluginRun() {
ClearLogs();
Log(String.Format("~~ Plug-in start: {0}, {1}", GetPluginDescription(), GetPluginVersion()));
while (true) {
MoveForward(true);
RotateRight(true);
}
}
public void PluginStop() {
MoveForward(false);
RotateRight(false);
Log("~~ Plug-in stop.");
}
}
}
If you have problems compiling you can get the compiled version by clicking the link in my signature.
Last edited: