-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.txt
111 lines (77 loc) · 2.79 KB
/
help.txt
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
Overview
-----------------------------
This is a console application made in Python used to track and log data on names of players who join and leave any
given server (as specified in config file)
Commands
-----------------------------
`````````````````````````````
Configuration commands
`````````````````````````````
addplayer
-append additional players to checking list
delplayer
-delete specified player from checking list
addserver
-add server IP to server list
delserver
-delete server IP from server list
interval
-change config interval
target
-change the size of online players in given server list to ping user for (default value is 0, 0 is off)
newconfig
-reinitialize, and create new config file. First time users enter this command to start
config
-displays current config (players list, and server IPs)
`````````````````````````````
application commands
`````````````````````````````
start
-start checker
stop
-stop checker
exit
-exit application
logall
-Print and log all players who log onto the server (no notification sound if player not on checking list)
logger
-toggle logger on and off. Creates txt file if no log file exists
newlog
-start a new log file
reload
-reloads the config.json file
online
-print current list of players online
help
-displays command list
`````````````````````````````
Discord Bot Commands (Default prefix is "+". It can be changed typing "prefix " followed by symbol)
`````````````````````````````
{prefix}ping
-Ping the bot to see if it is running.
{prefix}setchannel
-Set the current channel for logging
{prefix}prefix
-Change the prefix of bot commands within these range of characters (can only be 1 character long): *&^%$#@!+_=|?><.:;~
{prefix}config
-Prints the list of servers and players specified in the config file.
{prefix}start
-start checker
{prefix}stop
-stop checker
{prefix}logall
-Print and log all players who log onto the server (no notification sound if player not on checking list)
{prefix}online
-print current list of players online
{prefix}addserver {server}
-Add server to config. Type the IP of the server following the "addserver" command. Default target set to 10. (ex: +addserver server1.net)
{prefix}delserver {server}
-Delete server from config. Type the IP of the server following the "delserver" command. (ex: +delserver server1.net)
{prefix}addplayer {player}
-Add player to config. Type the in-game player name following the "addplayer" command. (ex: +addplayer player1)
{prefix}delplayer {player}
-Delete a player from the config. Type the in-game player name following the "delplayer" command. (ex: +delplayer player1)
---------------------
made by darrxh
source repo: github.com/darrxh/Minebell
---------------------