hi,
since land scanner is detected this code only to build house without scanning
what you need this plugin for? to build house while you keep moving or spam every sec to try steal house time can be m
requirement:
- stand on the area you want to build then run the plugin
- if you move it will spam build in your position till building is set ^_^
code is 3 simple lines for learning remember to be creative if you don't want to get banned
blue color is time between each try its safer if its 500+ no human can do faster in this game hahaha
green is the location which is your character movement ^_^
full plugin code
since land scanner is detected this code only to build house without scanning
what you need this plugin for? to build house while you keep moving or spam every sec to try steal house time can be m
requirement:
- stand on the area you want to build then run the plugin
- if you move it will spam build in your position till building is set ^_^
code is 3 simple lines for learning remember to be creative if you don't want to get banned
red color is item to buildwhile (!getInvItem("ItemToBuild").ConstructHouse(me.X, me.Y)) {
Thread.Sleep(1000);
}
blue color is time between each try its safer if its 500+ no human can do faster in this game hahaha
green is the location which is your character movement ^_^
full plugin 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 "Alq0rsan";
}
public static string GetPluginVersion()
{
return "1.0.0.0";
}
public static string GetPluginDescription()
{
return "Build me house while i move ^_^ or on my location";
}
public void PluginRun()
{
while (!getInvItem("ItemToBuild").ConstructHouse(me.X, me.Y)) {
Thread.Sleep(1000);
}
}
public void PluginStop()
{
}
}
}
Last edited: