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 [Bot]Fisher Script
Bots and Programs Botting and Hacking programs for World of Warcraft.
[NO QUESTIONS HERE]

Reply
 
LinkBack Thread Tools
[Bot]Fisher Script
(#1)
Old
iradiation is Offline
Contributor
Rep Power: 1
Reputation: 83
iradiation will become famous soon enough
 
Posts: 576
Join Date: Mar 2008
Location: Stormwind 24 Sev
Wow Bot [Bot]Fisher Script - 03-15-2008

This is a nice script i found from [Only registered and activated users can see links. ]
This bot requires ACtool to use it but have no fear theres a way to make it so warden won't detect it.
lets start with getting ACtools.
[Only registered and activated users can see links. ]

Next goto your AC Tool folder in program files and change the ACTOOL.exe or whatever it is to anything you wish change it to something obvious like msn or something that warden wouldn't suspect.

Install that and open

Take this code and copy it in AC tool

Quote:
// WoW Fishing Bot v1.1
// Made by QuietKnight

// Changes
// v1.1
// + Added in the option to turn off AFK Killer
// + Added in changes log
//
// v1.0
// + Initial version

// Special instructions:
// - Put your fishing skill in slot '0'
// - Zoom into 1st person mode
// - Under Video Options, uncheck 'Hardware Cursor'

SetActiveWindow World of Warcraft

Constants

/////////////////////////
// CHANGABLE CONSTANTS //
/////////////////////////

// Run count
// How many times the script should try to fish
runCount = 150

// Speed
// This is the initial scan speed. The lower the number, the faster the scan goes,
// and the higher the number, the slower the scan goes. If you're having problems
// where the initial scan isnt finding the bobber and just scanning right over it,
// try increasing this number slowly.
scanSpeed = 60

// Scan box distances
// These are the distances away from the sides of the screen to scan for a lure
// These are measured as percentages of the screen in the appropriate direction
scanLeftDist = .3
scanRightDist = .3
scanTopDist = .4
scanBottomDist = .25

// Brightness range
// This is the number of RGB values over and under the 'bright spot' that is the
// lure to look for. Basically, if you're getting the message 'No fish to hook',
// try increasing both numbers a bit, and if the bobber bobs but you dont catch
// anything, try decreasing both numbers a bit. This can change from environment
// to environment. Also, generally speaking brightRangeUp shouldnt be very high.
brightRangeDown = 50
brightRangeUp = 10

// Brightness distance
// Doesnt matter what it does, but basically, leave it alone unless you're having
// problems actually catching the fish. If you're having problems and you want
// to tweak it, general rule is, the higher the resolution, the higher the number,
// the but number range should only be anywhere from 2 MIN to 6 MAX. If you start
// getting too out of wack with this, you'll never catch a fish
brightDist = 3

// AFK Away
// Set to 1 to use AFK Away (which presses Enter twice before every cast) or
// to 0 to disable AFK Away entirely. This comes in useful if you like to
// chat on WoW while fishing.
afkAway = 0

/////////////////////////////
// NON-CHANGABLE CONSTANTS //
/////////////////////////////

// Optimal scan step ratios
widthToWindowRatio = 0.056
heightToWindowRatio = 0.075

// Scanbox
scanTop = 0
scanBottom = 0
scanLeft = 0
scanRight = 0
scanStepX = 0
scanStepY = 0
scanSuccess = 0

// THE Box
boxMinX = 0
boxMaxX = 0
boxMinY = 0
boxMaxY = 0
boxCenterY = 0
boxCenterX = 0

boxScanStep = 4

boxAvgWidth = 0
boxAvgHeight = 0

// Misc vars
x = 0
y = 0
i = 0
j = 0

// Mouse vars
isMouseOrange = 0
mouseX = 0
mouseY = 0

// Lure location
lureInitLocX = 0
lureInitLocY = 0

// RGB Info
brightX = 0
brightY = 0
brightTotal = 0
brightR = 0
brightG = 0
brightB = 0
brightRMin = 0
brightRMax = 0
brightGMin = 0
brightGMax = 0
brightBMin = 0
brightBMax = 0
curTotal = 0

// Splash
splashed = 0

End

///////////////
// Main Proc //
///////////////

Delay 1000
Call CalculateScanBoxConstants

Loop
Keys 0
Delay 1000
Call FindLureInitial
Call FindBoxCenter

Compute x = -10
MousePos ,
Delay

Call GetRGBValue
Call WaitForSplash

If = 1
Delay 2500
KeyDown {RETURN} 250
KeyDown {RETURN} 250
Delay 2000
Else
Delay 5000
End

End


////////////////
// Procedures //
////////////////

Procedure CalculateScanBoxConstants


Compute scanTop = {WindowTop} + Trunc( {WindowHeight} * )
Compute scanBottom = ( {WindowTop} + {WindowHeight} ) - Trunc( {WindowHeight} * )
Compute scanLeft = {WindowLeft} + Trunc( {WindowWidth} * )
Compute scanRight = ( {WindowLeft} + {WindowWidth} ) - Trunc( {WindowWidth} * )

Compute boxAvgWidth = Trunc( {WindowWidth} * )
Compute boxAvgHeight = Trunc( {WindowHeight} * )

Compute scanStepX =
Compute scanStepY = Trunc( / 2 )

End

Procedure FindLureInitial
SetConst scanSuccess = 0
Compute y =

While <= AND = 0

Compute i = {LoopNo} MOD 2

If = 0
Timestamp In Even
Compute x =
Else
Timestamp In Odd
Compute x = + Trunc( / 2 )
End

While <= AND = 0
// Move the mouse and wait a second (wait is required!)
MousePos ,
Delay

Call isMouseOrange

// If the mouse is orange
If = 1
SetConst lureInitLocX =
SetConst lureInitLocY =
SetConst scanSuccess = 1
End

Compute x= +
End

Compute y= +
End

End

Procedure FindBoxCenter

// Find X min
SetConst scanSuccess = 0
Compute x =
Compute y =
While = 0

// Move the mouse and wait a second (wait is required!)
MousePos ,
Delay

Call isMouseOrange

If = 0
SetConst boxMinX =
SetConst scanSuccess = 1
Else
Compute x= -
End
End

// Find X max
SetConst scanSuccess = 0
Compute x =
Compute y =
While = 0

// Move the mouse and wait a second (wait is required!)
MousePos ,
Delay

Call isMouseOrange

If = 0
SetConst boxMaxX =
SetConst scanSuccess = 1
Else
Compute x= +
End
End

// Find Y min
SetConst scanSuccess = 0
Compute x =
Compute y =
While = 0

// Move the mouse and wait a second (wait is required!)
MousePos ,
Delay

Call isMouseOrange

If = 0
SetConst boxMinY =
SetConst scanSuccess = 1
Else
Compute y= -
End
End

// Find Y max
SetConst scanSuccess = 0
Compute x =
Compute y =
While = 0

// Move the mouse and wait a second (wait is required!)
MousePos ,
Delay

Call isMouseOrange

If = 0
SetConst boxMaxY =
SetConst scanSuccess = 1
Else
Compute y= +
End
End


Compute boxCenterX = Trunc(( + ) / 2)
Compute boxCenterY = Trunc(( + ) / 2)

SetConst lureInitLocX =
SetConst lureInitLocY =

End

Procedure GetRGBValue

SetConst = 0

Compute y =
Compute i = + Trunc( ( - ) / 3 )

While <=

Compute x =
While <=

LoadRGB ,
Compute curTotal = {RGBRed} + {RGBGreen} + {RGBBlue}

If >
Compute brightTotal =

SetConst brightR = {RGBRed}
SetConst brightG = {RGBGreen}
SetConst brightB = {RGBBlue}

Compute brightRMin = -
Compute brightRMax = +
Compute brightGMin = -
Compute brightGMax = +
Compute brightBMin = -
Compute brightBMax = +

SetConst brightX =
SetConst brightY =
End

Compute x= + 2
End

Compute y= + 2
End

End

Procedure WaitForSplash

SetConst = 0

Call isMouseOrange

While = 0 AND = 1
Delay 100

// Check current spot
LoadRGB ,
If {RGBRed} > OR {RGBRed} < OR {RGBGreen} > OR {RGBGreen} < OR {RGBBlue} > OR {RGBBlue} <

// Check top left
Compute x=-
Compute y=-
LoadRGB ,
If {RGBRed} > OR {RGBRed} < OR {RGBGreen} > OR {RGBGreen} < OR {RGBBlue} > OR {RGBBlue} <

// Check top right
Compute x=+
Compute y=-
LoadRGB ,
If {RGBRed} > OR {RGBRed} < OR {RGBGreen} > OR {RGBGreen} < OR {RGBBlue} > OR {RGBBlue} <

// Check bottom left
Compute x=-
Compute y=+
LoadRGB ,
If {RGBRed} > OR {RGBRed} < OR {RGBGreen} > OR {RGBGreen} < OR {RGBBlue} > OR {RGBBlue} <

// Check bottom right
Compute x=+
Compute y=+
LoadRGB ,
If {RGBRed} > OR {RGBRed} < OR {RGBGreen} > OR {RGBGreen} < OR {RGBBlue} > OR {RGBBlue} <

// Check top left (extended)
Compute x=-(*2)
Compute y=-(*2)
LoadRGB ,
If {RGBRed} > OR {RGBRed} < OR {RGBGreen} > OR {RGBGreen} < OR {RGBBlue} > OR {RGBBlue} <

// Check top right (extended)
Compute x=+(*2)
Compute y=-(*2)
LoadRGB ,
If {RGBRed} > OR {RGBRed} < OR {RGBGreen} > OR {RGBGreen} < OR {RGBBlue} > OR {RGBBlue} <

// Check bottom left (extended)
Compute x=-(*2)
Compute y=+(*2)
LoadRGB ,
If {RGBRed} > OR {RGBRed} < OR {RGBGreen} > OR {RGBGreen} < OR {RGBBlue} > OR {RGBBlue} <

// Check bottom right (extended)
Compute x=+(*2)
Compute y=+(*2)
LoadRGB ,
If {RGBRed} > OR {RGBRed} < OR {RGBGreen} > OR {RGBGreen} < OR {RGBBlue} > OR {RGBBlue} <

SetConst splashed = 1
RightClick Shift
Delay 500

End
End
End
End
End
End
End
End
End

Call isMouseOrange

End
End

Procedure isMouseOrange
SetConst = 0

// Get the mouse color
Compute mouseX= {MouseX} + 4
Compute mouseY= {MouseY} + 4
LoadRGB ,

// If the mouse is orange (variance added just for good measure..)
If {RGBRed} >= 210 AND {RGBRed} <= 218 AND {RGBGreen} >= 160 AND {RGBGreen} <= 168 AND {RGBBlue} >= 84 AND {RGBBlue} <= 92
SetConst = 1
End
End
You can change the Runcount in the script to anything you wish.

Once you do that Run WoW in windowed mode.

Put your fishing skill on the 0 slot.

Under video options make sure to UNCHECK THE HARDWARE CURSOR!!!

Get next to a bank of water sit down and zoom into first person try to level with the water.

Run the macro and enjoy!!

REMEMBER!
DO NO USE IN PUBLIC PLACE
DO NOT BOT STRAIT TO 375 IN 1 DAY
DON'T GO AROUND SCREAMING I'M A LEET FISHER I CAN BOTTT!!!!
AND DONT EVEN BOTHER TALKING ABOUT IT EVEN WITH YOUR CLOSEST FRIEND!
please remember that there are way better bots out there and this is just one of them!

Last edited by iradiation; 03-16-2008 at 01:34 AM.
Reply With Quote

Donate to remove ads.
(#2)
Old
shadowbladex's Avatar
shadowbladex is Offline
Contributor
Rep Power: 2
Reputation: 138
shadowbladex will become famous soon enoughshadowbladex will become famous soon enough
 
Posts: 938
Join Date: Apr 2007
Location: ๏̯๏
03-16-2008

Quote:
Originally Posted by kevinkrupp View Post
DON'T GO AROUND SCREAMING I'M A LEET FISHER I CAN BOTTT!!!!
Wai nawt?


Reply With Quote
(#3)
Old
iradiation is Offline
Contributor
Rep Power: 1
Reputation: 83
iradiation will become famous soon enough
 
Posts: 576
Join Date: Mar 2008
Location: Stormwind 24 Sev
03-16-2008

well dont add in that you didnt even have to be at your computer to do it lol
Reply With Quote
(#4)
Old
Valgas
Guest
 
Posts: n/a
03-17-2008

doh.. i'm probably too noob to use it... I believe I've done everything you said, but nothing worked for me... everytime I press F2 (to start the macro) the macro starts for 1ms and then it stops... i dunno if there are errors in the macro since debug tab disappears too fast..
Reply With Quote
(#5)
Old
evil Chip 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
evil Chip is an unknown quantity at this point
 
Posts: 3
Join Date: Mar 2008
03-17-2008

another noob here, i click start or f2 and seems nothing is happening. i copy and paste that whole script into commands & macro area, save and start. am i missing something? also first time installing actools, do i need to change any settings?
Reply With Quote
(#6)
Old
iradiation is Offline
Contributor
Rep Power: 1
Reputation: 83
iradiation will become famous soon enough
 
Posts: 576
Join Date: Mar 2008
Location: Stormwind 24 Sev
03-17-2008

just click the link i entered and re copy or something not sure always works here : /
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.3
Copyright ©2000 - 2008, 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