I would like to know how to, (In VBScript) generate a random number that would not be the same on a different computer, and then use that number and perhaps some If-Statements so that one of 10 possible options can be activated, eg.
If (A random number between 1 - 10, eg. 2) then (Continue on part of script then wscript.quit)
Else if (A different number, eg. 7) then (continue on to different part of script then wscript.quit)
etc.
So that I would have 10 different options for the script to choose randomly.
Is this possible? If so then would someone be able to compile an example of this so I can put my own script in and use it? Thanks to any answers!
The Rnd function returns a random number. The number is always less than 1 but greater or equal to 0.
Example. This example uses the Rnd function to generate a random integer value from 1 to 6. Dim MyValue As Integer MyValue = Int((6 * Rnd) + 1) ' Generate random value between 1 and 6.
You need randomize
and rnd
.int(rnd * n) + 1
evaluates to an integer number between 1 and n.
And you might use select case...
here as well, try this:
dim r
randomize
r = int(rnd*10) + 1
select case r
case 2
'...
case 7
'...
end select
And If you would rand from min to max:
Dim max,min,rand
max=54
min=23
Randomize
rand = Int((max-min+1)*Rnd+min)
WScript.Echo rand
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With