[UO Steam] Gargoyle Tools To Keys Filler.

If you make a Client-side script you can publish it here for other players to use
Post Reply
Stephen
Master Scribe
Posts: 52
Joined: Thu Mar 29, 2018 4:42 pm

[UO Steam] Gargoyle Tools To Keys Filler.

Post by Stephen »

This is exactly what it says. Fills gargyole tools to toolhouse. Searches any bags for easier setup in case of having loot bags or bags of holding. This will try to add 10 of each garg tool. (well really it just will scan over 10 times for each item to keep it neater for the actual functioning of it). If you plan to click before you had that many saved up you could delete some of the pushlist lines as it does 10 picks, then 10 next, then 10 next. won't change the speed much though.

Code: Select all

//Garg Tool Filler
// Fills Toolhouse with garg tools.
// 03/29/2018
//Made by Stephen
//Hit play can loop if want. setup for 10 of each to add per scan
//You can add or remove some from pushlist if u want if you want.
@removelist 'FillMeGargoyle'
if not listexists 'FillMeGargoyle'
  createlist 'FillMeGargoyle'
  pushlist 'FillMeGargoyle' 0xe86
  pushlist 'FillMeGargoyle' 0xe86
  pushlist 'FillMeGargoyle' 0xe86
  pushlist 'FillMeGargoyle' 0xe86
  pushlist 'FillMeGargoyle' 0xe86
  pushlist 'FillMeGargoyle' 0xe86
  pushlist 'FillMeGargoyle' 0xe86
  pushlist 'FillMeGargoyle' 0xe86
  pushlist 'FillMeGargoyle' 0xe86
  pushlist 'FillMeGargoyle' 0xe86
  pushlist 'FillMeGargoyle' 0xf45
  pushlist 'FillMeGargoyle' 0xf45
  pushlist 'FillMeGargoyle' 0xf45
  pushlist 'FillMeGargoyle' 0xf45
  pushlist 'FillMeGargoyle' 0xf45
  pushlist 'FillMeGargoyle' 0xf45
  pushlist 'FillMeGargoyle' 0xf45
  pushlist 'FillMeGargoyle' 0xf45
  pushlist 'FillMeGargoyle' 0xf45
  pushlist 'FillMeGargoyle' 0xf45
  pushlist 'FillMeGargoyle' 0x13f6
  pushlist 'FillMeGargoyle' 0x13f6
  pushlist 'FillMeGargoyle' 0x13f6
  pushlist 'FillMeGargoyle' 0x13f6
  pushlist 'FillMeGargoyle' 0x13f6
  pushlist 'FillMeGargoyle' 0x13f6
  pushlist 'FillMeGargoyle' 0x13f6
  pushlist 'FillMeGargoyle' 0x13f6
  pushlist 'FillMeGargoyle' 0x13f6
  pushlist 'FillMeGargoyle' 0x13f6
endif
if not @findtype! '0x22c4' '69'
  sysmsg '*****No Tool House*****' '69'
  stop
elseif @findtype! '0x22c4' '69'
  @usetype! '0x22c4' '69'
  waitforgump 1513449091 15000
  replygump 0x5a356683 60026
  waitforgump 1513449091 15000
endif
for 0 to 'FillMeGargoyle'
  if @findtype! 'FillMeGargoyle[]' '2419'
    target! 'found'
    waitforgump 1513449091 15000
  endif
endfor
if not @findtype! 'FillMeGargoyle[]' '2419'
  sysmsg '*****No Garg Tools*****' '69'
  canceltarget
  replygump 0x5a356683 0
  stop
endif
Post Reply