Difference between revisions of "Script Function: guildName"

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> guildName() { <span style="color:#0000FF">if</span> (!hasObjVar|<span style="co...")
(No difference)

Revision as of 03:47, 12 October 2018

 function string guildName()
 {
   if (!hasObjVar(this, "guildName"))
   {
     list args;
     message(this, "removedFromGuild", args);
     return ("");
   }
   string x = getObjVar(this, "guildName");
   return (x);
 }