Difference between revisions of "Script: Test callback"

From Ultima Online: The Second Age
Jump to: navigation, search
(Created page with " <span style="color:#0000FF">trigger</span> use { <span style="color:#FF0000;font-weight:bold">bark</span>(this, <span style="color:#800000">"I have been used."</...")
 
(No difference)

Latest revision as of 10:24, 5 October 2018

trigger use
{
  bark(this, "I have been used.");
  callback(this, 0x05, 0x01);
  return (0x00);
}
trigger callback(0x01)
{
  bark(this, "Five seconds have past since I have been used");
  return (0x00);
}