WinterGrasp fisher menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 20
  1. #1
    DoubleMcLovin's Avatar Private
    Reputation
    4
    Join Date
    Jun 2010
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    WinterGrasp fisher

    This is another bot to fish in wintergrasp. It is well documented. This is the source code. I know there are plenty of shitty fishing bots around, but this one is capable of joining and leaving a wintergrasp group thus keeping you in your fishing area. Combined with lootfilter I have fished up over 300 fish feasts in a night of sleeping.

    ;; Fishing bot is 100% undetectable. It does not interface with memory at all.
    ;; Everything is driven through mouse clicks, looking for a color, and sending keystrokes

    Rather than upload to a server in a suspicious file that people will wonder if it is a trojan, I will just post the .au3 source here.
    Code:
    ; AutoIt Version: 3.0
    ; Language: English
    ; Platform: Win
    ; Author: DoubleMcLovin
    ; Credit to Mibz for original concept of pixel search
    ;
    ; Script Function:
    ; WoW FishBot.
    ;
    ;
    ; Wow Window Title - World of Warcraft
    ; WoW Window Size - w1280 x h1024
    
    
    ; Initial
    WinActivate("World of Warcraft")
    Sleep(300)
    $time = MsgBox(4, "FishBot - Time of Day?", "Yes = Day | No = Night")
    
    $wg = MsgBox(4, "FishBot - Location", "Are you fishing in Wintergrasp?")
    ;Find a good spot in WG to stand still and fish, this option will allow you to queue and leave grp.
    WinActivate("World of Warcraft")
    HotKeySet("{PAUSE}", "EndScript")
    
    ; Script Start
    While 1
        Sleep(300)
        Send("1") ; THIS IS THE KEY TO FISH -- Change it to your default or use mouse coords like I did below, just uncomment and comment this line
    ;~     MouseClick("LEFT", 1043, 1004, 1, 3);Starts fishing
        $start = TimerInit();starts timer to make sure that we don't stand still all day
        $dif = TimerDiff($start); ^^
        While 1
            $bobber = PixelSearch (149, 300, 1056, 680, 0xBE3B24, 55, 2); Looks for a bobber
            ; I don't know if the alliance bobber is different, if it is, please change the above color search respectively.
            If UBound($bobber)>1 Then
                MouseMove ($bobber[0], $bobber[1])
                If $time = 6 Then    ;day vs night scans
                    ; Based on your current video settings, these options may need to change. (the 0xFFFFFF/EEEEEE is the color you may need to change)
                    $coord = PixelSearch (($bobber[0] - 80), ($bobber[1] - 40), ($bobber[0] + 80), ($bobber[1] + 40), 0xFFFFFF, 30, 2);day
                Else
                    $coord = PixelSearch (($bobber[0] - 80), ($bobber[1] - 40), ($bobber[0] + 80), ($bobber[1] + 40), 0xEEEEEE, 30, 2);night
                EndIf
    
                If UBound($coord)>1 Then;If the pixelsearch found the splash
                    MouseMove ($coord[0], $coord[1])
                    Sleep (100)
                    MouseClick("right", $coord[0], $coord[1], 1, 3)
                    Sleep(1500)
                    ExitLoop
                Else
                    Sleep(350)
                    $dif = TimerDiff($start)
                    If $dif > 19500 Then
                        ExitLoop
                    EndIf
                EndIf
            Else
                Sleep(350)
                $dif = TimerDiff($start)
                If $dif > 19500 Then
                    ExitLoop
                EndIf
            EndIf
        WEnd
        If $wg = 6 Then
            $wgbutton = PixelSearch (360, 127, 923, 294, 0x720000, 15, 1)
            If UBound($wgbutton)>1 Then;time for WG!
                MouseClick("left", $wgbutton[0], $wgbutton[1], 1, 3)
                Sleep(1500)
                Send("{ENTER}")
                Send("/script LeaveParty ()")
                Sleep(500)
                Send("{ENTER}")
                Sleep(2000)
                MouseClick("left",700,538,1,3) ; Coords may need to be adjusted for your resolution. This is the leave party button.
            EndIf
        EndIf
    WEnd
    
    
    ; Function to exit script
    Func EndScript()
    $exit = MsgBox(4, "FishBot", "End FishBot?")
    If $exit = 6 Then
    Exit
    EndIf
    EndFunc
    EDIT:
    Make sure that you are in first person mode, this bot tries to lock onto your bobber to detect the splash. Also auto-loot must be on.
    Last edited by KuRIoS; 06-27-2010 at 04:46 PM. Reason: see bottom

    WinterGrasp fisher
  2. #2
    Multitask's Avatar Contributor

    Reputation
    158
    Join Date
    Jan 2008
    Posts
    1,112
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nothing is 100% undetectable, and dont ask for rep.

  3. #3
    Dwaxine's Avatar Member
    Reputation
    12
    Join Date
    May 2008
    Posts
    118
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can anybody confirm that this is working???

  4. #4
    DoubleMcLovin's Avatar Private
    Reputation
    4
    Join Date
    Jun 2010
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by -Airwave- View Post
    nothing is 100% undetectable, and dont ask for rep.
    Ok, well it doesn't do anything that warden would catch. Unless a player reports you this bot won't get you caught. I've been using versions of it since classic content.

    Sorry, don't mean to ask for rep, just kinda posting some stuff so that people see that I am not just a leech and might shoot an idea at my other thread in the questions forum.
    Originally Posted by Dwaxine View Post
    Can anybody confirm that this is working???
    Give it a shot if you don't believe it works. The source is all right there, its clearly nothing malicious. =]

  5. #5
    SacredSpenny's Avatar Contributor CoreCoins Purchaser
    Reputation
    229
    Join Date
    Dec 2007
    Posts
    647
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm a noob at AutoIt, could you post the .exe? :P

  6. #6
    spiratesss's Avatar Banned
    Reputation
    87
    Join Date
    Aug 2007
    Posts
    217
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by -Airwave- View Post
    and dont ask for rep.
    Iam getting pretty tired of this attitude, why should he not ask for rep if he's done something good? He said that if you liked the program he has done, please rep him.. I don't see the problem with this..

    The problem is that ppl most often dont rep cause they are lazy ****s and just takes the program without even a thanks.

  7. #7
    w00tsauce's Avatar Active Member
    Reputation
    18
    Join Date
    Jan 2009
    Posts
    113
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Im sure he said to not ask for rep because in the rules it says "NO asking for rep"

  8. #8
    DoubleMcLovin's Avatar Private
    Reputation
    4
    Join Date
    Jun 2010
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SpecnerG View Post
    I'm a noob at AutoIt, could you post the .exe? :P
    I won't be posting an exe. Just paste this into your autoit editor (Scite) and hit the F5 key.

  9. #9
    sed-'s Avatar ★ Elder ★
    Reputation
    1114
    Join Date
    Mar 2010
    Posts
    1,566
    Thanks G/R
    52/151
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    add a fish for xmins=exit wow

  10. #10
    Barrt73Rus's Avatar Banned
    Reputation
    171
    Join Date
    May 2009
    Posts
    1,273
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    work safe on 3.3.5?

  11. #11
    Origano's Avatar Active Member
    Reputation
    44
    Join Date
    Apr 2008
    Posts
    232
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nothing is safe on 3.3.5 right now since Blizzard updated the Warden. Or actually, rewrote it.

  12. #12
    Amelol's Avatar Member
    Reputation
    1
    Join Date
    Oct 2008
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lootfilter in wintergrasp? you must be joking

  13. #13
    CheeseProphet's Avatar Active Member
    Reputation
    41
    Join Date
    Feb 2009
    Posts
    362
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Amelol View Post
    lootfilter in wintergrasp? you must be joking
    Trash mate...

  14. #14
    DoubleMcLovin's Avatar Private
    Reputation
    4
    Join Date
    Jun 2010
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by CheeseProphet View Post
    Trash mate...
    Yup, don't know about the rest of you but when I fish I don't really need a bunch of sticks and tangled cloth and crap. I just want my fish feast ingredients and a smart lootfilter setup can make sure that if I do loot crap its gone, but something good will stay.

  15. #15
    soskie's Avatar Member
    Reputation
    1
    Join Date
    Apr 2007
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    click everywhere but the bobber
    Last edited by soskie; 06-23-2010 at 10:00 PM.

Page 1 of 2 12 LastLast

Similar Threads

  1. WoW!Fisher
    By =sinister= in forum World of Warcraft Bots and Programs
    Replies: 70
    Last Post: 08-28-2010, 07:08 PM
  2. Wintergrasp 3.3.3-11723 Exploit for fishers (video)
    By bawa in forum World of Warcraft Exploits
    Replies: 17
    Last Post: 06-22-2010, 11:40 PM
  3. [Bot]Fisher Script
    By iradiation in forum World of Warcraft Bots and Programs
    Replies: 5
    Last Post: 03-17-2008, 04:31 PM
  4. Simple extra gold for fishers.
    By Sokall in forum World of Warcraft Exploits
    Replies: 6
    Last Post: 02-28-2008, 12:56 PM
All times are GMT -5. The time now is 08:01 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