Difference between revisions of "Script: Dramaticentrance"

From Ultima Online: The Second Age
Jump to: navigation, search
(Created page with " <span style="color:#0000FF">inherits</span> sndfx; <span style="color:#0000FF">member</span> <span style="color:#0000FF">obj</span> Q62D; <span style="color:#0000FF">...")
(No difference)

Revision as of 22:39, 5 October 2018

inherits sndfx;
member obj Q62D;
trigger use
{
  doLocAnimation(getLocation(user), 0x3709, 0x0A, 0x1E, 0x00, 0x00);
  sfx(getLocation(user), 0x54, 0x05);
  shortcallback(this, 0x04, 0x41);
  Q62D = user;
  return (0x00);
}
trigger callback(0x41)
{
  setInvisible(Q62D, 0x00);
  int Q4Q1 = teleport(Q62D, getLocation(Q62D));
  return (0x00);
}