Script: Wearinvis

From Ultima Online: The Second Age
Jump to: navigation, search
inherits spelskil;
trigger creation
{
  shortcallback(this, 0x01, 0x2F);
  return (0x01);
}
trigger callback(0x2F)
{
  int Q54U;
  int Q4Q1 = getResource(Q54U, this, "magic", 0x03, 0x02);
  int charges = Q54U / 0x03;
  setObjVar(this, "charges", charges);
  return (0x01);
}
function int Q53Z()
{
  int charges = getObjVar(this, "charges");
  returnResourcesToBank(this, 0x03, "magic");
  if (charges <= 0x00)
  {
    removeObjVar(this, "charges");
  }
  else
  {
    setObjVar(this, "charges", charges - 0x01);
  }
  return (charges);
}
trigger equip
{
  if (Q53Z())
  {
    setInvisible(equippedon, 0x01);
  }
  else
  {
    detachScript(this, "wearinvis");
  }
  return (0x01);
}
trigger unequip
{
  setInvisible(unequippedfrom, 0x00);
  return (0x01);
}
trigger time("min:*0")
{
  if (isEquipped(this))
  {
    if (!Q53Z())
    {
      setInvisible(containedBy(this), 0x00);
      detachScript(this, "wearinvis");
    }
  }
  return (0x01);
}