Difference between revisions of "Script Function: Q4BT"

From Ultima Online: The Second Age
Jump to: navigation, search
(Created page with " <span style="color:#0000FF">function</span> <span style="color:#0000FF">int</span> Q4BT(<span style="color:#0000FF">obj</span> this, <span style="color:#0000FF">string</span...")
 
 
Line 19: Line 19:
 
     }
 
     }
 
     [[Engine Function:_setObjVar|<span style="color:#FF0000;font-weight:bold">setObjVar</span>]](this, <span style="color:#800000">"petFollow"</span>, 0x01);
 
     [[Engine Function:_setObjVar|<span style="color:#FF0000;font-weight:bold">setObjVar</span>]](this, <span style="color:#800000">"petFollow"</span>, 0x01);
     <span style="color:#0000FF">if</span> (![[isPet|<span style="color:#2B91AF">isPet</span>]](this))
+
     <span style="color:#0000FF">if</span> (![[Script_Function:_isPet|<span style="color:#2B91AF">isPet</span>]](this))
 
     {
 
     {
 
       [[Engine Function:_bark|<span style="color:#FF0000;font-weight:bold">bark</span>]](this, <span style="color:#800000">"Who shall I follow?"</span>);
 
       [[Engine Function:_bark|<span style="color:#FF0000;font-weight:bold">bark</span>]](this, <span style="color:#800000">"Who shall I follow?"</span>);

Latest revision as of 01:51, 21 October 2018

 function int Q4BT(obj this, string Q698, obj speaker, int Q4V9)
 {
   if (Q698 != "follow")
   {
     return (0x00);
   }
   if (Q4V9)
   {
     if (Q4BD(this, speaker))
     {
       if (Q4SC() > 0x00)
       {
         Q4LJ(this);
       }
       setObjVar(this, "petWhoFollow", speaker);
       followNpc(this, speaker, 0x00);
     }
     return (0x01);
   }
   setObjVar(this, "petFollow", 0x01);
   if (!isPet(this))
   {
     bark(this, "Who shall I follow?");
   }
   else
   {
     systemMessage(speaker, "Click on the person to follow.");
   }
   targetObj(speaker, this);
   return (0x01);
 }