Autoclicker/Mouse mover?

06/23/2018 07:31 Raper88#1
Hello.

Someone allready can confirm which Autoclicker and mousemover works for bless EU? Mate tried out a onetime buy AA he bought years before but he said the AA won't work in bless also if it's the only opened window and stays in front.
I'm trying to use it for handicraft-dismantle route and want to record movement by myself. Any free or 1timebuy suggestions/ecperience?

Kind Regards
Dude who created this acc as a 14 y old
06/23/2018 11:56 killzone#2
What anti-cheat BLESS uses?
06/23/2018 16:22 Raper88#3
Quote:
Originally Posted by killzone View Post
What anti-cheat BLESS uses?
It's xigncode3 as i remember right.
06/23/2018 16:50 an087535#4
Quote:
Originally Posted by killzone View Post
What anti-cheat BLESS uses?
It uses Battleye. There is also a xgincode folder but I don't see that running in the task manager, just Battleye.
06/24/2018 15:51 Raper88#5
Quote:
Originally Posted by an087535 View Post
It uses Battleye. There is also a xgincode folder but I don't see that running in the task manager, just Battleye.
Right BattlEye. Xigncode3 was in kr only i guess

Someone knows which ac/mm to use?
06/25/2018 04:18 shanx989#6
X MOUSE BUTTON CONTROL
JITBIT MACRO RECORDER
06/25/2018 12:36 an087535#7
Quote:
Originally Posted by shanx989 View Post
X MOUSE BUTTON CONTROL
JITBIT MACRO RECORDER
I tried Jitbit. It clicks but that clicking doesn't trigger anything ingame. Can you change the left click to a keyboard button ingame?
06/25/2018 13:16 zyga30#8
AutoHotkey in Administrator mod
06/26/2018 00:31 greenkid#9
this ?
[Only registered and activated users can see links. Click Here To Register...]
06/28/2018 15:31 Ploxasarus#10
Code:
[DllImport("user32.dll")] public static extern void mouse_event(int dwFlags);
        public const int MOUSEEVENTF_LEFTDOWN = 0x0002;
        public const int MOUSEEVENTF_LEFTUP = 0x0004;
Code:
        private void AutoClicker_Tick(object sender, EventArgs e)
        {
            mouse_event(MOUSEEVENTF_LEFTDOWN);
            mouse_event(MOUSEEVENTF_LEFTUP);
        }

[Only registered and activated users can see links. Click Here To Register...]
06/30/2018 04:02 Raper88#11
Ty for all suggestions i will Hey them asap to Report some feedback
07/02/2018 12:29 Raper88#12
Quote:
Originally Posted by greenkid View Post
this ?
[Only registered and activated users can see links. Click Here To Register...]
sth like that but i also Need it for MP.

Quote:
Originally Posted by Ploxasarus View Post
Code:
[DllImport("user32.dll")] public static extern void mouse_event(int dwFlags);
        public const int MOUSEEVENTF_LEFTDOWN = 0x0002;
        public const int MOUSEEVENTF_LEFTUP = 0x0004;
Code:
        private void AutoClicker_Tick(object sender, EventArgs e)
        {
            mouse_event(MOUSEEVENTF_LEFTDOWN);
            mouse_event(MOUSEEVENTF_LEFTUP);
        }

[Only registered and activated users can see links. Click Here To Register...]
How to actually execute this? Notepad++ or cmd? Do i need to use a Mouse mover with coordinate Input also?
07/02/2018 14:07 greenkid#13
mp ?
07/03/2018 09:08 Lifile™#14
Quote:
Originally Posted by Raper88 View Post
sth like that but i also Need it for MP.



How to actually execute this? Notepad++ or cmd? Do i need to use a Mouse mover with coordinate Input also?

You have to write your own program, for example in C#


You have to DLL import the C MouseEvents to use it in C#. If u have done this you can move the mouse with an event and let it click. This is what Ploxasarus meant by this