Difference between revisions of "Script: Floor crumble"

From Ultima Online: The Second Age
Jump to: navigation, search
(Created page with " <span style="color:#0000FF">trigger</span> enterrange(0x00) { <span style="color:#0000FF">loc</span> Q648 = 0x1450, 0x028C, 0x00; setType|<span style="color:#FF0000;...")
(No difference)

Revision as of 21:53, 5 October 2018

trigger enterrange(0x00)
{
  loc Q648 = 0x1450, 0x028C, 0x00;
  setType(this, 0x11C0);
  callback(this, 0x01, 0x01);
  if (!teleport(target, Q648))
  {
    return (0x00);
  }
  return (0x01);
}
trigger callback(0x01)
{
  setType(this, 0x11BF);
  return (0x00);
}