Script Function: Deactivate

From Ultima Online: The Second Age
Revision as of 04:03, 12 October 2018 by Grimoric (talk | contribs) (Created page with " <span style="color:#0000FF">function</span> <span style="color:#0000FF">void</span> deactivate(<span style="color:#0000FF">obj</span> this) { <span style="color:#0000F...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
 function void deactivate(obj this)
 {
   if (hasObjVar(this, "_objectId") && hasObjVar(this, "_objectType"))
   {
     obj objectId = getobjvar_obj(this, "_objectId");
     int objectType = getobjvar_int(this, "_objectType");
     deleteIfValid(objectId, objectType);
     removeObjVar(this, "_objectId");
     processTriggerCmds(this, "d");
   }
   return;
 }