UOS Fishing Giant Ginormous stash notes.

If you make a Client-side script you can publish it here for other players to use
Post Reply
User avatar
Turnabout
Elder Scribe
Posts: 117
Joined: Fri Dec 13, 2013 9:59 pm

UOS Fishing Giant Ginormous stash notes.

Post 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
Last edited by Turnabout on Wed Aug 10, 2022 11:13 pm, edited 1 time in total.
The Skilled Image.
culichi
Legendary Scribe
Posts: 577
Joined: Fri Aug 22, 2014 9:04 pm

Re: UOS Fishing Giant Ginormous stash notes.

Post by culichi »

thanks for the script
Post Reply