Difference between revisions of "Script: Des1 ankh tele 2"
From Ultima Online: The Second Age
(Created page with " <span style="color:#0000FF">inherits</span> globals; <span style="color:#0000FF">trigger</span> use { <span style="color:#0000FF">loc</span> toLocation = 0x1581, 0x...") |
(No difference)
|
Revision as of 22:48, 5 October 2018
inherits globals;
trigger use { loc toLocation = 0x1581, 0x0271, 0x1E; if (!hasObjVar(this, "working")) { setObjVar(this, "working", 0x01); setType(this, 0x1091); callback(this, 0x03, 0x24); doLocAnimation(getLocation(user), 0x373A, 0x01, 0x18, 0x00, 0x00); doLocAnimation(toLocation, 0x373A, 0x01, 0x18, 0x00, 0x00); if (!teleport(user, toLocation)) { return (0x01); } } return (0x00); }
trigger callback(0x24) { if (hasObjVar(this, "working")) { removeObjVar(this, "working"); setType(this, 0x1092); } return (0x00); }