HitlistChoose() public method

public HitlistChoose ( ) : uint
return uint
Ejemplo n.º 1
0
        /// <summary>
        /// Set the specified variable to a random entry from the selected hitlist.
        /// </summary>
        public static HITResult SmartChoose(HITThread thread)
        {
            var dest = thread.ReadByte();

            thread.WriteVar(dest, (int)thread.HitlistChoose());
            return(HITResult.CONTINUE);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Set the specified variable to a random entry from the selected hitlist.
 /// </summary>
 public static HITResult SmartChoose(HITThread thread)
 {
     var dest = thread.ReadByte();
     thread.WriteVar(dest, (int)thread.HitlistChoose());
     return HITResult.CONTINUE;
 }