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

Auto jump (only in fight)

Machlan

New Member
Joined
Oct 7, 2014
Messages
25
Reaction score
0
If u target anyone to atack it`s start jump

if u wana stop jump press ESC to cancel your target.

U can cancel the stun (like Overhelm) if u r jumping

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 Follower
{
    public class Jumper : Core
    {
        public static string GetPluginAuthor()
        {
            return "Machlan";
        }
 
        public static string GetPluginVersion()
        {
            return "0.0.1";
        }
 
        public static string GetPluginDescription()
        {
            return "Jumping";
        }
        public void UseSkillAndWait(string skillName, bool selfTarget = false)
        {
            while (me.isCasting || me.isGlobalCooldown)
            {
                Thread.Sleep(50);
            }   
            
            if (!UseSkill(skillName, false, selfTarget))
            {
                while (me.isCasting || me.isGlobalCooldown)
                {
                    Thread.Sleep(25);
                }
            }
        }  
 
        public void PluginRun()
        {
            while (true)
            { 
                while (me.target == null)
                {      
                    Thread.Sleep(25); 
                }
                
                while (me.target != null && dist(me.target) < 35 && buffTime("Stealth (Rank 3)") == 0)
                {  
                    Jump(true);
                    Thread.Sleep(100);
                    Jump(false);
                    if (me.target != null && !isAlive(me.target))
                    {
                        CancelTarget();
                    }
                }
                }
            }
        }
    }


Thanks to Mordack, because i done it because i got some codes from stonearrow pluglin
 
Back
Top