Now Currently all i want to happen is have a betakey generated, have it Pop up to tell me key, then store it in an array which can be accessed to check if the beta key you input was correct. I asked my brother to help me out and he said there was some information he could show me to help me but he is at work and won't be off for another 8 hours so hopefully you guys could help me out.
The problem currently is just that it wont generate the key and print out what it generated and im not sure exactly why, This is the code i have for generating the key.
function BetaKeyGen(){
var Key = "";
var Possiblekey = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
var i;
for(i = 0; i < 10; i++){
Key += Possiblekey.charAt(Math.floor(Math.random()* Possiblekey.length + 1));
}
return print(Key);
}
So hopefully you guy can help me out, and sorry for the text being a bit bigger its just so hard to see when its that small.

New Topic/Question
Reply


MultiQuote






|