steam-chat/config.example.js
2024-10-17 11:27:40 +08:00

14 lines
319 B
JavaScript

function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min)) + min;
}
module.exports = {
accountName: 'accountName',
password: 'password',
logonID: getRandomInt(1000000, 999999999),
steamID: "xxxxxxxxxx",
chat: false,
};