Script Function: Q5HG

From Ultima Online: The Second Age
Revision as of 11:08, 7 October 2018 by Grimoric (talk | contribs) (Created page with " <span style="color:#0000FF">function</span> <span style="color:#0000FF">int</span> Q5HG() { <span style="color:#0000FF">int</span> Q5SX = Q4SP|<span style="color:#2B...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
 function int Q5HG()
 {
   int Q5SX = Q4SP();
   int myAccount = getObjVar(this, <span style="color:#800000">"myAccount"</span>);
   myAccount = myAccount - Q5SX;
   if (myAccount < 0x00)
   {
     obj gold = Q64F(this, Q4SD(), 0x00 - myAccount);
     if (gold != NULL())
     {
       myAccount = myAccount + getQuantity(gold);
       deleteObject(gold);
     }
     if (myAccount < 0x00)
     {
       Q4DB();
       return (0x00);
     }
   }
   setObjVar(this, <span style="color:#800000">"myAccount"</span>, myAccount);
   return (0x01);
 }