static public int GetNpcCooldown(IntPtr l)
 {
     try {
         GameFramework.PluginFramework self = (GameFramework.PluginFramework)checkSelf(l);
         System.Int32 a1;
         checkType(l, 2, out a1);
         System.Single a2;
         System.Single a3;
         var           ret = self.GetNpcCooldown(a1, out a2, out a3);
         pushValue(l, true);
         pushValue(l, ret);
         pushValue(l, a2);
         pushValue(l, a3);
         return(4);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }