I found this script:
At NTBot
But apparently the manager don't use this script to generate the room name, I've tried this:
Some idea how I can select my own room name sufixes?
I need it to create rooms like nameNN
where NN = numbers...
More details:
http://www.blizzsector.co/f16/d2nt-any-i...post487865
Thanks
Code:
function getRandomString(_length)
{
_retString = "";
_charSet = "0123456789abcdefghijklmnopqrstuvwxyz";
while(_length--)
{
_retString += _charSet.charAt(Random(0, _charSet.length-1));
Delay(1);
}
return _retString;
}
But apparently the manager don't use this script to generate the room name, I've tried this:
Code:
function getRandomString(_length)
{
_retString = "meme" + (Random(0, 30);
Delay(1);
}
return _retString;
}
I need it to create rooms like nameNN
where NN = numbers...
More details:
http://www.blizzsector.co/f16/d2nt-any-i...post487865
Thanks