Script: Gameboard

From Ultima Online: The Second Age
Revision as of 22:50, 5 October 2018 by Grimoric (talk | contribs) (Created page with " <span style="color:#0000FF">trigger</span> use { <span style="color:#0000FF">if</span> (<span style="color:#FF0000;font-weight:bold">containedBy</span>(th...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
trigger use
{
  if (containedBy(this) != NULL())
  {
    destroyContents(this);
    return (0x00);
  }
  return (0x01);
}
trigger wasdropped
{
  if (containedBy(this) != NULL())
  {
    destroyContents(this);
  }
  return (0x01);
}
trigger objectloaded
{
  if (containedBy(this) != NULL())
  {
    destroyContents(this);
  }
  return (0x01);
}