22.08.2010, 02:27
I am working on a system so my server doesn't get brute forced.. again..
Here's the code I came up with, but it doesn't seem to be working.
Note: Print is there to be sure it's working.
Here's the code I came up with, but it doesn't seem to be working.
pawn Код:
new str[350];
new one0 = random(30);
new one1 = random(30);
new one2 = random(30);
new one3 = random(30);
new one4 = random(30);
new one5 = random(30);
new one6 = random(30);
new one7 = random(30);
new one8 = random(30);
new one9 = random(30);
format(str, sizeof(str), "%d-%d-%d-%d-%d-%d-%d-%d-%d-%d",one0,one1,one2,one3,one4,one5,one6,one7,one8,one9);
SendRconCommand(str);
print(str);

