Fishing training macro?

sampsonized

Master
Looking to train fishing from a dock or a boat. I've seen macros that get rid of fish or cut them up, and trash boots. Anyone have a good one for this?


Sent from my iPhone using Tapatalk
 

kdivers

Neophyte
Here is the macro I used to use on a different server. I vaguely remember this server having different rules as far as targettileoffset and fishing pole graphicid are concerned. You might need to tweak it a bit.

Code:
////////////////////////////////////

// This macro is designed for MIB //

// farming from a boat. Also, it //

// is designed for a character //

// with archery and peacemaking. //

// Stand in front of the mast. //

// //

// Turn on loop and click play! //

// //

// ~~Made by kdivers~~ //

////////////////////////////////////

if not listexists 'fish'

createlist 'fish'

pushlist 'fish' 0x9cc

pushlist 'fish' 0x9cd

pushlist 'fish' 0x9ce

pushlist 'fish' 0x9cf

endif

if not @findtype 0xdbf

headmsg 'get a pole'

stop

endif

while not @injournal 'biting here'

if @injournal 'monster'

headmsg 'MONSTER!' 33

headmsg 'MONSTER!' 27

headmsg 'MONSTER!' 33

headmsg 'MONSTER!' 27

getenemy 'gray' 'closest'

clearjournal

attack 'enemy'

pause 2000

while @findobject 'enemy'

if @inrange 'enemy' 4

@autotargetenemy

useskill 'peacemaking'

endif

endwhile

pause 6000

endif

@usetype 0xdbf

waitfortarget 2000

targettileoffset! -4 -4 -3

pause 9000

if @injournal 'monster'

replay

endif

@usetype 0xdbf

waitfortarget 2000

targettileoffset! -4 4 -3

pause 9000

if @injournal 'monster'

replay

endif

@usetype 0xdbf

waitfortarget 2000

targettileoffset! 4 -4 -3

pause 9000

if @injournal 'monster'

replay

endif

@usetype 0xdbf

waitfortarget 2000

targettileoffset! 4 4 -3

pause 9000

if @injournal 'monster'

replay

endif

endwhile

if @findtype 0x9cc 0x58c

ignoreobject 'found'

endif

for 0 to 'fish'

while @findtype 'fish[]' 'any' 'backpack'

usetype! 0xf52

waitfortarget 1000

target! 'found'

pause 1000

endwhile

endfor

for 15

msg 'forward one'

pause 2000

endfor

clearjournal
 

VeritesZen

Novice
Here is the macro I used to use on a different server. I vaguely remember this server having different rules as far as targettileoffset and fishing pole graphicid are concerned. You might need to tweak it a bit.

Deffinetly a start in the right direction! Thanks alot, I'll try and tweek it...
 
Top