Difference between revisions of "Script Function: Q50C"

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

Latest revision as of 15:20, 12 October 2018

 function int Q50C(obj it)
 {
   if (isNPC(it))
   {
     switch (getObjType(it))
     {
     case 0x46
     case 0x47
     case 0x48
     case 0x4B
     case 0x4C
     case 0x50
     case 0x51
     case 0x55
     case 0x56
     case 0x57
     case 0x5F
     case 0xCE
     case 0x03E2
     case 0x023D
     case 0xD2
     case 0xDA
     case 0xDB
       return (0x01);
       break;
     }
   }
   return (0x00);
 }