Difference between revisions of "Script Function: Q4LJ"

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> Q4LJ(<span style="color:#0000FF">obj</span> pet) { <span style="color:#0000FF">if</...")
(No difference)

Revision as of 04:27, 12 October 2018

 function void Q4LJ(obj pet)
 {
   if (isPet(pet))
   {
     Q4XR();
     sfx(getLocation(pet), petAckSfx, 0x00);
   }
   else
   {
     bark(pet, "Very well.");
   }
   return;
 }