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 Xythe's 1.1.2 Fishing Bot
Bots and Programs Botting and Hacking programs for World of Warcraft.
[NO QUESTIONS HERE]

Reply
 
LinkBack Thread Tools
Xythe's 1.1.2 Fishing Bot
(#1)
Old
jamey2244 is Offline
Private
Rep Power: 3
Reputation: 11
jamey2244 is on a distinguished road
 
Posts: 10
Join Date: Apr 2006
Xythe's 1.1.2 Fishing Bot - 06-02-2006

Auto-It Scrip from Xythe

Code:
; ----------------------------------------------------------------------------
;
; AutoIt Version: 3.1.0
; Script Version: 1.1.2
; Author:         Xythe <[Only registered and activated users can see links. ]>
;
; Script Function:
;    Fishing in wow;)
; ----------------------------------------------------------------------------

#include <GUIConstants.au3>

Global $Fishing
Global $FishingState
Global $Step
Global $SettingsBobberPart
Global $SettingsBobberType
Global $ColorToFind
Global $LineCasted
Global $Looted
Global $SplashCoords

HotKeySet ("{ESC}", "Terminate")

Func Terminate()
    $Fishing = 0
EndFunc

$WinTitle = Random(10,100)
GUICreate($WinTitle, 200, 100) ; will create a dialog box that when displayed is centered

$tab=GUICtrlCreateTab (0,0, 200,100)

$Main=GUICtrlCreateTabitem ("Main")
GUICtrlCreateLabel ("Status:", 5,27,50,20)
$MainStart=GUICtrlCreateButton ("Start Fishing", 5,75,90,20)
$MainStop=GUICtrlCreateButton ("Stop Fishing", 100,75,90,20)
$MainStatus=GUICtrlCreateLabel ("Idle", 55,27,170,20)

$Settings=GUICtrlCreateTabitem ( "Settings")
GUICtrlCreateLabel ("Bobber Type:", 5,27,75,20)
GUICtrlCreateLabel ("Bobber Part:", 5,50,75,20)
GUICtrlCreateLabel ("Keybinding:", 5,73,75,20)
$BobberType=GUICtrlCreateCombo ("Day", 80,25,115,20)
GUICtrlSetData(-1,"Night|Very dark")
$BobberPart=GUICtrlCreateCombo ("Red Feather", 80,47,115,20)
GUICtrlSetData(-1,"Blue Feather|Metal Part")
$SettingsBobberBound = GUICtrlCreateInput ("1", 80,73,115,20)


$Help=GUICtrlCreateTabitem ("Help")
GUICtrlCreateLabel ("The author of this bot does not take any responsibility of its usage. Use -> Caught -> Ban -> Your problem.", 5,27,190,40)
GUICtrlCreateLabel ("Please report bugs to [Only registered and activated users can see links. ]", 5,65,170,40)
$HelpHowTo=GUICtrlCreateButton ("?", 175,75,20,20)

GUICtrlCreateTabitem ("")

*****tState ()

; Run the GUI until the dialog is closed
While 1
    $msg = GUIGetMsg()
    Select
        Case $msg = $HelpHowTo
            MsgBox (0, "How to use?", "1. Disable all shader effects")
            MsgBox (0, "How to use?", "2. Go to 1024 x 768 Windowed mode")
            MsgBox (0, "How to use?", "3. Find a place to fish")
            MsgBox (0, "How to use?", "4. Aim away from sun or moon")
            MsgBox (0, "How to use?", "5. Adjust bot's settings accordingly")
            MsgBox (0, "How to use?", "5. Press 'Start Fishing' from the bot")
            MsgBox (0, "How to use?", "6. Gain rapid skill and lots of money")
            MsgBox (0, "How to use?", "7. Esc stops the bot.")
        Case $msg = $MainStart
            GUICtrlSetData ( $MainStatus, "Casting Line" )
            $Fishing = 1
        Case $msg = $MainStop
            GUICtrlSetData ( $MainStatus, "Idle" )
            $Fishing = 0
    EndSelect
    If $msg = $GUI_EVENT_CLOSE Then ExitLoop
    
;---------------
    If $Fishing = 1 Then
        If Not WinExists("World of Warcraft") Then
            MsgBox(0, "ERROR", "Open World of Warcraft first.")
            ExitLoop
        EndIf
    ;Cast line
        Send (GUICtrlRead ( $SettingsBobberBound ))
        
        $LineCasted = 1
        $Looted = 0
        
        GetColorToFind()
        
        $Timer = TimerInit()
        
        Do
        ;Check Bobber -> Cant find -> Find bobber (quick) -> Cant find -> Find bobber (slow)
            CheckBobber()
        ;check for splash -> loot
            CheckSplash()
            
            $TimerDif = TimerDiff($Timer)
            If $TimerDif >= 25000 + Random(0,1000) Then
                $LineCasted = 0
            EndIf
        Until $LineCasted = 0
    EndIf
WEnd

Func GetColorToFind()
    Select
        Case GUICtrlRead ( $BobberPart ) = "Red Feather"
            If GUICtrlRead ( $BobberType ) = "Day" Then $ColorToFind = 0xB83113
            If GUICtrlRead ( $BobberType ) = "Night" Then $ColorToFind = 0x782512
            If GUICtrlRead ( $BobberType ) = "Very dark" Then $ColorToFind = 0x481A10
        Case GUICtrlRead ( $BobberPart ) = "Blue Feather"
            If GUICtrlRead ( $BobberType ) = "Day" Then $ColorToFind = 0x726170
            If GUICtrlRead ( $BobberType ) = "Night" Then $ColorToFind = 0x4A3D4D
            If GUICtrlRead ( $BobberType ) = "Very dark" Then $ColorToFind = 0x382938
        Case GUICtrlRead ( $BobberPart ) = "Metal Part"
            If GUICtrlRead ( $BobberType ) = "Day" Then $ColorToFind = 0xD8CFD3
            If GUICtrlRead ( $BobberType ) = "Night" Then $ColorToFind = 0x7A7577
            If GUICtrlRead ( $BobberType ) = "Very dark" Then $ColorToFind = 0x5A5557
    EndSelect
EndFunc

Func CheckBobber()
    GUICtrlSetData ( $MainStatus, "Checking Bobber" )
    
    $Position = MouseGetPos ()
    $Top = $Position[1] - 10
    $Left = $Position[0] - 10
    $Bottom = $Position[1] + 10
    $Right = $Position[0] + 10
    
    $BobberCoords = PixelSearch ( $Left, $Top, $Right, $Bottom, 0xB83113 , 10 , 1 )
    If @error Then
        FindBobber(4)
    EndIf
EndFunc

Func FindBobber($Step)
    GUICtrlSetData ( $MainStatus, "Finding Bobber" )
    
    $Position = WinGetPos ( "World of Warcraft")
;0x6C1A10
    $Top = $Position[1] + 200
    $Left = $Position[0] + 300
    $Bottom = $Position[1] + $Position[3] - 200
    $Right = $Position[0] + $Position[2] - 300
    
    $BobberCoords = PixelSearch ( $Left, $Top, $Right, $Bottom, $ColorToFind , 30 , $Step )
    If @error Then
        FindBobber(2)
    Else
        MouseMove ( $BobberCoords[0], $BobberCoords[1] )
    EndIf
EndFunc

Func CheckSplash()
    GUICtrlSetData ( $MainStatus, "Waiting for Splash" )
    
    $Position = MouseGetPos()
    $Left = $Position[0] - 40
    $Top = $Position[1] - 30
    $Right = $Position[0]
    $Bottom = $Position[1] + 10
    $SplashCoords = PixelSearch ( $Left, $Top, $Right, $Bottom, 0xFFFFFF, 35, 2 )
    If Not @error Then
        If Not $Looted Then
            GUICtrlSetData ( $MainStatus, "Looting" )
            Send("{SHIFTDOWN}")
            MouseClick ( "right" )
            Sleep(Random(0,200))
            Send("{SHIFTUP}")
            $LineCasted = 0
            $Looted = 1
        EndIf
    EndIf
EndFunc
Reply With Quote

Donate to remove ads.
(#2)
Old
luizminer is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 0
Reputation: 1
luizminer is an unknown quantity at this point
 
Posts: 2
Join Date: May 2006
06-02-2006

and what do u do with that script??
Reply With Quote
(#3)
Old
lopolop's Avatar
lopolop is Offline
Master Sergeant
Rep Power: 3
Reputation: 49
lopolop is on a distinguished road
 
Posts: 124
Join Date: May 2006
06-02-2006

its autoit download it search google for autoit then open up a .txt doc copy&paste code save as .au3 and run..
Reply With Quote
(#4)
Old
Bossman4's Avatar
Bossman4 is Offline
Contributor
Rep Power: 3
Reputation: 126
Bossman4 will become famous soon enoughBossman4 will become famous soon enough
 
Posts: 260
Join Date: Apr 2006
Location: ....................
06-02-2006

Fishing Bot. YAY more easy fishing for me.!!!!!!


Reply With Quote
(#5)
Old
Justink15 is Offline
Sergeant
Rep Power: 3
Reputation: 11
Justink15 is on a distinguished road
 
Posts: 50
Join Date: Apr 2006
06-02-2006

tested. Very difficult to control and does not detect spash well just like every other undetectable bot out there.
Reply With Quote
Re: Xythe's 1.1.2 Fishing Bot
(#6)
Old
scotters is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 0
Reputation: 1
scotters is an unknown quantity at this point
 
Posts: 1
Join Date: Jan 2007
Re: Xythe's 1.1.2 Fishing Bot - 01-01-2007

I opened a .txt and pasted the script, there is no save as option to save as a .au3
Reply With Quote
Re: Xythe's 1.1.2 Fishing Bot
(#7)
Old
noeylani94's Avatar
noeylani94 is Offline
Banned
Rep Power: 0
Reputation: 1
noeylani94 is an unknown quantity at this point
 
Posts: 4
Join Date: Oct 2006
Location: California
Re: Xythe's 1.1.2 Fishing Bot - 01-01-2007

Hmmm..... This one is more complicated. Just use [Only registered and activated users can see links. ]. Way easier to understand
Reply With Quote
Re: Xythe's 1.1.2 Fishing Bot
(#8)
Old
Nightfoxx's Avatar
Nightfoxx is Offline
Contributor
Rep Power: 4
Reputation: 179
Nightfoxx has a spectacular aura aboutNightfoxx has a spectacular aura about
 
Posts: 681
Join Date: Oct 2006
Location: 127.0.0.1
Re: Xythe's 1.1.2 Fishing Bot - 02-26-2007

****ing *******, its not funny rly ffs


Official Leecher-Hater
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