Difference between revisions of "Script Function: Q65X"

From Ultima Online: The Second Age
Jump to: navigation, search
(Created page with " <span style="color:#0000FF">function</span> <span style="color:#0000FF">void</span> Q65X() { setDefaultReturn|<span style="color:#FF0000;font-weight:bold">setDefault...")
 
Line 3: Line 3:
 
     [[Engine Function:_setDefaultReturn|<span style="color:#FF0000;font-weight:bold">setDefaultReturn</span>]](0x01);
 
     [[Engine Function:_setDefaultReturn|<span style="color:#FF0000;font-weight:bold">setDefaultReturn</span>]](0x01);
 
     [[Script_Function:_Q42D|<span style="color:#2B91AF">Q42D</span>]](this, 0x00, 0x01);
 
     [[Script_Function:_Q42D|<span style="color:#2B91AF">Q42D</span>]](this, 0x00, 0x01);
 +
    <span style="color:#0000FF">return</span> ();
 +
  }
 +
 +
  <span style="color:#0000FF">function</span> <span style="color:#0000FF">void</span> Q65X()
 +
  {
 +
    [[Engine Function:_setDefaultReturn|<span style="color:#FF0000;font-weight:bold">setDefaultReturn</span>]](0x01);
 +
    [[Script_Function:_Q42D|<span style="color:#2B91AF">Q42D</span>]](this, 0x00, 0x00);
 +
    [[Engine Function:_handleHealthGain|<span style="color:#FF0000;font-weight:bold">handleHealthGain</span>]](this);
 
     <span style="color:#0000FF">return</span> ();
 
     <span style="color:#0000FF">return</span> ();
 
   }
 
   }

Revision as of 05:31, 10 October 2018

 function void Q65X()
 {
   setDefaultReturn(0x01);
   Q42D(this, 0x00, 0x01);
   return ();
 }
 function void Q65X()
 {
   setDefaultReturn(0x01);
   Q42D(this, 0x00, 0x00);
   handleHealthGain(this);
   return ();
 }