[OPEN SOURCE] Fishbot Auto-it menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    natt_'s Avatar Contributor
    Reputation
    145
    Join Date
    Dec 2007
    Posts
    391
    Thanks G/R
    13/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [OPEN SOURCE] Fishbot Auto-it

    Heya. I thought it would be nice to contribute since mmowned help me many times.So this is an Auto-it Fishbot i made a while ago with pixelsearch. And im explaining how things working in the code.

    Feel free to use this \ edit it etc.

    First off!
    If you saw this on any other site with the nick kirrunax. just so you know. Thats me.
    You need auto-it. Wont COMPILE it for you.
    put your spelldetail to max.
    Enable autoloot
    Zoom so you cant see your char.


    Here is the code:

    Code:
    ;##########
    ;## Wow pos and size.
    Global $wow = 'World of Warcraft'
    Global $WowSize = WinGetClientSize($wow)
    Global $WowPos = WinGetPos($wow)
    ;##########
    ;## When the bot should stop
    Global $StopAfterXfishes  = 800
    Global $StopAfterXminutes = 120
    
    ;##########
    ;## Hotkeys 
    ; Lure macro is:
    ; /use Lure
    ; /use FihsingPole
    Global $FishKey = '1'
    Global $LureKey = '2'
    
    ;##########
    ;## Using an lure function so Adlib can enable lure once evry 31 min, with macro
    func Lure()
        Send($LureKey)
        Sleep(3500)
    EndFunc
    
    ;##########
    ;## This will be used many times. to reduce text i will make it to an function
    func Throw()
        Send($FishKey)
        Sleep(3000)
        Global $current = timerinit()
    EndFunc
    
    
    ;##########
    ;## LetFishSum!
    func LetsFish()
    $Fish = 0
    $Timer = TimerInit()
    
    ;######
    ;# Activate the wow window and hide the ui
    WinActivate($wow)
    WinWaitActive($wow)
    AdlibEnable('Lure',60000*31)
    Do
        Throw();Just throws the bobbler
    
        $Splash = PixelSearch($WowPos[0],$WowPos[1]+35,$WowSize[0],$WowSize[1],0xF3F3F3,25,2);Search for the bobbler in the whole wow window. 
        
    while $Splash = true
        $Splash = PixelSearch($WowPos[0],$WowPos[1]+35,$WowSize[0],$WowSize[1],0xF3F3F3,25,2)
        Sleep(100)
        if Round(timerdiff($current)/1000,0) >= 30 Then;If the bobbler is not seen in 30 sec. Then throw again
            Throw()
        EndIf
    wend
    
    MouseClick('right',$Splash[0],$Splash[1],1,0);Rightclick where the color was found
    Sleep(1000)
    
    $Fish+=1;Count the fishes
        ToolTip('Fishes hooked: ~'&$Fish&' total time: '&Round(timerdiff($timer)/1000/60,0)&' minutes',$WowPos[0],$WowPos[1],'Fishsticks 1.0: Will stop after ~'&$StopAfterXfishes&' fishes is catched, or after '&$StopAfterXminutes&' minutes')
    Until $Fish >= $StopAfterXfishes or Round(timerdiff($timer)/1000/60,0) >= $StopAfterXminutes;Stop after the time you want or when the x fihses was found
        AdlibDisable()
    EndFunc
    
    LetsFish();Start the whole loop
    Cheers Natt_!

    [OPEN SOURCE] Fishbot Auto-it
  2. #2
    Fillepille's Avatar Active Member
    Reputation
    16
    Join Date
    Nov 2007
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    LOL.... I think... NICE WORK LOL HEHEH

  3. #3
    natt_'s Avatar Contributor
    Reputation
    145
    Join Date
    Dec 2007
    Posts
    391
    Thanks G/R
    13/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Fillepille View Post
    LOL.... I think... NICE WORK LOL HEHEH
    Uhm. Thanks =)

  4. #4
    KRYPTON88's Avatar Banned
    Reputation
    97
    Join Date
    Oct 2008
    Posts
    180
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Do some homework and put some more time into this, Its not very "smart" yet but it has potential! +Rep for the contrib. I expect to see a full version Hope your not a Quiter

  5. #5
    natt_'s Avatar Contributor
    Reputation
    145
    Join Date
    Dec 2007
    Posts
    391
    Thanks G/R
    13/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by KRYPTON88 View Post
    Do some homework and put some more time into this, Its not very "smart" yet but it has potential! +Rep for the contrib. I expect to see a full version Hope your not a Quiter
    Okay. This was the easiest & smartet way to do it (What i thought). Please post some tips =).

  6. #6
    KRYPTON88's Avatar Banned
    Reputation
    97
    Join Date
    Oct 2008
    Posts
    180
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by natt_ View Post
    Okay. This was the easiest & smartet way to do it (What i thought). Please post some tips =).
    Bro, Dont take that the wrong way, i didnt mean that your not smart for making it the way you did, I just meant the bot isnt that "smart" yet, Once it can detect user settings , screen resolution etc. It will be more user friendly , ya feel me? Good job tho, I suggest moving away from pixel search and screen resolution, But trust me Ive made a similar bot with autoIT and its hard not to use that great function lol I know it saves you ALOT of code!

  7. #7
    natt_'s Avatar Contributor
    Reputation
    145
    Join Date
    Dec 2007
    Posts
    391
    Thanks G/R
    13/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by KRYPTON88 View Post
    Bro, Dont take that the wrong way, i didn't mean that your not smart for making it the way you did, I just meant the bot isnt that "smart" yet, Once it can detect user settings , screen resolution etc. It will be more user friendly , ya feel me? Good job tho, I suggest moving away from pixel search and screen resolution, But trust me Ive made a similar bot with autoIT and its hard not to use that great function lol I know it saves you ALOT of code!
    I understand. Well ive made some stuff with Memory reading as well. Just felt like to post this =)).

  8. #8
    KRYPTON88's Avatar Banned
    Reputation
    97
    Join Date
    Oct 2008
    Posts
    180
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Stathackslol View Post
    i don't think u should waste ur time, unless just 4 practice rlly.
    waste his time?! bro he is learning by making projects like this! just by making this little fish bot he prob learned alot of cool functions, like pixel searching, user screen resolution etc. Keep it up man, Dont listen to him. You can end up making very advanced projects by using these smaller projects as stepping stones!

  9. #9
    someone0194's Avatar Banned
    Reputation
    8
    Join Date
    Dec 2008
    Posts
    280
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Fillepille View Post
    LOL.... I think... NICE WORK LOL HEHEH[img]http://mmobuzz.luke13.*******************/[/img][img]http://mmobuzz.wowzygor.*******************/[/img][img]http://mmobuzz.joanaguide.*******************/[/img][img]http://mmobuzz.warmil.*******************/[/img][img]http://mmobuzz.idemise.*******************/[/img][img]http://mmobuzz.hcb25.*******************/[/img][img]http://mmobuzz.wowwealth.*******************/[/img][img]http://mmobuzz.wotlksec.*******************/[/img][img]http://mmobuzz.valkor.*******************/[/img][img]http://mmobuzz.extremelev.*******************/[/img][img]http://mmobuzz.tiemedia.*******************/[/img][img]http://mmobuzz.kinjal.*******************/[/img][img]http://mmobuzz.wowseller.*******************/[/img][img]http://mmobuzz.warsupreme.*******************/[/img][img]http://mmobuzz.warpros.*******************/[/img][img]http://mmobuzz.cs5000.*******************/[/img][img]http://mmobuzz.ashlingwor.*******************/[/img][img]http://mmobuzz.pvpbible.*******************/[/img][img]http://mmobuzz.pennsworld.*******************/[/img][img]http://mmobuzz.warelite.*******************/[/img][img]http://mmobuzz.wowultimat.*******************/[/img][img]http://mmobuzz.infonook.*******************/[/img][img]http://mmobuzz.idgold.*******************/[/img][img]http://mmobuzz.websitings.*******************/[/img][img]http://mmobuzz.wowaddicts.*******************/[/img][img]http://mmobuzz.goldguide.*******************/[/img][img]http://mmobuzz.warguidez.*******************/[/img][img]http://mmobuzz.wcraftsman.*******************/[/img][img]http://mmobuzz.stephenf84.*******************/[/img][img]http://mmobuzz.aocriches.*******************/[/img][img]http://mmobuzz.conanfortu.*******************/[/img][img]http://mmobuzz.killergu.*******************/[/img][img]http://mmobuzz.tanqueboi.*******************/[/img][img]http://mmobuzz.warhonor.*******************/[/img][img]http://mmobuzz.102341.*******************/[/img][img]http://mmobuzz.demifarr.*******************/[/img][img]http://mmobuzz.aspect10.*******************/[/img][img]http://mmobuzz.proguides.*******************/[/img]
    lol! Yeah, nice work.

  10. #10
    Mango Jerry's Avatar Banned
    Reputation
    192
    Join Date
    Jan 2008
    Posts
    1,244
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice work dude, and keep the damn good work up!

  11. #11
    natt_'s Avatar Contributor
    Reputation
    145
    Join Date
    Dec 2007
    Posts
    391
    Thanks G/R
    13/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks guys!

  12. #12
    c4m's Avatar Member
    Reputation
    15
    Join Date
    May 2008
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    now im probably doing something wrong since everyone else isnt having problems, but everytime i run the macro i get the error: "error allocating memory". I've never used autoit before so im a bit of a tard when it comes to it, if you can explain why im getting this or whats wrong i'd appriciate it

  13. #13
    harmonixer_boss_scripter's Avatar Member
    Reputation
    4
    Join Date
    Jan 2009
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    they work well

    used a fishing bot befor they are really good

  14. #14
    natt_'s Avatar Contributor
    Reputation
    145
    Join Date
    Dec 2007
    Posts
    391
    Thanks G/R
    13/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by c4m View Post
    now im probably doing something wrong since everyone else isnt having problems, but everytime i run the macro i get the error: "error allocating memory". I've never used autoit before so im a bit of a tard when it comes to it, if you can explain why im getting this or whats wrong i'd appriciate it
    Well since ive never got that problem ever in my life i don't know why it occurs. But with common sense you don't have enough ram? But the application drains nothing

  15. #15
    Lukas 45's Avatar Active Member
    Reputation
    43
    Join Date
    Jan 2008
    Posts
    559
    Thanks G/R
    4/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does the bot loot the fishs??? ^^

Page 1 of 2 12 LastLast

Similar Threads

  1. Wow hack for 2.3.3 [Open Source] Delphi
    By robotkid in forum WoW Memory Editing
    Replies: 15
    Last Post: 05-23-2018, 10:53 PM
  2. [UntzBot] SWTOR auto focus and crash fix [open source]
    By TheDank in forum SWTOR Bots and Programs
    Replies: 39
    Last Post: 09-27-2012, 11:16 PM
  3. [Open Source] WoW Auto-Caster V1.0-Lite-
    By KRYPTON88 in forum World of Warcraft Bots and Programs
    Replies: 23
    Last Post: 12-19-2008, 02:36 PM
  4. DampeBot (Open source)
    By swollen in forum World of Warcraft Bots and Programs
    Replies: 14
    Last Post: 03-23-2008, 10:03 AM
  5. Glider Status in your signature *OPEN SOURCE*
    By Marlo in forum World of Warcraft Bots and Programs
    Replies: 8
    Last Post: 09-16-2007, 05:12 PM
All times are GMT -5. The time now is 10:55 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search