uos 4x4 fishing macro

Share your guides, how-tos, FAQs, and so forth. This is not for support -- post questions in General Discussion.
Post Reply
User avatar
Amish Hammer
Posts: 1509
Location: Philly

uos 4x4 fishing macro

Post by Amish Hammer »

can anyone help me make a 4x4 fishing macro in uos? I do have one that I use in easyuo but the its timing is wrong, and a couple of other things just seem to be broken about it.
Discord: Amish#1299
Image
User avatar
The Silvertiger
Posts: 4469

Re: uos 4x4 fishing macro

Post by The Silvertiger »

Never forget June 4th 1989!
Selling List & Vendor

"Screenshots will never be used as evidence but more of a reference tool for us to help in our investigations."
Frasier likes this.
Top
Haswell
Posts: 44

Re: uos 4x4 fishing macro

Post by Haswell »

A long time ago I've helped someone building a fishing macro, not sure if that would help:

Code: Select all

if not @findalias 'trash' 
  if @findtype 0xe76 0 'backpack'
    setalias 'trash' 'found'
  else
    sysmsg 'Out of trash bags!' 25
    stop
  endif
endif
if not @listexists 'junk'
  createlist 'junk'
  pushlist 'junk' 0x9cc //fish
  pushlist 'junk' 0x9cf // fish
  pushlist 'junk' 0x9cd // fish
  pushlist 'junk' 0x9ce // fish
  pushlist 'junk' 0x170f // shoes
  pushlist 'junk' 0x170d // sandals
  pushlist 'junk' 0x170b // boots
  pushlist 'junk' 0x1711 // tigh boots
  pushlist 'junk' 0xdd6 // rare fish
endif
@createlist 'commands'
if @list 'commands' == 0
  pushlist 'commands' 'forward one'
  pushlist 'commands' 'right one'
  pushlist 'commands' 'back one'
  pushlist 'commands' 'left one'
endif
for 0 to 14
  usetype! 0xdbf
  waitfortarget 15000
  targettileoffset 1 0 0
  pause 10000
  msg 'commands[0]'
  pause 1000
  for 0 to 'junk'
    while @findtype 'junk[]' 'any' 'backpack' 'any' 0
      @moveitem 'found' 'trash'
      pause 1000
    endwhile
  endfor
  if @contents 'backpack' == 125 or weight >= 350
    @moveitemoffset 'trash' 'ground' 0 -1 0
    @unsetalias 'trash'
    break
  endif
endfor
poplist 'commands' 'front'
Post Reply