Difference between revisions of "Script: Remreact"

From Ultima Online: The Second Age
Jump to: navigation, search
(Created page with " <span style="color:#0000FF">inherits</span> spelskil; <span style="color:#0000FF">trigger</span> callback(0x2F) { <span style="color:#0000FF">if</span> (hasScript...")
 
(No difference)

Latest revision as of 14:40, 5 October 2018

inherits spelskil;
trigger callback(0x2F)
{
  if (hasScript(this, "reaction"))
  {
    detachScript(this, "reaction");
  }
  else
  {
    debugMessage("ERROR - reactive armor remover: reaction already deleted.");
  }
  detachScript(this, "remreact");
  return (0x00);
}