MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides  
Homepage Register FAQ Members Mark Forums Read Advertise Marketplace FPSowned


Go Back   MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides > World of Warcraft > Bots and Programs
Reload this Page [Program] Fishbot Refurbished - GUI
Bots and Programs Botting and Hacking programs for World of Warcraft.
[NO QUESTIONS HERE]

Reply
 
LinkBack Thread Tools
[Program] Fishbot Refurbished - GUI
(#1)
Old
Cypher's Avatar
Cypher is Offline
IDA Jedi
Legendary User
Rep Power: 9
Reputation: 848
Cypher is a splendid one to beholdCypher is a splendid one to beholdCypher is a splendid one to beholdCypher is a splendid one to beholdCypher is a splendid one to beholdCypher is a splendid one to beholdCypher is a splendid one to behold
 
Posts: 2,609
Join Date: Apr 2006
Location: WoW.exe
[Program] Fishbot Refurbished - GUI - 05-22-2006

Okay, so I've been at this one the last few nights and got it all seksy ^^ I'm posting the code, and the .exe, someone else can scan and post a screeny of it if they want, but I <3 you guys, I wouldn't try to attack you.

How to (Forgot this on my others):
0) Rename the file
1) Run WoW, go stand at the water edge, do you best to face away from Sun/Moon
2) Put game into Windowed Mode, Non-Maximized
3) Put your fishing skill on the "1" Hotkey spot of your actionbars
4) Run the script, best color to look for is the normal "Red" unless your in one of the other places
5) I recommend something like Loot Filter so you only get the fish you want [Only registered and activated users can see links. ]

Changes from last release:
- GUI!!! You now no longer need to recompile to change what color your looking for incase it's night or something, it just stores the basic five colors and any other ones you put in into a .ini file that will generate when you first run the bot
- Works with ANY resolution setup, just make sure it's in Windowed Mode and NOT Maximised

If you are having any issues when running this please post them, I'd love to help you out ^^

EDIT: I got a PM and a post about this, if your worried about the WoWLauncher scanning for the hex.ini file at all, if you recompile this yourself and just change all instances of "hex.ini" in the code to the "*newname*.ini" that you want it should work just fine for you.

Code:
;+--------------------------------+----------------------------------+
;| Luvmachine's Fishbot GUI & All | Original design by Pantless Krab |
;+--------------------------+-----+-------+--------------------------+
;                           |Version 1.8.4|
;    +----------------------+-------------+----------------------+
; +--+By using this in conjunction with World of Warcraft you are+--+
; |violating your EULA and TOS.  Using this bot can result in a temp|
; |or even a permanent ban.  The creator takes no responsibility for|
; +-----+what may happen to anyone who uses this original code.+----+
;     +-+------------------------------------------------------+--+
;     | Written for my friends at http://rpg-exploiters.*********/ |
;     +-----------------------------------------------------------+

#include <GUIConstants.au3>
$wait_time = 30000
$tolerance = 20
$sear_step = 2
$spla_colo = 0xF6F6F6
$size_chck = 0

HotKeySet("{PAUSE}", "End")
HotKeySet("{F6}", "Set_Bobber")

GUI_Gene()

Func GUI_Gene()
    GUICreate(Random(0,9999),300,200)

    $menu_menu = GUICtrlCreateMenu("Menu")
    $menu_abou = GUICtrlCreateMenuItem("About",$menu_menu)
    $menu_line = GUICtrlCreateMenuItem("",$menu_menu)
    $menu_exit = GUICtrlCreateMenuItem("Exit",$menu_menu)

    $help_menu = GUICtrlCreateMenu("Help")
    $help_gene = GUICtrlCreateMenuItem("Generate Ini",$help_menu)

    $start = GUICtrlCreateButton("Start",50,100,75,23)

    $arra = IniReadSection("hex.ini","Values")
    If @error == 1 Then
        MsgBox(4096,"","Error loading ""Values"" from Ini" & @CRLF & "Generating basic Ini setup")
        Ini_Gene()
        $arra = IniReadSection("hex.ini","Values")
    EndIf

    $list = GUICtrlCreateCombo("", 50, 50, 100, 23)
    For $i = 1 to $arra[0][0]
        GUICtrlSetData($list,$arra[$i][0])
    Next

    *****tState()

    While 1
        $mess = GUIGetMsg()

        If $mess = $start Then
            global $colo_use =IniRead("hex.ini","Values",GUICtrlRead($list),"")
            Start_Bot()
        EndIf
        If $mess = $help_gene Then Ini_Gene()
        If $mess = $GUI_EVENT_CLOSE or $mess = $menu_exit Then Exit
        If $mess = $menu_abou Then MsgBox(0,"About","Written by Luvmachine" & @CRLF & "Original design Pantless Krab")
    WEnd
EndFunc

Func Ini_Gene()
    IniWrite("hex.ini","Values","Dark Purple","0x463B4D")
    IniWrite("hex.ini","Values","Red","0xA72C0B")
    IniWrite("hex.ini","Values","Stormwind Red","0x6B1F0C")
    IniWrite("hex.ini","Values","Beige","0xBB9B3D")
    IniWrite("hex.ini","Values","Wailing Caverns","0x210B04")
EndFunc

Func Start_Bot()
    GUIDelete()

    If Not WinExists("World of Warcraft") Then
        MsgBox(0, Random(0, 9999), "World of Warcraft must be open.")
        Exit
    EndIf

    WinActivate("World of Warcraft")
    WinSetOnTop("World of Warcraft", "", 0)
    Sleep(500)
    If $size_chck = 0 Then Set_Size()

    If MsgBox(4, Random(0, 9999), "Do you want to start the Bot?") == 6 Then
    Else
       Exit
    EndIf

    MouseMove($wind_left, $wind_top, 2)
    MouseMove($wind_righ, $wind_top, 2)
    MouseMove($wind_righ, $wind_bott, 2)
    MouseMove($wind_left, $wind_bott, 2)

    Cast_Pole()
    Find_Float()
EndFunc

Func Set_Size()
    $bord_vert = 23
    $bord_hori = 4
    $wind_size = WinGetClientSize("World of Warcraft")
    $wind_posi = WinGetPos("World of Warcraft")
    $wind_x = $wind_posi[0] + $bord_hori
    $wind_y = $wind_posi[1] + $bord_vert
    global $wind_top = $wind_y + (.25 * $wind_size[1])
    global $wind_bott = $wind_top + (.35 * $wind_size[1]) - 1
    global $wind_left = $wind_x + (.15 * $wind_size[0])
    global $wind_righ = $wind_left + $wind_size[0] - (.3 * $wind_size[0]) - 1

    $size_chck = 1
EndFunc

Func Cast_Pole()
    global $star_time = TimerInit()
    Send("1")
    Sleep(1000)
EndFunc

Func Find_Float()
   While 1
      If TimerDiff($star_time) >= $wait_time Then
         Cast_Pole()
      EndIf

      $pos = PixelSearch($wind_left, $wind_top, $wind_righ, $wind_bott, $colo_use, $tolerance, $sear_step)
         If @error Then
            SetError(0)
         Else
            MouseMove($pos[0], $pos[1], 2)
            Find_Splash($pos[0], $pos[1] )
         EndIf
         Sleep(10)
      WEnd
EndFunc

Func Find_Splash($float_x, $float_y)
    $sear_left = $float_x - 32
    $sear_righ = $sear_left + 52
    $sear_top = $float_y - 32
    $sear_bott = $sear_top + 64

    While TimerDiff($star_time) < $wait_time
        $pos = PixelSearch($sear_left, $sear_top, $sear_righ, $sear_bott, $spla_colo, $tolerance, $sear_step)
        If @error Then
            SetError(0)
        Else
            Send("{SHIFTDOWN}")
            MouseClick("right");, $pos[0], $pos[1], 1, 2)
            Send("{ShiftUP}")
            Sleep(5500)
            ExitLoop
        EndIf
        Sleep(10)
    WEnd

    Cast_Pole()
EndFunc

Func End()
    Exit
EndFunc

Func Set_Bobber()
    $bob_pos = MouseGetPos()
    $colo_use = "0x" & Hex(PixelGetColor($bob_pos[0], $bob_pos[1]), 6)
    IniWrite("hex.ini","Values", $colo_use, $colo_use)
EndFunc
Reply With Quote

Donate to remove ads.
(#2)
Old
LightWave's Avatar
LightWave is Offline
Contributor
Rep Power: 4
Reputation: 187
LightWave has a spectacular aura aboutLightWave has a spectacular aura about
 
Posts: 393
Join Date: May 2006
Location: in your head
05-22-2006

dude ur the best man thanks dude and lets all hope this one cant be detected lmao it probley wont i think fishing bots are bliz last on the list of worries
Reply With Quote
(#3)
Old
janzi9's Avatar
janzi9 is Offline
Banned
Rep Power: 0
Reputation: 146
janzi9 will become famous soon enoughjanzi9 will become famous soon enough
 
Posts: 661
Join Date: Feb 2006
Location: Computer Chair
05-22-2006

OMAIGAWD! FISHIZ R MINE!
Gawd, you people wreck the game. Hacking, exploiting and botting. Bunch of noobs, play the game by hand.
Reply With Quote
(#4)
Old
lopolop's Avatar
lopolop is Online
Master Sergeant
Rep Power: 3
Reputation: 49
lopolop is on a distinguished road
 
Posts: 124
Join Date: May 2006
05-22-2006

lol i play legit for a little bit but some times games get boreing :P
So then i hack lol...
and nice job on the bot!
(i was making a bot like acid's(name?!?!) autoit grinding bot)
Reply With Quote
(#5)
Old
janzi9's Avatar
janzi9 is Offline
Banned
Rep Power: 0
Reputation: 146
janzi9 will become famous soon enoughjanzi9 will become famous soon enough
 
Posts: 661
Join Date: Feb 2006
Location: Computer Chair
05-22-2006

/sarcasticbtw
Reply With Quote
(#6)
Old
LightWave's Avatar
LightWave is Offline
Contributor
Rep Power: 4
Reputation: 187
LightWave has a spectacular aura aboutLightWave has a spectacular aura about
 
Posts: 393
Join Date: May 2006
Location: in your head
05-22-2006

i play the game buy hand but fishing is just way to boring for me it sux so i use thos lvl me up lol
Reply With Quote
Updated
(#7)
Old
witiwap is Offline
Private
Rep Power: 0
Reputation: 11
witiwap is on a distinguished road
 
Posts: 3
Join Date: May 2006
Updated - 05-23-2006

I had quite a few problems with the bot that was posted. After the first time, the bot never waited long enough for the bobber to show up before it searched for it, so it never found it. I modified the script so that the bot waits a little longer after it casts. I also added a color for the feather while in Hillsbrad foothills, as for some reason it doesn't seem to like Hillsbrad while its stormy. I suspect the color would work at any location while it's storming, but I haven't had a chance to test that. I also renamed all instances of hex.ini to settings.ini to make the bot harder to detect.

Code:
;+--------------------------------+----------------------------------+
;| Luvmachine's Fishbot GUI & All | Original design by Pantless Krab |
;|                       Updated by Witiwap                          |
;+--------------------------+-----+-------+--------------------------+
;                           |Version 1.8.5|
;    +----------------------+-------------+----------------------+
; +--+By using this in conjunction with World of Warcraft you are+--+
; |violating your EULA and TOS.  Using this bot can result in a temp|
; |or even a permanent ban.  The creator takes no responsibility for|
; +-----+what may happen to anyone who uses this original code.+----+
;     +-+------------------------------------------------------+--+
;     | Written for my friends at http://rpg-exploiters.*********/ |
;     +-----------------------------------------------------------+

#include <GUIConstants.au3>
$wait_time = 30000
$tolerance = 20
$sear_step = 2
$spla_colo = 0xF6F6F6
$size_chck = 0

HotKeySet("{PAUSE}", "End")
HotKeySet("{F6}", "Set_Bobber")

GUI_Gene()

Func GUI_Gene()
    GUICreate(Random(0,9999),300,200)

    $menu_menu = GUICtrlCreateMenu("Menu")
    $menu_abou = GUICtrlCreateMenuItem("About",$menu_menu)
    $menu_line = GUICtrlCreateMenuItem("",$menu_menu)
    $menu_exit = GUICtrlCreateMenuItem("Exit",$menu_menu)

    $help_menu = GUICtrlCreateMenu("Help")
    $help_gene = GUICtrlCreateMenuItem("Generate Ini",$help_menu)

    $start = GUICtrlCreateButton("Start",50,100,75,23)

    $arra = IniReadSection("settings.ini","Values")
    If @error == 1 Then
        MsgBox(4096,"","Error loading ""Values"" from Ini" & @CRLF & "Generating basic Ini setup")
        Ini_Gene()
        $arra = IniReadSection("settings.ini","Values")
    EndIf

    $list = GUICtrlCreateCombo("", 50, 50, 100, 23)
    For $i = 1 to $arra[0][0]
        GUICtrlSetData($list,$arra[$i][0])
    Next

    *****tState()

    While 1
        $mess = GUIGetMsg()

        If $mess = $start Then
            global $colo_use =IniRead("settings.ini","Values",GUICtrlRead($list),"")
            Start_Bot()
        EndIf
        If $mess = $help_gene Then Ini_Gene()
        If $mess = $GUI_EVENT_CLOSE or $mess = $menu_exit Then Exit
        If $mess = $menu_abou Then MsgBox(0,"About","Written by Luvmachine" & @CRLF & "Original design Pantless Krab")
    WEnd
EndFunc

Func Ini_Gene()
    IniWrite("settings.ini","Values","Dark Purple","0x463B4D")
    IniWrite("settings.ini","Values","Red","0xA72C0B")
    IniWrite("settings.ini","Values","Hillsbrad","0x3C150B")
    IniWrite("settings.ini","Values","Stormwind Red","0x6B1F0C")
    IniWrite("settings.ini","Values","Beige","0xBB9B3D")
    IniWrite("settings.ini","Values","Wailing Caverns","0x210B04")
EndFunc

Func Start_Bot()
    GUIDelete()

    If Not WinExists("World of Warcraft") Then
        MsgBox(0, Random(0, 9999), "World of Warcraft must be open.")
        Exit
    EndIf

    WinActivate("World of Warcraft")
    WinSetOnTop("World of Warcraft", "", 0)
    Sleep(500)
    If $size_chck = 0 Then Set_Size()

    If MsgBox(4, Random(0, 9999), "Do you want to start the Bot?") == 6 Then
    Else
       Exit
    EndIf

    MouseMove($wind_left, $wind_top, 2)
    MouseMove($wind_righ, $wind_top, 2)
    MouseMove($wind_righ, $wind_bott, 2)
    MouseMove($wind_left, $wind_bott, 2)

    Cast_Pole()
    Find_Float()
EndFunc

Func Set_Size()
    $bord_vert = 23
    $bord_hori = 4
    $wind_size = WinGetClientSize("World of Warcraft")
    $wind_posi = WinGetPos("World of Warcraft")
    $wind_x = $wind_posi[0] + $bord_hori
    $wind_y = $wind_posi[1] + $bord_vert
    global $wind_top = $wind_y + (.25 * $wind_size[1])
    global $wind_bott = $wind_top + (.35 * $wind_size[1]) - 1
    global $wind_left = $wind_x + (.15 * $wind_size[0])
    global $wind_righ = $wind_left + $wind_size[0] - (.3 * $wind_size[0]) - 1

    $size_chck = 1
EndFunc

Func Cast_Pole()
    global $star_time = TimerInit()
    Send("1")
    Sleep(5000)
EndFunc

Func Find_Float()
   While 1
      If TimerDiff($star_time) >= $wait_time Then
         Cast_Pole()
      EndIf

      $pos = PixelSearch($wind_left, $wind_top, $wind_righ, $wind_bott, $colo_use, $tolerance, $sear_step)
         If @error Then
            SetError(0)
         Else
            MouseMove($pos[0], $pos[1], 2)
            Find_Splash($pos[0], $pos[1] )
         EndIf
         Sleep(10)
      WEnd
EndFunc

Func Find_Splash($float_x, $float_y)
    $sear_left = $float_x - 32
    $sear_righ = $sear_left + 52
    $sear_top = $float_y - 32
    $sear_bott = $sear_top + 64

    While TimerDiff($star_time) < $wait_time
        $pos = PixelSearch($sear_left, $sear_top, $sear_righ, $sear_bott, $spla_colo, $tolerance, $sear_step)
        If @error Then
            SetError(0)
        Else
            Send("{SHIFTDOWN}")
            MouseClick("right");, $pos[0], $pos[1], 1, 2)
            Send("{ShiftUP}")
            Sleep(5500)
            ExitLoop
        EndIf
        Sleep(10)
    WEnd

    Cast_Pole()
EndFunc

Func End()
    Exit
EndFunc

Func Set_Bobber()
    $bob_pos = MouseGetPos()
    $colo_use = "0x" & Hex(PixelGetColor($bob_pos[0], $bob_pos[1]), 6)
    IniWrite("settings.ini","Values", $colo_use, $colo_use)
EndFunc
Oh, and I've tried numerous bots, and had a lot of trouble with them, and this one is the first to work quite well. It still only catches one in two or three of the splashes, but thats still a lot more than I do while I'm sleeping. As I go to new zones and fish new places, I'll add the colors when necessary, and make a new reply or thread. For those of you that don't know how to get the color values, I downloaded "the gimp" and "GTK runtime environment" (needed to run the gimp) and once you open the screenshot there is a zoom option and a little dropper icon, you just pick the red on the feather that appears to show up on the feather the most often, giving it a better chance of finding the color.

Last edited by witiwap; 05-23-2006 at 02:53 PM..
Reply With Quote
(#8)
Old
LightWave's Avatar
LightWave is Offline
Contributor
Rep Power: 4
Reputation: 187
LightWave has a spectacular aura aboutLightWave has a spectacular aura about
 
Posts: 393
Join Date: May 2006
Location: in your head
05-24-2006

thanks man ill have to try it out to see if it works better but thanks and i will see if i can get one of my friends to give me some colors for it
Reply With Quote
Re: [Program] Fishbot Refurbished - GUI
(#9)
Old
liam eatu's Avatar
liam eatu is Offline
Sergeant
Rep Power: 3
Reputation: 18
liam eatu is on a distinguished road
 
Posts: 43
Join Date: Dec 2006
Location: on a deserted island
Re: [Program] Fishbot Refurbished - GUI - 12-05-2006

what do u open this with. scar is so difficult to use
Reply With Quote
Re: [Program] Fishbot Refurbished - GUI
(#10)
Old
JoeRodge is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 3
Reputation: 4
JoeRodge is an unknown quantity at this point
 
Posts: 96
Join Date: Nov 2006
Re: [Program] Fishbot Refurbished - GUI - 12-05-2006

It's no big deal, but how come so many people don't compile them with offering the code? Seems like it would avoid a lot of confusion for small heads.
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On



Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382