-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathconfig.sample.js
43 lines (32 loc) · 1.56 KB
/
config.sample.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// IGNORE THESE
var config = {};
config.account = {};
// END OF IGNORE
// 0 = Shows small amount of logs | 1 = Shows default logs | 2 = Shows most logs
config.verbosityLevel = 1;
// Useragent the bot will use
config.userAgent = 'agario-feeder-bot';
// the feederServer connects your node script with your browser (mouse coordinates & commands)
// you can use the public server or run your own node server/server.js
// if you are new just use the free public server ws://104.236.100.252:8081
config.feederServer = "ws://104.236.100.252:8081";
config.serverPort = 8081; // optional: setting only used if you run your own feederServer - it will run on this port
config.client_uuid = "YOUR_UUID"; // after you install the userscript press F12 and search for a debug msg on the console
// Location of your proxy files with HTTP proxies (Sock proxies not supported yet!)
config.proxies = "proxy.txt";
config.botsPerIp = 1;
config.onboardingTimer = 5000;
// Maximum number of bots to load
config.maxBots = 128;
config.useRandomSkinName = true; // Set to true to use random name
config.useStaticName = "AgarioFeederBot"; // If above is false, us this skin name
// The bot can have different AI modes:
// * default Bot will follow your mouse and listen to SPlit and eject commands
// * blind Bot will just know your ball id and will try to find you and run into you
config.botMode = "default";
// Edit this value so bots collect mass before coming towards the player
config.minimumMassBeforeFeed = 0;
config.enableSaveMoveTo = false;
// IGNORE THIS
module.exports = config;
// END OF IGNORE