This is just a simple script that hits stealth for you. Very useful for tradepack runs.
Click the start button in the plugin manager to start and stop
1. Make a folder in plugins called AlwaysStealth
2. Open plugin manager to paste and save alwaysStealth.cs to AlwaysStealth folder
3. hit compile
Click the start button in the plugin manager to start and stop
1. Make a folder in plugins called AlwaysStealth
2. Open plugin manager to paste and save alwaysStealth.cs to AlwaysStealth folder
3. hit compile
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 "Kavex";
}
public static string GetPluginVersion()
{
return "1.0.0.0";
}
public static string GetPluginDescription()
{
return "AlwaysStealth: Auto-Stealth";
}
//Call on plugin start
public void PluginRun()
{
while (true){
while (skillCooldown("Stealth") != 0L) {
Thread.Sleep (50);
}
UseSkill ("Stealth",true,false);
}
}
//Call on plugin stop
public void PluginStop()
{
}
}
}
Last edited: