Results 1 to 4 of 4
  1. #1
    gelong83
    gelong83 is offline
    Member-in-training gelong83's Avatar
    Join Date
    2012 Jun
    Posts
    56
    Thanks Thanks Given 
    4
    Thanks Thanks Received 
    4
    Thanked in
    3 Posts
    Rep Power
    0

    Auto Login Macro For Fisherman (Blue Eye Macro user)

    I found this script from BEM forum (Thanks to LetMeBeStealth) and made some adjustment on it to suits my fishing mode.
    So I would like to share it to fisherman out there and for your further study

    For better understanding, this will be the requirement:

    1) A running fishing macro.
    2) Some screenshot - The "Log-in" picture at main screen and your char pin number
    - If your pin number is 1234 then you have to save 1.png, 2.png, 3.png, and 4.png.
    - If you using same pin number like 9999, then u have to capture normal 9 and brighter 9 (with mouse hover on it).
    - Please see attachment for reference.
    3) A new macro with new trigger key for this script (for safety and better controlling).

    How it works:

    - This script will auto login if your bot disconnect.
    - It was write base on identifying a picture and screen pixel. So you may have to edit it base on your screen resolution.
    - The coordinate inside this script is according to screen resolution 1600*900 and full screen mode.
    - The speed is according to my computer speed, so you have to edit the "macro.pause" timing to suits your computer speed.
    *1000 means 1 second.

    begin
    // Bring Aika client to the front
    Window.Bring to front("AikaClient", "No")
    // Check if user is logged out
    if Image.Can be located on screen("C:\.."YourLoginPicturePath".....\login.png ", "100")
    // If user cannot login due to server problem or lag, it will repeat again and again until success.
    begin loop()
    // This is where I stop my fishing macro, in this case I'm using ctrl+x for the trigger key.
    Keyboard.Hold keys("{<lcontrolkey>}")
    Keyboard.Hold keys("x")
    Keyboard.Release keys("{<lcontrolkey>}")
    Keyboard.Release keys("x")

    // When some macro running, it will be some garbage text so you have to clean it)
    Macro.Pause("1000")
    // Click at the left side of the login box
    Mouse.Click at coordinate("757", "570", "left")
    Keyboard.Hold keys("{<backspace>}")
    Keyboard.Hold keys("{<delete>}")
    Macro.Pause("1000")
    Keyboard.Release keys("{<backspace>}")
    Keyboard.Hold keys("{<delete>}")

    // Enter your login name
    Keyboard.Press keys("YourLoginName")
    Macro.Pause("500")

    // Click at the left side of the password box
    Mouse.Click at coordinate("757", "601", "left")
    Keyboard.Hold keys("{<backspace>}")
    Keyboard.Hold keys("{<delete>}")
    Macro.Pause("1000")
    Keyboard.Release keys("{<backspace>}")
    Keyboard.Hold keys("{<delete>}")

    // Enter your password
    Keyboard.Press keys("YourPassword")
    Macro.Pause("500")
    Keyboard.Press key("{<enter>}")
    Macro.Pause("500")

    // Select your world
    Mouse.Click at coordinate("797", "560", "left")
    Macro.Pause("3000")

    // Choose your channel
    Mouse.Double click at coordinate("797", "523", "left")
    Macro.Pause("2000")

    // Choose your selected char
    Mouse.click at coordinate("1126", "499", "left")
    Macro.Pause("1000")
    Mouse.click at coordinate("759", "540", "left")
    Macro.Pause("500")

    // Click the pin number, for example 1234
    Mouse.Click at image("C:\.....YourPinNumberPath....\1.png", "100", "left")
    Macro.Pause("800")
    Mouse.Click at image("C:\.....YourPinNumberPath....\2.png", "100", "left")
    Macro.Pause("800")
    Mouse.Click at image("C:\.....YourPinNumberPath....\3.png", "100", "left")
    Macro.Pause("800")
    Mouse.Click at image("C:\.....YourPinNumberPath....\4.png", "100", "left")

    // Wait for the game to load
    Macro.Pause("10000")
    // This is where I set up the mouse coordinate for fishing
    Mouse.Move to coordinate("526", "697")
    Macro.Pause("1000")

    // Start back the fishing macro, in this case I'm using ctrl+z for the trigger key
    Keyboard.Hold keys("{<lcontrolkey>}")
    Keyboard.Hold keys("z")
    Keyboard.Release keys("{<lcontrolkey>}")
    Keyboard.Release keys("z")
    Macro.Break from loop("no")
    end
    end


    Enjoy

    Please register or login to download attachments.

    Last edited by gelong83; 2013-02-22 at 05:20 AM.

  2. #2
    LetMeBeStealth
    LetMeBeStealth is offline
    New member
    Join Date
    2013 Feb
    Location
    USA
    Posts
    19
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    12
    Thanked in
    6 Posts
    Rep Power
    0
    Nice post, I am not into much for fishing but I do some grinding . I have always spent more on fishing than I make

    Quote Originally Posted by gelong83 View Post
    If you using same pin number like 9999, then u have to capture normal 9 and brighter 9 (with mouse hover on it).
    In this case you don't have to have a mouse hover picture.
    Code:
    Mouse.Click at image("C:\.....YourPinNumberPath....\1.png", "100", "left")
    //Every time when you click on pin number,  just move your mouse in some direction (you have to make sure, when you move the mouse it has to go out of the PIN numbers).
    Mouse.Move in direction("up", "20") //Moves 20 px up
    //You can also use mouse.move to some coordinates, make sure mouse pointer does not hover on any PIN numbers
    Macro.Pause("800")
    Last edited by LetMeBeStealth; 2013-02-22 at 08:17 AM.
    --------------------------------------
    Thanks is always appreciated
    --------------------------------------

    Check these out

    http://www.progamercity.net/aika-hack/7427-bot-auto-login-game.html

    http://www.progamercity.net/aika-hack/7455-bot-non-stop-battle-field.html

    http://www.progamercity.net/aika-hack/7483-auto-grinding-post49835.html

  3. #3
    gelong83
    gelong83 is offline
    Member-in-training gelong83's Avatar
    Join Date
    2012 Jun
    Posts
    56
    Thanks Thanks Given 
    4
    Thanks Thanks Received 
    4
    Thanked in
    3 Posts
    Rep Power
    0
    Ahh sorry, just realize you already post the script in PGC.
    It was a very nice script and I can get more idea from it.
    Anyway bro, since you are also playing with Upilot, which do you think better compare to BEM?

  4. #4
    LetMeBeStealth
    LetMeBeStealth is offline
    New member
    Join Date
    2013 Feb
    Location
    USA
    Posts
    19
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    12
    Thanked in
    6 Posts
    Rep Power
    0
    Quote Originally Posted by gelong83 View Post
    Ahh sorry, just realize you already post the script in PGC.
    It was a very nice script and I can get more idea from it.
    Anyway bro, since you are also playing with Upilot, which do you think better compare to BEM?
    It's all good.

    BEM is way better than UoPilot. I have been using BEM for a long time but recently it stopped working. I was looking for an alternative of BEM and I found that UoPilot is the only thing that was running so I started learning UoPilot. Learning curve of UoPilot is very simple compared to BEM.

    For a simple task UoPilot works perfect but there are so many functionalities missing on UoPilot.
    --------------------------------------
    Thanks is always appreciated
    --------------------------------------

    Check these out

    http://www.progamercity.net/aika-hack/7427-bot-auto-login-game.html

    http://www.progamercity.net/aika-hack/7455-bot-non-stop-battle-field.html

    http://www.progamercity.net/aika-hack/7483-auto-grinding-post49835.html

Similar Threads

  1. [Request] Blue eye macro 2.5
    By PAFUTA in forum Software & Hardware
    Replies: 5
    Last Post: 2012-08-15, 12:22 AM
  2. [Request] Blue eye macro 2.5
    By PAFUTA in forum Aika Bots, Hacks, Cheats
    Replies: 1
    Last Post: 2012-08-14, 02:02 AM
  3. Replies: 14
    Last Post: 2012-08-12, 05:53 AM
  4. [Bot] BOI Key Auto Skill + Auto Pot + Auto Tab Monster macro
    By Grooguz in forum Battle of the Immortals
    Replies: 2
    Last Post: 2012-01-21, 10:09 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •