Difference between revisions of "Script: Killthis"

From Ultima Online: The Second Age
Jump to: navigation, search
(Created page with " <span style="color:#0000FF">trigger</span> use { <span style="color:#FF0000;font-weight:bold">bark</span>(this, <span style="color:#800000">"who do I kill???"</s...")
 
(No difference)

Latest revision as of 20:11, 5 October 2018

trigger use
{
  bark(this, "who do I kill???");
  targetObj(user, this);
  return (0x00);
}
trigger targetobj
{
  attack(this, usedon);
  attack(usedon, this);
  bark(this, "Attack!");
  bark(usedon, "Hurrah! Let's kill!");
  return (0x00);
}