Script: Hidetrig

From Ultima Online: The Second Age
Revision as of 17:42, 19 October 2018 by Grimoric (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
inherits sk_table;
trigger callback(0x54)
{
  barkToHued(this, this, 0x22, "You are no longer hidden.");
  setInvisible(this, 0x00);
  detachScript(this, "hidetrig");
  deleteObject(this);
  return (0x00);
}
trigger message("canUseSkill")
{
  callback(this, 0x00, 0x54);
  return (0x01);
}