Script Function: Q43T

From Ultima Online: The Second Age
Revision as of 23:12, 11 October 2018 by Grimoric (talk | contribs) (Created page with " <span style="color:#0000FF">function</span> <span style="color:#0000FF">int</span> Q43T(<span style="color:#0000FF">obj</span> user, <span style="color:#0000FF">obj</span> u...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
 function int Q43T(obj user, obj usedon)
 {
   if (usedon == NULL())
   {
     return (0x00);
   }
   if ((containedBy(usedon) == NULL()) && (canSeeObj(user, usedon) != 0x01))
   {
     bark(user, "I cannot see that object.");
     return (0x00);
   }
   if (isMobile(usedon))
   {
     bark(user, "I cannot recall from that object.");
     return (0x00);
   }
   if (!hasObjVar(usedon, "markLoc"))
   {
     bark(user, "I cannot recall from that object.");
     return (0x00);
   }
   return (0x01);
 }