Difference between revisions of "Script Function: Q4RE"

From Ultima Online: The Second Age
Jump to: navigation, search
(Created page with " <span style="color:#0000FF">function</span> <span style="color:#0000FF">string</span> Q4RE(<span style="color:#0000FF">obj</span> player) { <span style="color:#0000FF"...")
 
(No difference)

Latest revision as of 15:12, 12 October 2018

 function string Q4RE(obj player)
 {
   string name;
   if (hasObjVar(player, "origName"))
   {
     name = getObjVar(player, "origName");
   }
   else
   {
     name = getName(player);
   }
   return (name);
 }