Blue Eye Logo

Blue Eye Macro

Automation is freedom
It is currently Thu Nov 21, 2024 7:27 pm

All times are UTC




Post new topic Reply to topic  [ 37 posts ]  Go to page Previous  1, 2, 3, 4  Next
Author Message
 Post subject: Re: My DragonaPH Bot is Working BUT
Thanked: 0 time(s)  Unread post Posted: Sat Aug 20, 2011 12:21 am 
Active User
Active User



Joined: Mon Jul 25, 2011 1:00 pm
Posts: 38
Location: Philippines
Been thanked: 1 time(s)
Has thanked: 0 time(s)
Contribution Points: 645
Still same error occurs


Top
 Profile  
Reply with quote  
 Post subject: Re: My DragonaPH Bot is Working BUT
Thanked: 0 time(s)  Unread post Posted: Sat Aug 20, 2011 12:40 am 
Partner / Developer
Partner / Developer
User avatar



Joined: Mon Jan 18, 2010 11:51 am
Posts: 4525
Been thanked: 1346 time(s)
Has thanked: 133 time(s)
Contribution Points: 33209
Ok, Ill look at it as soon as I can.

_________________
Blue Eye - Developer / Moderator
Code:
Gigus


Please read the rules about contribution points - click here

Do you know everything about BE, the forum, licenses and contribution points?
Please take a minute to read this introduction & guidelines.


Top
 Profile  
Reply with quote  
 Post subject: Re: My DragonaPH Bot is Working BUT
Thanked: 0 time(s)  Unread post Posted: Sat Aug 20, 2011 9:29 am 
Active User
Active User



Joined: Mon Jul 25, 2011 1:00 pm
Posts: 38
Location: Philippines
Been thanked: 1 time(s)
Has thanked: 0 time(s)
Contribution Points: 645
Gigus wrote:
Ok, Ill look at it as soon as I can.


thanks... many of my fellow gamer's expecting it
thanks you so much...


Top
 Profile  
Reply with quote  
 Post subject: Re: My DragonaPH Bot is Working BUT
Thanked: 0 time(s)  Unread post Posted: Thu Oct 06, 2011 1:25 pm 


wakek02 wrote:
Gigus wrote:
Ok, Ill look at it as soon as I can.


thanks... many of my fellow gamer's expecting it
thanks you so much...


Hello, any updates on this?
AhnLab's HackShield seems to really detect blue eye macro even in stealth mode and direct X capturing being disabled.


Top
  
Reply with quote  
 Post subject: Re: My DragonaPH Bot is Working BUT
Thanked: 0 time(s)  Unread post Posted: Thu Oct 06, 2011 3:11 pm 
Partner / License admin
Partner / License admin
User avatar



Joined: Sun Oct 10, 2010 5:16 pm
Posts: 2259
Location: USA
Been thanked: 535 time(s)
Has thanked: 38 time(s)
Contribution Points: 17741
Quote:
AhnLab's HackShield seems to really detect blue eye macro even in stealth mode and direct X capturing being disabled.
Are you using the virtual drivers?

_________________
----------------------------------------Syrifina---------------------------------------------------
PM me for licenses and/or licensing information: Click Here
[Be sure to include and update your profile with your BE ID]

Forum Rules
Reminder of rules regarding Contribution points
Getting started in 1, 2, 3
Virtual Drivers; Manual Installers


Top
 Profile  
Reply with quote  
 Post subject: Re: My DragonaPH Bot is Working BUT
Thanked: 0 time(s)  Unread post Posted: Fri Oct 07, 2011 1:25 am 


Syrifina wrote:
Quote:
AhnLab's HackShield seems to really detect blue eye macro even in stealth mode and direct X capturing being disabled.
Are you using the virtual drivers?


Yes I am using the virtual drivers, and seems when i disable direct X capturing, it does not recognize the pixels anymore(does it work that way when disabled?) if so, then how am I able to use pixel detection even if its disabled? thanks


Top
  
Reply with quote  
 Post subject: Re: My DragonaPH Bot is Working BUT
Thanked: 0 time(s)  Unread post Posted: Fri Oct 07, 2011 4:38 am 
VIP Contributor
VIP Contributor
User avatar



Joined: Mon Sep 12, 2011 8:36 pm
Posts: 1307
Location: Steins;Gate
Been thanked: 91 time(s)
Has thanked: 0 time(s)
Contribution Points: 15369
Quote:
Yes I am using the virtual drivers, and seems when i disable direct X capturing, it does not recognize the pixels anymore(does it work that way when disabled?) if so, then how am I able to use pixel detection even if its disabled? thanks


Hmm... Interesting. It seems as the problem hasn't been resolved still. Do not worry, we can try an alternative until then. I apologize that sometimes AhnLab likes to eat bots for breakfast and you may get unlucky with a game or two. :lol:

So here's our alternative: We will use a timer to emulate when you should pot and when you should heal yourself. It may not be cost efficient but at least you can get going somewhere! If you exactly know the timing of when your character gets damaged, you can make him consume pots using the Stopwatch feature. In this code I'll give you, it's set that he'll switch to a different mob every 10 seconds, and heal himself every 30 seconds. Though if you know you won't get damaged for a while, you can change the timer values however you like.

Code:
 begin
     Macro.Start stopwatch("Move to Next Mob")
     Macro.Start stopwatch("Check for Heal")
     Keyboard.Press key("{<tab>}")
     Macro.Pause("50")
     Function.Execute("Dragona PH Bot")
 end

function("Dragona PH Bot")
     begin loop()
          Function.Execute("Attack")
          Function.Execute("Timer Check")
     end
function

function("Attack")
     begin
          // Insert your attack keyboard presses here
     end
function

function("Timer Check")
     begin loop()
          Macro.Read stopwatch("Move to Next Mob", "Battle Time")
          if  Variable.Is greater than (Math)("Battle Time", "9999") //Edit the time here if needed.
               begin
                    Keyboard.Press key("{<tab>}")
               end
          Macro.Read stopwatch("Check for Heal", "Heal Time")
          if  Variable.Is greater than (Math)("Heal Time", "29999") //Edit the time here if needed.
               begin
                    // Keyboard.Press key("")
               end
     end
function


P.S.

I've been able to bot on Maplestory (this is just recent, too) and it uses AhnLabs there. Now it gets me thinking...
Anyhow, make sure you don't run any firewalls (including Windows Fireall), as it may randomly blow your cover (why is that, I'm not sure).

Have a nice day there, friend. :lol:

_________________
Image
Code:
> Meanwhile at Blue Eye Macro...
> BEM Video Games Department - Moderator, Coder, Debugger, Math/Physics & Algorithm Enthusiast - USA
Current Project: Mod Duty


Top
 Profile  
Reply with quote  
 Post subject: Re: My DragonaPH Bot is Working BUT
Thanked: 0 time(s)  Unread post Posted: Fri Oct 07, 2011 5:27 am 
New User
New User



Joined: Tue Sep 13, 2011 3:09 pm
Posts: 22
Been thanked: 0 time(s)
Has thanked: 0 time(s)
Contribution Points: 162
Critical wrote:
Quote:
Yes I am using the virtual drivers, and seems when i disable direct X capturing, it does not recognize the pixels anymore(does it work that way when disabled?) if so, then how am I able to use pixel detection even if its disabled? thanks


Hmm... Interesting. It seems as the problem hasn't been resolved still. Do not worry, we can try an alternative until then. I apologize that sometimes AhnLab likes to eat bots for breakfast and you may get unlucky with a game or two. :lol:

So here's our alternative: We will use a timer to emulate when you should pot and when you should heal yourself. It may not be cost efficient but at least you can get going somewhere! If you exactly know the timing of when your character gets damaged, you can make him consume pots using the Stopwatch feature. In this code I'll give you, it's set that he'll switch to a different mob every 10 seconds, and heal himself every 30 seconds. Though if you know you won't get damaged for a while, you can change the timer values however you like.

Code:
 begin
     Macro.Start stopwatch("Move to Next Mob")
     Macro.Start stopwatch("Check for Heal")
     Keyboard.Press key("{<tab>}")
     Macro.Pause("50")
     Function.Execute("Dragona PH Bot")
 end

function("Dragona PH Bot")
     begin loop()
          Function.Execute("Attack")
          Function.Execute("Timer Check")
     end
function

function("Attack")
     begin
          // Insert your attack keyboard presses here
     end
function

function("Timer Check")
     begin loop()
          Macro.Read stopwatch("Move to Next Mob", "Battle Time")
          if  Variable.Is greater than (Math)("Battle Time", "9999") //Edit the time here if needed.
               begin
                    Keyboard.Press key("{<tab>}")
               end
          Macro.Read stopwatch("Check for Heal", "Heal Time")
          if  Variable.Is greater than (Math)("Heal Time", "29999") //Edit the time here if needed.
               begin
                    // Keyboard.Press key("")
               end
     end
function


P.S.

I've been able to bot on Maplestory (this is just recent, too) and it uses AhnLabs there. Now it gets me thinking...
Anyhow, make sure you don't run any firewalls (including Windows Fireall), as it may randomly blow your cover (why is that, I'm not sure).

Have a nice day there, friend. :lol:



Thanks for the quick response :D
I am sure that it is not on my computer settings or anything because I was able to bot with no problems at all on another game (Eden Eternal)
And I had set a very simple code for testing, just pressing 1,2,3 and Tab with different Macro Pause Time but still it get Disconnected after 2 minutes more or less.
Please check on this. Thank you.


Top
 Profile  
Reply with quote  
 Post subject: Re: My DragonaPH Bot is Working BUT
Thanked: 0 time(s)  Unread post Posted: Fri Oct 07, 2011 6:10 am 
New User
New User



Joined: Tue Sep 13, 2011 3:09 pm
Posts: 22
Been thanked: 0 time(s)
Has thanked: 0 time(s)
Contribution Points: 162
Tried the macro and still got these :D Help!

Image

Uploaded with ImageShack.us


Top
 Profile  
Reply with quote  
 Post subject: Re: My DragonaPH Bot is Working BUT
Thanked: 0 time(s)  Unread post Posted: Fri Oct 07, 2011 11:44 am 
Partner / Developer
Partner / Developer
User avatar



Joined: Mon Jan 18, 2010 11:51 am
Posts: 4525
Been thanked: 1346 time(s)
Has thanked: 133 time(s)
Contribution Points: 33209
Its probably caused by the DirectX capturing, since it hooks the game dll to be able to read its graphics from the DirectX backbuffer.

Most games work both with and without DirectX capturing, however some require the DirectX capturing to be enabled (which is why it was implemented in BE in the first place).

Have you tried running the game in window mode? usually this makes it possible to capture without directX capturing.

If everything else fails, start a virtual machine (I use vmware) install the game inside it, use BE in your host machine, and run the game inside the virtual machine.
As long as you are using the virtual drivers, BE can send inputs directly to the game inside the virtual machine, even though BE is running in the host machine.

Now you can use pixels patterns, screen captures, anything - with 0% possibility of detection.

_________________
Blue Eye - Developer / Moderator
Code:
Gigus


Please read the rules about contribution points - click here

Do you know everything about BE, the forum, licenses and contribution points?
Please take a minute to read this introduction & guidelines.


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 37 posts ]  Go to page Previous  1, 2, 3, 4  Next

All times are UTC


You cannot post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  


Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group