taultunleashed logoWOW Bot: 100% Working WoW 1.10.0 fishing Bot : World of Warcraft Nerfed Info
newtopic  postreply
 [ 178 posts ]  1, 2, 3, 4, 5 ... 12  Next
blue large dot

WOW Bot: 100% Working WoW 1.10.0 fishing Bot : World of Warcraft Nerfed Info

Posted: October 28th, 2005, 8:08 pm
 
nalfein

Total Posts: 19
Joined: May 1st, 2004, 4:00 am
nalfein's Reps: 0
User avatar
Here is a fishing bot a friend hooked me up with, that works with the current version of WoW.

Easy set up and use. Just follow the instructions in the readme and GUI

Extra info from tault_vorpal

If you guys actually read this thread instead of just posting stupid complaints you'd notice that about 3 or 4 pages back I posted detailed instructions on how to make this thing work...........

Rolling Eyes

'==========================================

Other than that, what does help is to set all graphics to the worst possible settings (everything off). This gets rid of problems like hightlight confusions.

And, inside your WTF folder is a file called "Config.wtf".
Make a copy of that file and then change all your settings to off and 800x600. Then make another copy.

You end up with 3 config files:
Config.wtf (the one used)
FISHING_config.wtf
NORMAL_config.wtf

when you need to switch back and forth, while in game, deleted the "config.wtf" file, copy one of the other two and rename the copy "config.wtf"
Then do a UI restart.

It's a lot eaiser than reselecting all the graphics options......

'=================================

Refering to my ealier post a few pages back, for this or any other fishing bot to work you will need to take screenshots and use the AutoIT window info program on the screenshots to find good colors.

Once you do that you can start to compile lists: (ex)
STV DAY: 0xFFFFFF
STV NIGHT: 0xFFFFFF
STV DUSK: 0xFFFFFFF

'==========================================

And, depending on the zone your in it can be better to get and use the blue feather color......


'==========================================


The only way this Macro could be better is if on a failed bobber find post cast it would try a scan on a couple more colors




Other than that......... this isn't a brain dead tool. User your noodle.

UPDATE 1.10 Version

(!empty($user->lang['CODE'])) ? $user->lang['CODE'] : ucwords(strtolower(str_replace('_', ' ', 'CODE'))):
;#########################################################################
;         FishBOT by Psycosis taken from Foobie who adapted Pantless Krab's       
;                                                                     
;                        Version 1.4.8 (1.10 Fix)                     
;                                                                     
;  Note - By using the Fishing bot designed for World of Warcraft     
;  You understand the risks and agree that you will take all           
;  responsibility for this code. THe creater takes no responsibility   
;  for whatever happens to users who use and/or modify this code       
;#########################################################################


;###########
; Globals
;###########
$title = "WoW FishBOT"


;##################
; German Client
;##################
$win_title = "WORLD OF WARCRAFT"

;##################
; English Client
;##################
;$win_title = "World of Warcraft"

; Sets up the Borders to fish in
$top_border_height = 23
$left_border_width = 4

; Sets up the Screen resolution $ make shure its in windowed mode
$screen_width = 800
$screen_height = 600

; Just a simple Timer
$time_to_wait = 30000
dim $start_time


;#########################################################################
;                   Hot Keys Section                                   
;                                                                     
; Set up a Hot key to be used later to end the script                 
;#########################################################################

HotKeySet("{PAUSE}", "request_end")



;#########################################################################
;                     Fish Bot View Paremeters                         
;                                                                     
;  Sets up the boundaries of the fishbot on the screen and returns     
;  some visual confirmation by moving the mouse in a square showing   
;  where the bot will be searching for the fishing bobber             
;#########################################################################

if not WinExists($win_title, "") then
   msg($win_title & " window must be open.")
   Exit
endif

WinActivate($win_title, "")
WinSetOnTop($win_title, "", 0)
Sleep(500)

check_window()

$win_pos = WinGetPos($win_title, "")
$win_x = $win_pos[0] + $left_border_width
$win_y = $win_pos[1] + $top_border_height

$top = $win_y + (.25 * $screen_height)
$bottom = $top + (.35 * $screen_height) - 1
$left = $win_x + (.15 * $screen_width)
$right = $left + $screen_width - (.15 * 2.0 * $screen_width) - 1

Start_Bot()


;###########################
; Visual confirmation     
; Area scanned for bobber
;###########################

MouseMove($left, $top, 2)
MouseMove($right, $top, 2)
MouseMove($right, $bottom, 2)
MouseMove($left, $bottom, 2)

cast_pole()
find_float()

;#########################################################################
;                                                                     
;                       Function find_float                         
;                                                                     
;  Once bobber has been cast the bobber needs to be found via colors   
;  The most prominent color is the red so by default that is enabled   
;  More colors have been defined and you may switch them if you want   
;  The only reason to switch them is when fishing in Stormwind or at   
;  night when colors are all very diffrent.                           
;#########################################################################

func find_float()
   
   ;#####################   
   ; Color Definitions
   ;#####################

   $color_dark_purple = 0x463B4D
   $color_dark_blue = 0x283A64
   $color_red = 0xA72C0B
   $color_stormwind_daylight_blue = 0x2B3254
   $color_stormwind_daylight_red = 0x6B1F0C
   $color_beige = 0xBB9B3D
   $color_night_blue = 0x0B1931
   $color_wc = 0x210B04
   ;#########################################################   
   ; This is the color used to pixelsearch for the bobber.
   ; Change the color to a good color                     
   ; on the bobber that is prominent on the screen         
   ;#########################################################

   $color_to_use =  $color_wc
   
   ;##################################################################
   ; This is the search tolerance. In areas where the bobber       
   ; colors really stand out, you can use a fairly high threshold.
   ; In areas where the bobber colors are fairly muted in with     
   ; the background, you will have to lower the values considerably.
   ;##################################################################

   $bobber_search_tolerance = 20
   
   ;########################################################################
   ; It's better to use lower values here in favor of accurate searching.
   ; This will take more time for it to detect the bobber, but usually   
   ; the splash doesn't occur until at least 30% of the time has run out,
   ; and by that time, it should have detected the bobber (assuming the   
   ; color values and tolerance are correct).                             
   ;########################################################################

   $bobber_search_step = 2
   
   ;#########################################################################
   ; Search for float. In certain lighting, the part of the float may look
   ; more purple than blue. In this case, using $color_red tends to work   
   ; the best with a tolerance of 20.                                     
   ;#########################################################################

   while 1
      if TimerDiff($start_time) >= $time_to_wait then
         cast_pole()
      endif
     
      $pos = PixelSearch($left, $top, $right, $bottom, $color_to_use, $bobber_search_tolerance, $bobber_search_step)
         if @error then
            SetError(0)
         else
            MouseMove($pos[0], $pos[1], 2)
            find_splash($pos[0], $pos[1] )
         endif
      Sleep(10)
   wend
endfunc

;############################################################################
;                    Find that White Splash
;
;    Basicly once you find the bobber you have to find the splash
;    this function creates a smaller box around the bobber and watches
;    for the white splash of the bobber. Once it finds the splash it
;    calls for the function to right click and loot.
;############################################################################

func find_splash($float_x, $float_y)
   
   $search_left = $float_x - 52
   $search_right = $search_left + 72
   $search_top = $float_y - 52
   $search_bottom = $search_top + 74
   
   ;############################################################
   ; Usually you do not have to modify the search color for
   ; the splash, as the pixels have a very distinctive,
   ; bright color.
   ;############################################################
   $splash_color = 0xF6F6F6

   ;############################################################
   ; Sometimes 30 tolerance works well, sometimes 20 is better
   ; in lit areas to avoid catching highlights in other things.
   ;############################################################
   $splash_tolerance = 20
   
   ;############################################################
   ; The search step can be pretty small here (1 to 3) without
   ; worries because the search area is so small once it has
   ; been narrowed down - speed isn't much of an issue.
   ;############################################################
   $splash_search_step = 2

   ;######################
   ; Search for splash
   ;######################

   while TimerDiff($start_time) < $time_to_wait
      $pos = PixelSearch($search_left, $search_top, $search_right, $search_bottom, $splash_color, $splash_tolerance, $splash_search_step)
      if @error then
         SetError(0)
      else
         ;#####################
         ; Click on the splash
         ;#####################
     
         send("{SHIFTDOWN}")
    sleep(100)
    MouseClick("right");, $pos[0], $pos[1], 1, 2)
    sleep(300)
    send("{ShiftUP}")
    Sleep(5500)
    ExitLoop
         
      endif
      Sleep(10)
   wend

   ;######################################   
   ; Cast pole and start all over again.
   ;######################################

   cast_pole()
endfunc

;##############################################################################
func cast_pole()
   $start_time = TimerInit()
   Send("1")
   Sleep(1000)
endfunc

;##############################################################################
func check_window()
   $dimensions = WinGetClientSize($win_title, "")
   if $dimensions[0] <> $screen_width or $dimensions[1] <> $screen_height then
      msg("Invalid window size. You must use " & $screen_width & "x" & $screen_height & " resolution in window mode.")
      Exit
   endif
endfunc

;##############################################################################
func msg($text)
   MsgBox(0, $title, $text)
endfunc

;##############################################################################
func msg_array($title, $array, $num_elements)
   dim $text
   $text = $array[0]

   for $j = 1 to $num_elements - 1
      $text = $text & ", " & $array[$j]
   next

   MsgBox(0, $title, $text)
endfunc


;##########################################################
func request_end()
   $MB_YESNO = 4
   $MB_YES = 6
   
   if MsgBox($MB_YESNO, $title, "End script?") == $MB_YES then
      Exit
   endif
endfunc

;###########################################################
func Start_Bot()
   $MB_YESNO = 4
   $MB_YES = 6
   
   if MsgBox($MB_YESNO, $title, "Do you want to start the Bot?") == $MB_Yes then
   
   else
      Exit
   endif
endfunc

;##########################################################
func drain_timer()
   Msg("Restart")
   $start_time = $start_time - $time_to_wait
endfunc

;##########################################################


You do not have the required permissions to view the files attached to this post.


Reply with quote
Posted: October 29th, 2005, 9:49 am
 
kumpel100

Total Posts: 375
Location: Germany
Joined: October 24th, 2005, 12:29 pm
kumpel100's Reps: 969
User avatar
premium
Wooot First Skript that run without problems.


Reply with quote
Posted: October 30th, 2005, 10:16 am
 
thunder_4e
thunder_4e's Reps:
User avatar
donĀ“t works i have a EU vers. is this the prob.?


Error:World of Warcraft window must be open


I have open!!


Reply with quote
Posted: October 30th, 2005, 11:19 pm
 
nalfein

Total Posts: 19
Joined: May 1st, 2004, 4:00 am
nalfein's Reps: 0
User avatar
I havent tested it on EU version so I dont know if it does run on it, sorry.


Reply with quote
Posted: October 31st, 2005, 10:59 am
 
kumpel100

Total Posts: 375
Location: Germany
Joined: October 24th, 2005, 12:29 pm
kumpel100's Reps: 969
User avatar
premium
Change:



;###########
; Globals
;###########
$title = "WoW FishBOT"
$win_title = "World of Warcraft" << Change this to "WORLD OF WARCRAFT" for EU user


Reply with quote
Posted: November 1st, 2005, 3:11 pm
 
scootergass26
scootergass26's Reps:
User avatar
VERY DETECTABLE?ANYONE GET CAUGHT?


Reply with quote
Posted: November 1st, 2005, 3:20 pm
 
kumpel100

Total Posts: 375
Location: Germany
Joined: October 24th, 2005, 12:29 pm
kumpel100's Reps: 969
User avatar
premium
i use this version since playing wow around 7 month 30hrs per week, never got problems.


Reply with quote
Posted: November 6th, 2005, 11:52 am
 
scootergass26
scootergass26's Reps:
User avatar
so didnt get caught?


Reply with quote
Posted: November 8th, 2005, 7:13 am
 
cnchev
cnchev's Reps:
User avatar
nalfein (!empty($user->lang['WROTE'])) ? $user->lang['WROTE'] : ucwords(strtolower(str_replace('_', ' ', 'WROTE'))):
Here is a fishing bot a friend hooked me up with, that works with the current version of WoW.

Easy set up and use. Just follow the instructions in the readme and GUI


Downloaded. No readme, no GUI. Instructions?


Reply with quote
Posted: November 8th, 2005, 11:18 pm
 
nalfein

Total Posts: 19
Joined: May 1st, 2004, 4:00 am
nalfein's Reps: 0
User avatar
instructions: open wow, run bot, follow gui instructions.


Reply with quote
Posted: November 9th, 2005, 5:15 pm
 
tault_freezerburn669
tault_freezerburn669's Reps:
User avatar
Hey, nice bot. I got this to work for about 10 mins then after that it did not work again. The cursor now moves around a square once hitting each corner, fishing is then casted (like when it worked), but now the cursor does not react to the bobber (when fishing is casted the cursor does not move to it) and becasue of this the fish are not caught and relled in (looted). I seem to think its something to do with the variables i.e. bobber search tolerance, and bobber search. So could someone please let me know what numbers they have set for these please.

Kudos to nalfein for posting this, the first one to actually work! ( for a while!!)

thanks


Reply with quote
Posted: November 10th, 2005, 2:58 am
 
nalfein

Total Posts: 19
Joined: May 1st, 2004, 4:00 am
nalfein's Reps: 0
User avatar
I have found that certain areas, require you to use a different color to search for the bobber. Try that and see if it works, also make sure you not facing the sun/moon it wont work at all if you are.


Reply with quote
Posted: November 10th, 2005, 11:45 am
 
tault_freezerburn669
tault_freezerburn669's Reps:
User avatar
ok thanks ill give it a try


Reply with quote
Posted: November 11th, 2005, 7:19 am
 
tault_freezerburn669
tault_freezerburn669's Reps:
User avatar
that seemed to do it! thanks nalfein :)

I can fish and leech rep in AV at the same time now w/o being on my computer!


Reply with quote
Posted: November 11th, 2005, 6:43 pm
 
mickev

Total Posts: 6
Joined: October 23rd, 2005, 4:52 pm
mickev's Reps: 1
User avatar
File: wowfishbot2.zip
Status: INFECTED/MALWARE
MD5 cddb57c9a91b9e4142c33f0f1e773ee3
Packers detected: UPX, AUTOIT
Scanner results
AntiVir Found nothing
ArcaVir Found Trojan.Clicker.Small.Ht
Avast Found nothing
AVG Antivirus Found nothing
BitDefender Found nothing
ClamAV Found nothing
Dr.Web Found nothing
F-Prot Antivirus Found nothing
Fortinet Found nothing
Kaspersky Anti-Virus Found nothing
NOD32 Found nothing
Norman Virus Control Found nothing
UNA Found TrojanClicker.Win32.Small
VBA32 Found nothing

u can scan it on http://virusscan.jotti.org/
is this file TrojanClicker.Win32.Small just to make the bot click?


Reply with quote
Want Advertisements After The Last Post Removed? Create A Free Account!

blue large dot Who is online
Users browsing this forum: No registered users and 29 guests

Popular Sections
SWTOR Cheats
Guild Wars 2 Cheats
Guild Wars 2 Hacks
Guild Wars 2 Bots
Diablo 3 Cheats
Guild Wars 2 Mods

Popular Sections
WoW Cataclysm Cheats & Exploits
WoW Cataclysm Hacks & Bots
Star Wars The Old Republic Cheats
SWTOR Mods
Torchlight 2 Cheats
SWTOR Space Mission Bots
Site Nav and RSS
RSS Feed of World of Warcraft Nerfed Info RSS Feed 
Sitemap of World of Warcraft Nerfed Info Sitemap 
SitemapIndex SitemapIndex
RSS Feed RSS Feed
Channel list Channel list
left bottom corner Site and Contents Copyright 2001-2012 All Rights Reserved TaultUnleashed.com bottom corner
top left
top right
createaccount
Username:   Password:   Remember Me?