Difference between revisions of "Script: Multiupdate"

From Ultima Online: The Second Age
Jump to: navigation, search
(Created page with " <span style="color:#0000FF">inherits</span> globals; <span style="color:#0000FF">trigger</span> creation { multiCompSetSendSlave|<span style="color:#FF0000;font-w...")
(No difference)

Revision as of 19:33, 5 October 2018

inherits globals;
trigger creation
{
  multiCompSetSendSlave(this, 0x01);
  shortCallback(this, 0x01, 0x37);
  return (0x01);
}
trigger callback(0x37)
{
  int Q5NC = teleport(this, getLocation(this));
  detachScript(this, "multiupdate");
  return (0x01);
}