It`s a pluglin where u can drop back, turn 180 and teleport
TO active the combo just hit "1"
If u wana change the hotkey, see here the list of keys:
Key.D1
TO active the combo just hit "1"
If u wana change the hotkey, see here the list of keys:
Key.D1
Code:
using System;
using System.Windows.Forms;
using System.Threading;
using System.Collections.Generic;
using ArcheBuddy.Bot.Classes;
namespace YourNamespace{
public class YourClass : Core
{
public void UseSkillAndWait(string skillName, bool selfTarget = false)
{
while (me.isCasting || me.isGlobalCooldown)
{
Thread.Sleep(40);
}
if (!UseSkill(skillName, false, selfTarget))
{
while (me.isCasting || me.isGlobalCooldown)
{
Thread.Sleep(40);
}
}
}
public void keyDown(Keys k, bool isControl, bool isShift, bool isAlt)
{
// change "Keys.D1" if u wana active this macro with other key
if (k == Keys.D1)
{
// change "10" or remove "dist(me.target) <= 10 &&" if u wana do this combo in any distance
if(dist(me.target) <= 10 && skillCooldown("Drop Back") == 0 && skillCooldown("Teleportation") == 0 )
{
TurnDirectly(me.target);
Thread.Sleep(30);
UseSkillAndWait("Drop Back");
Thread.Sleep(200);
TurnDirectly(me.target);
Thread.Sleep(200);
Turn(3.14);
UseSkillAndWait("Teleportation");
}
}
}
public void PluginRun()
{
onKeyDown += keyDown;
while (true)
Thread.Sleep(1000);
}
}
}