Page 1 of 1

UOS Fishing Giant Ginormous stash notes.

Posted: Fri Apr 08, 2022 3:32 pm
by Turnabout
Ok the main objective of this macro is to help player who have a druid spell book to fish hard hittimg Fungal Lurkers from high level stash notes. Those lurkers can do a vicious amont of damage, in some cases one hitting a buffed full relayer build with 680+ HP.

The idea is simple: cast restorative soil, fish for chest 2 times, recast restorative soil. If a Lurker kills you, step on restorative soil and resurrect your chart without the need to do a long journey to an ankh. This is really helpful in Felucca where healers and ankhs are harder to find.

Now the alias "fishingpole" is updated autmatically if you have a fishing pole with you (any color/material fishing pole).

Code: Select all

//umount if mounted
if mounted self
  useobject self
  pause 600
endif
clearjournal
//unsetalias if no fishing pole found
if not findtype 0xdc0 any backpack and not findtype 0xdc0 any righthand
  unsetalias "fishingpole"
endif
//setalias fishing pole
if not findalias "fishingpole"
  pause 1000
  if findtype 0xdc0 any self or findtype 0xdc0 any backpack
    setalias "fishingpole" found
  else
    msg "you need a fishing pole"
    stop
  endif
endif
//equip fishing pole
if not findobject "fishingpole" any 1
  clearhands both
  pause 1000
  equipitem fishingpole 1
  pause 600
endif
//fish current tile
while not injournal "You fished up a Wooden Chest"
  pause 600
  msg "[cs restorativesoil"
  pause 4000
  targettile "current"
  pause 1000
  @canceltarget
  for 2
    useobject "fishingpole"
    waitfortarget 15000
    //  @canceltarget
    targettile "current"
    @canceltarget
    pause 8000
  endfor
endwhile

Re: UOS Fishing Giant Ginormous stash notes.

Posted: Sat Apr 09, 2022 1:19 am
by culichi
thanks for the script