Difference between revisions of "Script: Shipleftplank"
From Ultima Online: The Second Age
(Created page with " <span style="color:#0000FF">inherits</span> shipplank; <span style="color:#0000FF">trigger</span> creation { <span style="color:#0000FF">int</span> Q5NC = Q5S7|<s...") |
(No difference)
|
Latest revision as of 14:05, 5 October 2018
inherits shipplank;
trigger creation { int Q5NC = Q5S7(this, 0x01, "shipleftplank"); return (0x01); }
trigger enterrange(0x00) { return (Q5S5(0x01, this, target)); }
trigger ooruse { if (isDead(user)) { Q5RW(0x00, this, user); return (0x00); } int Q5NC = Q5SA(0x01, this, user); if (!Q5S7(this, 0x01, "shipleftplank")) { Q5S6(getMultiSlaveId(this)); } return (0x00); }
trigger use { if (isDead(user)) { Q5RW(0x00, this, user); return (0x00); } int Q5NC = Q5SA(0x01, this, user); if (!Q5S7(this, 0x01, "shipleftplank")) { Q5S6(getMultiSlaveId(this)); } return (0x01); }
trigger multirecycle { Q5RX(0x01, this, oldtype); return (0x01); }