Register for your free account! | Forgot your password?

Go Back   elitepvpers > Popular Games > Metin2
You last visited: Today at 23:28

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Autoclicker Origins.

Discussion on Autoclicker Origins. within the Metin2 forum part of the Popular Games category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jun 2020
Posts: 1
Received Thanks: 0
Autoclicker Origins.

Hi, I tried to make an autoclicker but it doesn't work in metin, what should I add in +?
HTML Code:
using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.InteropServices;
using System.Net.NetworkInformation;

namespace Autoclickerd
{
    class Program
    {
        [DllImport("user32.dll")]
        public static extern bool GetCursorPos(out Point lpPoint);
        [DllImport("User32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)]
        public static extern void mouse_event(uint dwFlags, int dx, int dy, uint cButtons, uint dwExtraInfo);
        static void Main(string[] args)
        {
            bool clicking = true;
            System.Threading.Thread.Sleep(5000);
            while (clicking)
            {
                Point cursor = getCursorPosition();
                mouse_event(0x08 | 0x10, (int)cursor.x, (int)cursor.y, 0, 0);
                System.Threading.Thread.Sleep(100);
                Console.WriteLine("Good");
            }
        }

        public struct Point
        {
            public float x { get; set; }

            public float y { get; set; }

        }

        private static Point getCursorPosition()
        {
            Point p;
            GetCursorPos(out p);
            return p;
        }
    }
}
danystroke99 is offline  
Old 06/25/2020, 23:29   #2
 
elite*gold: 0
Join Date: Nov 2010
Posts: 1
Received Thanks: 8
Quote:
Originally Posted by danystroke99 View Post
Hi, I tried to make an autoclicker but it doesn't work in metin, what should I add in +?

HTML Code:
using System;

using System.IO;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Runtime.InteropServices;

using System.Net.NetworkInformation;



namespace Autoclickerd

{

    class Program

    {

        [DllImport("user32.dll")]

        public static extern bool GetCursorPos(out Point lpPoint);

        [DllImport("User32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)]

        public static extern void mouse_event(uint dwFlags, int dx, int dy, uint cButtons, uint dwExtraInfo);

        static void Main(string[] args)

        {

            bool clicking = true;

            System.Threading.Thread.Sleep(5000);

            while (clicking)

            {

                Point cursor = getCursorPosition();

                mouse_event(0x08 | 0x10, (int)cursor.x, (int)cursor.y, 0, 0);

                System.Threading.Thread.Sleep(100);

                Console.WriteLine("Good");

            }

        }



        public struct Point

        {

            public float x { get; set; }



            public float y { get; set; }



        }



        private static Point getCursorPosition()

        {

            Point p;

            GetCursorPos(out p);

            return p;

        }

    }

}

Run your program as administrator

Sent from my SM-G960F using Tapatalk
ceana200 is offline  
Reply

Tags
autoclicker, c#, hack, metin2, origins




All times are GMT +1. The time now is 23:30.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.