Difference between revisions of "Script Function: Lock it"
From Ultima Online: The Second Age
(Created page with " <span style="color:#0000FF">function</span> <span style="color:#0000FF">int</span> lock_it(<span style="color:#0000FF">obj</span> Q4XN, <span style="color:#0000FF">int</span...") |
(No difference)
|
Latest revision as of 10:06, 21 October 2018
function int lock_it(obj Q4XN, int start, int stop) { if (!hasObjVar(Q4XN, "isLocked")) { attachScript(Q4XN, "locked"); lockLevel = random(start, stop); setObjVar(Q4XN, "isLocked", lockLevel); setObjVar(Q4XN, "lockLevel", lockLevel); return (0x01); } return (0x00); }