ScriptUO

Scripting Resources & Utilities => UOSteam => Topic started by: lordwolfx on January 24, 2016, 01:41:51 PM

Title: Spawner Bot
Post by: lordwolfx on January 24, 2016, 01:41:51 PM
This script is setup to have multiple accounts follow your main guy around at spawns using the built in "following" UO Feature.

Things id like to add to this script -
animate dead every so many seconds (any idea how i could do this? Cant get steam to target corpses at all)
cross cures,
arch cure on lethal or deadly poison,
Harmspam if target range 1-2 (already have this, just haven't implemented)


Spoiler: show
if poisoned 'self'
  cast "Cure" 'self'
endif
if hits < 100
  cast "Heal" 'self'
endif
if followers < 4
  cast "Energy Vortex"
  pause 2500
  targettileoffset (0 0 0)
  pause 350
else
  @getenemy 'enemy' 'gray' 'criminal' 'closest'
  if @inrange 'enemy' '10'
    cast 'Lightning' 'enemy'
  endif
  pause 350
endif
Title: Re: Spawner Bot
Post by: Khameleon on January 24, 2016, 05:03:19 PM
this is some good stuff. i'm just getting into uosteam a bit late..

I need to learn how some of this stuff works