-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.js
More file actions
20 lines (16 loc) · 867 Bytes
/
settings.js
File metadata and controls
20 lines (16 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function Settings() {
// You can request a Bot token by starting a telegram conversation with @BotFather
// After setup of your bot, send a first message to your own raidbot to get your personal user id.
// This user ID we'll use to send message to your Telegram account when a raid lobby is filling up.
this.telegramUserID = "436472740";
this.telegramBotID = "406473525:AAHahtehZByksU07zAsY5_qFTEJ7296O6g8";
// Be sure to add your personal PTC username, password and Bossland hashingKey here
// Hashing keys can be purchased through https://www.bossland.shop/products/hashing-service-150-rpm
this.ptcUsername = "pokemonsterbe69";
this.ptcPassword = "Azerty123$$$";
this.hashingKey = "1S1V8R0B9H5Q4K6O3B0U";
//Set your start coordinates
this.lat = 51.2251687;
this.long = 4.4082454;
}
module.exports = Settings;