2024-10-17 11:27:40 +08:00
|
|
|
function getRandomInt(min, max) {
|
|
|
|
min = Math.ceil(min);
|
|
|
|
max = Math.floor(max);
|
|
|
|
return Math.floor(Math.random() * (max - min)) + min;
|
|
|
|
}
|
|
|
|
|
2024-03-17 21:58:42 +08:00
|
|
|
module.exports = {
|
|
|
|
accountName: 'accountName',
|
|
|
|
password: 'password',
|
2024-10-17 11:27:40 +08:00
|
|
|
logonID: getRandomInt(1000000, 999999999),
|
|
|
|
steamID: "xxxxxxxxxx",
|
|
|
|
chat: false,
|
2024-03-17 21:58:42 +08:00
|
|
|
};
|