
BHT Smart Random
 
        
            
                This plugin generates non-repeating integers within a given range, and will cycle with a given threshold to not repeat within that threshold.
         
        
            Introduction
        
            
                The plugin takes a Start value, and an End value, and will produce a unique sequence of those numbers, without repeating. The range is inclusive, so if you specify a range of 1 to 5, you will get the numbers 1,2,3,4,5, in a random pattern.
            
                A Threshold value lets you configure how the cycle repeats when all of the numbers are used, and the sequence needs to continue/cycle. A Threshold=0 will completely ignore the previous sequence, so the numbers will be random within the same range again, but it is possible that the last number of the sequence may be the same as the first of the next. For example;  2,5,4,1,3 could be followed by 3,1,4,2,5. The value 3 will repeat because the sequence must be regenerated and no logic is applied to test the last value of the last sequence. 
                A Threshold=1, would guarantee that the first number of the next sequence would not be a 3, so there would not be a repeat immediately when the sequence restarts. Care is still required not to abuse the Threshold, as if it is too large (that is, greater than half the range), it is impossible to guarantee not repeating the same values.
            Supports the C2 Save/Load mechanism.
         
        
            Installing
        
            Drag the C2ADDON file onto the Construct GUI to install the plugin.
        
            Properties
        
            Start
        
            The start value of the range.
        
            End
        
            The end value of the range.
        
            Repeat threshold
        
        
            The threshold for not repeating the same values of the previous sequence.
        
            Expressions
        
            Next
        
        
            Returns the next random value in the sequence.
        
            Start
        
        
            Returns the start value of the range.
        
            End
        
        
            Returns the end value of the range.
        
            Threshold
        
        
            Returns the threshold for not repeating the same values of the previous sequence.
        
            Peek
        
        
            Returns the next random value in the sequence without removing it. Allows you to 'peek' at the next value.
        
            Actions
        
            Smart Random
        
            Randomize
        
            Re-randomizes the sequence. Repeats are ignored.
        
            New
        
            Create a new sequence by providing new values for Start, End, and Threshold. Repeats are ignored.
        
            Downloads