Difference between revisions of "Script Function: Q5RA"

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> Q5RA(<span style="color:#0000FF">obj</span> it, <span style="color:#0000FF">int</span> st...")
 
(No difference)

Latest revision as of 16:29, 12 October 2018

 function void Q5RA(obj it, int status)
 {
   int newType = 0x1ECD;
   if (status)
   {
     newType = 0x1ED0;
   }
   if (getObjType(it) != newType)
   {
     setType(it, newType);
   }
   return ();
 }