-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
109 lines (109 loc) · 2.7 KB
/
config.py
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
#Your Oauth token
OAUTH_TOKEN = ""
#Your Username.
Username = ""
#What Channels to join.
Channels = ["DeemonRider",]
#User The bot should Listen to.
Pokemonbot = "PokemonCommunityGame"
#Telegram Bot Token
UseTelegram = True
TelegramBotToken = ""
TelegramChatID = 1000000
#IRC Server Connection
irc_server = "irc.chat.twitch.tv"
irc_port = 6697
#Discord Stuff
BotDiscord = True #BANNABLE BY DISCORD!
DiscordDate = "2025-01-18"
DiscordChannel = 800433942695247872
DiscordToken = ""
DiscordUsername = "" #Username Without the @
DiscordMessage = "!Pokeda"
DiscordTimeframe = "20:00-23:00"
#Auto Catcher switch (True/False)
AutoCatch = True
#use Pokeballs if no ball is spesified (True/False)
AutoBall = True
#Use Deemonrider Balls
UseRecommended = True
#What and How many Balls should be bought. Make i recommend Pokeballs. But you do you.
BallToBuy = "Pokeball"
HowMany = 10
#Codeword to Resume. Make shure the bot dosent type it itself! Dont use deemon emotes.
CodewordStop = "Banana"
CodewordStart = "Apple"
#Message or Emote it sends to Collect Coins
Emote = "deemon8Hype"
#Command or Emote to use to throw balls
CatchEmote = "deemon8Catch"
#Your money income per Houer, 800 is just a guess by me.
Income = 800
#The timeframe used to randomise the throws (in secounds)
RandomeFrom = 5
RandomeTo = 10
#How long it waits for a Timerball
TimerBallTime = 85
#Shows randome time in Messages True/False
ShowRandomeTime = True
#Randome miss chance in %. For example if you set it to 20 it misses 20% of the catch messages. It wont send an emote as well.
MissPercentage = 0
#Timeframes where the Bot sould run. With a sprinkle of randome time =)
timeframes = {
"Monday": {
"start": "07:00",
"end": "23:30",
"random_interval": {
"min": 15,
"max": 30
}
},
"Tuesday": {
"start": "07:00",
"end": "23:35",
"random_interval": {
"min": 15,
"max": 30
}
},
"Wednesday": {
"start": "07:00",
"end": "23:30",
"random_interval": {
"min": 15,
"max": 30
}
},
"Thursday": {
"start": "07:00",
"end": "23:30",
"random_interval": {
"min": 15,
"max": 30
}
},
"Friday": {
"start": "07:00",
"end": "23:30",
"random_interval": {
"min": 15,
"max": 30
}
},
"Saturday": {
"start": "07:00",
"end": "23:30",
"random_interval": {
"min": 15,
"max": 30
}
},
"Sunday": {
"start": "07:00",
"end": "23:30",
"random_interval": {
"min": 15,
"max": 30
}
}
}