Results 1 to 7 of 7
  1. #1
    Ummmhi?
    Ummmhi? is offline
    Guest
    Join Date
    2012 Jul
    Posts
    3
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    2
    Thanked in
    1 Post
    Rep Power
    0

    Automatic Fishing AND Baiting

    So the old Blue Eye Macro trick where you are able to afk fish has been around for quite some time now. The problem I noticed with it is that you use up your 1000 bait and then you're done, at 6 seconds a fish you'll be through the bait in an hour and 40 minutes. That's alright but if you're like me then you want something more long term. I have made a very simple tweak to the regular perfect fishing macro found in the repository (I'm not sure who the author is, but it is named Perfect fishing). My lines of code I've added will rebait your rod after you have used your 1000 bait, and it will do so up to 5 times. Allowing 6000 bait to be used, thats 10 hours of straight perfect fishing. I don't know about you but that sounds great to me. It's actually quite simple and I will show you using a picture walkthrough:

    Step 1: Open Blue Eye Macro and click on Repository Macros

    Step 2: Import the "perfect Fishing" macro into your local macros by right clicking

    Step 3: Create two predefined variables on the left hand side, they can be named whatever but for my code they are named Counter and xcoor. Counter must = 0 and for me xcoor had to = 1143 but it may be different for everyone so I'll get to that later

    Step 4: Delete all the code and paste in this
    Code:
     begin
         Keyboard.Press key("1")
         Color.Limit area of interest to coordinates("0", "0", "336", "28")
         Mouse.Click("Left")
         Macro.Pause("3800")
         Function.Execute with timeout("fish", "4500")
         Keyboard.Press key("{<space>}")
         Macro.Pause("100")
         Variable.Evaluate (Math)("{Counter} + 1", "Counter")
         if  Variable.Is equal to("Counter", "1000")
              begin
                   Function.Execute ("bait")
              end
     end
    
    function("fish")
         begin
              begin loop()
                   if  Color.Can be located on screen (RGB)("106", "134", "250", "5")
                        begin
                             Color.Find coordinate of first occurrence (RGB)("106", "134", "250", "5", "x", "y")
                             begin loop()
                                  // Variable.Add (Math)("x", "3")
                                  if  Color.Near coordinate is within (RGB range)("209", "238", "195", "20", "{x}", "{y}", "25")
                                       begin
                                            Macro.Break from loop("no")
                                       end
                             end
                             Macro.Break from loop("no")
                        end
              end
         end
    function
    
    function("bait")
         begin
              Variable.Evaluate (Math)("{Counter} - 1000", "Counter")
              Macro.Wait for current global loop execution time to exceed("1726")
              Mouse.Move to coordinate("{xcoor}", "80")
              Macro.Wait for current global loop execution time to exceed("3915")
              Mouse.Hold button("left")
              Macro.Wait for current global loop execution time to exceed("4003")
              Mouse.Release button("left")
              Macro.Wait for current global loop execution time to exceed("4082")
              Mouse.Click at coordinate("{xcoor}", "80", "left")
              Macro.Wait for current global loop execution time to exceed("6442")
              Mouse.Move to coordinate("679", "282")
              Macro.Wait for current global loop execution time to exceed("12233")
              Variable.Evaluate (Math)("{xcoor} +50", "xcoor")
         end
    function
    Step 5: Add triggers

    Step 6: This part I've highlighted here is what's mostly specific to my computer and will be different on everybody elses. To get your coordinates is actually quite simple.

    Step 6a: Open up aika and put your inventory into the very top right corner

    Step 6b: Now open up the record function on Blue Eye Macro and put your mouse in a very specific position on the Aika screen. (I put my mouse over the "d" in my guild name, it's best to have a reference point on your character)
    Step 6c: Start recording, move your mouse from that position, to your inventory and double click on the top left inventory slot and then move your mouse back to the starting position and end the recording.
    Step 6d: that chunk of code then replaces what I had highlighted except you have to remember to substitute the "xcoor" into the x coordinate spots like I did in mine. Now take the original X coordinates that you got from the recording (should all be the same) and sub that value into the xcoor's value (where I have 1143)
    Step 7: Now all you have to do is go into Aika put your fishing bar in the top left, put your inventory in the top right, fill the entire top row of your inventory with stacks of 1000 bait, put your mouse in your specific position from step 6b, press 1 and start the macro.
    Step 8: Sit back and relax, you've got a lot of fishing to do

    Anyways I don't know if you'll all find this helpful but it worked really great for me and feel free to ask questions. Also I dont take credit for the Macro in the repository it is from an unknown source. It would be easy to edit this macro with variables so that the mouse also moves down 50 pixels after every 5 stacks are used and you could ultimately fish for 15000 bait but I don't know if anyone would be interested in that. Anyways, thanks for listening and happy fishing!

    EDIT: Added Images
    Last edited by Ummmhi?; 2012-07-26 at 06:50 AM.

  2. The Following 2 Users Say Thank You to Ummmhi? For This Useful Post:


  3. #2
    possotesta
    possotesta is offline
    Member-in-training possotesta's Avatar
    Join Date
    2012 Jan
    Location
    Brazil
    Posts
    69
    Thanks Thanks Given 
    30
    Thanks Thanks Received 
    8
    Thanked in
    7 Posts
    Rep Power
    0
    ss need to better understand

  4. #3
    Ummmhi?
    Ummmhi? is offline
    Guest
    Join Date
    2012 Jul
    Posts
    3
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    2
    Thanked in
    1 Post
    Rep Power
    0
    Quote Originally Posted by possotesta View Post
    ss need to better understand
    I'm very sorry, it was my first post so I wasn't allowed to post links which meant no images. I have now added the images which will hopefully clear everything up for you if not, then I'd be happy to clear up whatever is confusing about it. Thanks

  5. #4
    mvrr865
    mvrr865 is offline
    Member-in-training mvrr865's Avatar
    Join Date
    2012 May
    Posts
    81
    Thanks Thanks Given 
    20
    Thanks Thanks Received 
    12
    Thanked in
    6 Posts
    Rep Power
    0
    when i open blue eye macro xtrap detects....
    windows 7 64-bits

  6. #5
    Catapults
    Catapults is offline
    New member Catapults's Avatar
    Join Date
    2012 Feb
    Location
    Nothing.
    Posts
    15
    Thanks Thanks Given 
    11
    Thanks Thanks Received 
    1
    Thanked in
    1 Post
    Rep Power
    0
    It does not take us to Alcatraz?
    Sorry my English

  7. #6
    Ummmhi?
    Ummmhi? is offline
    Guest
    Join Date
    2012 Jul
    Posts
    3
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    2
    Thanked in
    1 Post
    Rep Power
    0
    Quote Originally Posted by Catapults View Post
    It does not take us to Alcatraz?
    Sorry my English
    I'm sorry but I'm not quite familiar with Alcatraz, is this something only implemented in AikaBr. I guess I should have mentioned that I've only tested this on AikaEn on Windows 64 bit if that helps at all. Last night I left this macro running while I was at work and used over 3000 bait without getting sent to this Alcatraz place. But as said before I haven't tested it with AikaBr so there may be some issues with that. Sorry for inconveniance I may have caused by accidentally leaving that information out.

  8. #7
    iicerock
    iicerock is offline
    New member iicerock's Avatar
    Join Date
    2012 Jul
    Posts
    5
    Thanks Thanks Given 
    1
    Thanks Thanks Received 
    1
    Thanked in
    1 Post
    Rep Power
    0
    topic. interressante me but confusing in some parts as handles to coordinate air? need!

Similar Threads

  1. Prevent automatic logoff ingame
    By frigate in forum TERA Online
    Replies: 2
    Last Post: 2012-06-30, 07:00 AM
  2. [Bug] Fishing
    By KawaN in forum Aika Bots, Hacks, Cheats
    Replies: 14
    Last Post: 2012-02-14, 03:28 AM
  3. [Help] fishing
    By angelos in forum Aika Online
    Replies: 6
    Last Post: 2012-01-24, 07:14 PM
  4. Automatic probing / grinding tool
    By BmHeros in forum Trash Bin
    Replies: 0
    Last Post: 2012-01-12, 11:18 PM
  5. [Guide] BOT that automatic loot mutant pet
    By crowreaper in forum Battle of the Immortals
    Replies: 0
    Last Post: 2011-05-04, 04:02 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
  •