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

Is it possible to que arena with 1 button ?

cherlot

New Member
Joined
Oct 9, 2014
Messages
73
Reaction score
0
Hey,

I want to ask if It is possible to que arena with 1 button ?

Just joining not accepting

Thank you
 
Yes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using ArcheBuddy.Bot.Classes;
using System.Threading;
using System.Threading.Tasks;
using System.IO;

namespace ArcheAgeIlluminati
{
class ArenaBot
{
private Core core;
private Main myForm;
private Thread thread;
public static bool inArena = false;

public ArenaBot(Core c, Preferences p, Main m)
{
core = c;
myForm = m;

thread = new Thread(arenaThread);
thread.Start();
}

private void enterBattlefield()
{
core.BattleFieldInviteAnswer(true);
}

public void Stop()
{
thread.Abort();
}

private void arenaThread()
{
//movement = new Movement(core, Main.selectedGpsRoute, "arenamiddle");

//bool reachedDestiation = false;
while (true)
{
if (core.me == null)
continue;

if (core.me.isInsideBattleField || core.getCurrentTerritory().displayName == "Gladiator Arena")
{

ArenaBot.inArena = true;


//if dead respawn
if (!core.me.isAlive())
{
//reachedDestiation = false;
core.SetTarget(core.me);
Combat.targetedCreature = null;

core.ResToRespoint();
Thread.Sleep(5000);
}

if (core.me.isAlive())
if(core.LeaveBattleField())
{
ArenaBot.inArena = false;
core.Log(core.me.name + ": Leaving gladiator");
Thread.Sleep(15000);
}
core.Log(core.me.name + ": Still inside gladiator");

Thread.Sleep(1000);
}
else
{
// reachedDestiation = false;
ArenaBot.inArena = false;
//movement.stopGps();
//not in battlefield
if (core.me.isRegisteredToBattleField)
{
core.Log(core.me.name + ": Already signed up for gladiator");
}
else
{
core.Log(core.me.name + ": Signing up for gladiator");
core.RegisterToBattleField(BattleField.GladiatorArena);
core.onBattleFieldInvite += enterBattlefield;
}
}
Thread.Sleep(5000);
}
}
}
}
 
I suggest you not to use this code
Those features are buggy as hell (even out admited it), it will only lead you to a ban

you can end in an arena with a green enemy you won't be able to fight unless using ab, and the ennemy won't be able to attack you
if he make a video you're done
 
you can end in an arena with a green enemy you won't be able to fight unless using ab, and the ennemy won't be able to attack you

that's the fun part :D
nah you are right you shouldn't use it unless for testing purpose on a account you don't care about and a IP you don't care about^^
 
I used it for a couple days and those bots are still safe, my other 3 accounts got banned that didnt use it lol. But yeah it is buggy as hell, I told Out and he said he will look into it.
 
Back
Top