Difference between revisions of "Script: Autobook"

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

Latest revision as of 01:20, 6 October 2018

trigger use
{
  if (!hasObjVar(this, "hasBeenSet"))
  {
    int Q60P = random(0x01, 0x1B);
    setROBookNum(this, Q60P);
    string Q636 = getROBookTitle(Q60P);
    setObjVar(this, "lookAtText", Q636);
    setObjVar(this, "hasBeenSet", 0x01);
  }
  return (0x01);
}