Difference between revisions of "Script: Daemon"

From Ultima Online: The Second Age
Jump to: navigation, search
(Created page with " <span style="color:#0000FF">trigger</span> enterrange(0x08) { <span style="color:#0000FF">if</span> (isHuman|<span style="color:#FF0000;font-weight:bold">isHuman</span>...")
 
(No difference)

Latest revision as of 23:40, 5 October 2018

trigger enterrange(0x08)
{
  if (isHuman(target))
  {
    if (!isDead(target))
    {
      attack(this, target);
    }
  }
  return (0x01);
}