-
Notifications
You must be signed in to change notification settings - Fork 0
/
teke-bot.py
324 lines (256 loc) · 11.6 KB
/
teke-bot.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
# -*- coding: utf-8 -*-
# from googletrans import Translator
from google_trans_new import google_translator
import schedule
import aiml
import cleverbotfree
from gtts import gTTS
import config
from cogs.utils import database
from cogs.utils import frasesTeke
from cogs.utils.storyTeke import personas
from cogs.utils.text import *
from trading import signal
from discord.ext import commands
os.chdir(os.path.abspath(os.path.dirname(__file__)))
description = '''Yo soy el Teke Bot, amo y señor de este servidor.
Me apasiona el dinero, los cigarros y la violencia.
Lista de comandos:'''
# traductor = Translator()
traductor = google_translator()
# Load AIML kernel
# aiml_kernel = aiml.Kernel()
# aiml_kernel.learn('std-startup.xml')
# aiml_kernel.respond("LOAD AIML B")
# with open('bot.properties') as f:
# for line in f:
# parts = line.strip().split('=')
# key = parts[0]
# value = parts[1]
# aiml_kernel.setBotPredicate(key, value)
# print('\n\n\nTeke Seteado')
async def cleverbot(chat):
"""Example code using cleverbotfree async api."""
async with cleverbotfree.async_playwright() as p_w:
c_b = await cleverbotfree.CleverbotAsync(p_w)
respuesta = await c_b.single_exchange(chat)
await c_b.close()
return respuesta
emojis = {
#"suegro": '<:suegro:569392209422581761>',
#"otrosuegro": '<:suegro:569392209422581761>',
"lol_gatito": '😹',
"surf": '🏄',
"lol": '😂',
"fuego": '🔥',
"cien": '💯',
"no": '<:no:528723240944664586>'
}
INITIAL_EXTENSIONS = [
'cogs.music',
'cogs.rpg',
'cogs.lol',
'cogs.admin'
]
class TekeBot(commands.Bot):
def __init__(self):
super().__init__(command_prefix='?', description=description)
for extension in INITIAL_EXTENSIONS:
try:
self.load_extension(extension)
except Exception as e:
print('Failed to load extension {}\n{}: {}'.format(
extension, type(e).__name__, e))
async def on_ready(self):
print('Logged in as')
print(self.user)
print(self.user.name)
print(self.user.id)
print('------')
self.TRISTE = 1
self.TEKE = 0
self.MAIN_SERVER = self.get_guild(config.main_server_id)
self.MAIN_CHANNEL = self.get_channel(config.main_channel_id)
# schedule.every().day.at("00:01").do(self.saludar_cumples)
# create the background task and run it in the background
self.bg_task = self.loop.create_task(self.my_background_task())
async def on_message(self, message):
await self.process_commands(message)
# don't respond to ourselves
# if message.author != bot.user:
# print("Mensaje recibido: "+ str(message.content))
# return
texto_mensaje = message.content.lower().strip().replace('<@485636016175054890>', 'teke')
if '\'tts ' in texto_mensaje:
await message.delete()
return
if str(message.author) in frasesTeke.respuestas_especificas.keys():
if random.randint(0, 17) == 0:
await teke_typing(message.channel)
await message.channel.send(random.choice(frasesTeke.respuestas_especificas[str(message.author)]))
if message.author != self.user:
texto_mensaje_noemoji = remove_emojis(texto_mensaje)
texto_mensaje_noemoji = re.sub(r'<:[^()]*>', '', texto_mensaje_noemoji).strip()
try: #reemplazo los ids por los nombres de usuario
persona_citada = re.search(r'<@(.*)>', texto_mensaje_noemoji).group(1)
# texto_mensaje_noemoji = re.sub(r'<@[^()]*>', database.get_campo(persona_citada.strip(), 'name'), texto_mensaje_noemoji).strip()
except:
pass
if texto_mensaje_noemoji != '' and texto_mensaje_noemoji[-1] == '?':
if 'teke' in texto_mensaje_noemoji or random.randint(0, 3) == 0 or self.TEKE:
respuesta = ""
if 'quien' in texto_mensaje_noemoji and 'panchi' not in texto_mensaje_noemoji:
respuesta = random.choice(personas)
if 'a quien' in texto_mensaje_noemoji:
respuesta = "A " + respuesta
if not any(palabra in texto_mensaje_noemoji for palabra in ['como ', 'cuando ', 'por que ', 'cual ', 'quien ', 'que ', 'donde ']):
await teke_typing(message.channel)
respuesta = random.choice(frasesTeke.respuestas_teke)
if respuesta:
await message.channel.send(respuesta)
if random.randint(0, 9) == 0:
emoji_random = random.choice(list(emojis.values()))
await message.add_reaction(emoji_random)
if 'teke' in texto_mensaje:
self.TEKE = 5
# database.teke_cont_add(message.author.id, texto_mensaje.count('teke'))
if self.TEKE and texto_mensaje_noemoji:
self.TEKE = self.TEKE - 1
aiml_message = traductor.translate(texto_mensaje_noemoji, lang_src='es', lang_tgt='en')
print('\taiml_message = {}'.format(aiml_message))
aiml_response = await cleverbot(aiml_message)
print('\taiml_response = {}'.format(aiml_response))
aiml_response_es = traductor.translate(aiml_response, lang_src='en', lang_tgt='es')
print('\taiml_response_es = {}'.format(aiml_response_es))
await teke_typing(message.channel)
await message.channel.send(aiml_response_es)
await self.teke_karma(message)
if any(palabra in texto_mensaje for palabra in ['culo', 'caca']):
#if 'culo' in texto_mensaje:
# database.social_add(message.author.id, -10)
if self.TRISTE >= 1:
await self.triste_estado(message)
else:
print("no puedo estar mas triste")
# if str(message.author) in config.enemigos:
# if random.randint(0, 2) == 0 and not self.TRISTE:
# await self.enojado_estado(message)
# database.social_add(message.author.id, -1)
# return
# if database.check_mujer(message.author.id):
# if random.randint(0, 3) == 0:
# await self.romantico_estado(message)
# database.social_add(message.author.id, 2)
if random.randint(0, 11) == 0:
await teke_typing(message.channel)
await message.channel.send(random.choice(frasesTeke.frases))
#Dejar este if al final
if message.author == self.user:
def check(reaction, user):
return str(reaction.emoji) == '👍'
try:
reaction, user = await self.wait_for('reaction_add', timeout=30.0, check=check)
except asyncio.TimeoutError:
# await message.channel.send('👎')
return
else:
f = discord.File('/home/panchi/Pictures/ben10/suegro.jpeg', filename='SUEGRO.png')
await message.channel.send(file=f, delete_after=2)
async def on_member_join(self, member: discord.Member):
await self.MAIN_CHANNEL.send("Quien es este payaso ???")
async def teke_karma(self, message):
amor = [
'te quiero',
'lindo',
'beso',
'lol',
'pokemon',
'jaj',
'chupar',
'comida',
'fachero',
'😍', '❤', '😻',
'amo'
]
odio = [
'puto',
'gordo',
'forro',
'gay',
'diana',
'linux',
'play 4',
'report',
'pelotudo',
'cerra'
]
# if any(palabra in message.content.lower() for palabra in amor):
# database.social_add(message.author.id, round(random.uniform(1, 3), 2))
# if database.check_mujer(message.author.id):
# database.social_add(message.author.id, 2)
# #print(respuesta_amor)
# elif database.get_campo(message.author.id, 'social') >= 75.0 :
# database.social_add(message.author.id, 2)
# #print(respuesta_gay)
#
# if any(palabra in message.content.lower() for palabra in odio):
# database.social_add(message.author.id, -2)
async def triste_estado(self, message):
print("Estoy en Triste")
self.TRISTE -= 1
await self.change_presence(activity=discord.Game(name='Deprimido'))
await message.channel.send(random.choice(
['Ya me puse sad', 'Eso ultimo que dijiste me hizo acordar a algo', 'Estoy triste',
'Aww shit, here we go again', 'Hay muchas cosas que pienso pero nunca digo, por ejemplo:']))
for x in range(1, random.randint(3, 5)):
print("Triste: " + str(x))
await message.channel.send(random.choice(frasesTeke.deprimido))
time.sleep(4)
await asyncio.sleep(30)
self.TRISTE = 1
print("Salgo de Triste")
await self.change_presence(status=discord.Status.online)
async def enojado_estado(self, message):
await self.change_presence(activity=discord.Game(name='Enojado'))
await message.channel.send(random.choice(frasesTeke.enojado))
await asyncio.sleep(30)
await self.change_presence(status=discord.Status.online)
async def romantico_estado(self, message):
await self.change_presence(activity=discord.Game(name='Romantico'))
await message.channel.send(random.choice(frasesTeke.romantico))
await asyncio.sleep(30)
await self.change_presence(status=discord.Status.online)
def saludar_cumples(self):
async def mandar_mensajes(id: int):
user = self.MAIN_SERVER.get_member(id)
await self.MAIN_CHANNEL.send("@everyone\nHoy es el cumple de {}!!! 💕🎊🎉".format(user.mention))
await user.send("Hola {}, como estas?\nNo creas que lo he olvidado, Feliz cumpleaños!!! 🎉🎊❤".format(user.mention))
if self.MAIN_SERVER.voice_client is not None:
await self.MAIN_SERVER.voice_client.disconnect()
if user.voice.channel is not None:
if self.MAIN_SERVER.voice_client is not None:
await self.MAIN_SERVER.voice_client.move_to(user.voice.channel)
await user.voice.channel.connect()
source = discord.PCMVolumeTransformer(discord.FFmpegPCMAudio('/home/panchi/Music/cancion-feliz-cumple.mp3'))
self.MAIN_SERVER.voice_client.play(source, after=lambda e: print('Player error: %s' % e) if e else None)
try:
cumpleañeros = database.get_today_cumple()
except Exception as e:
return
if cumpleañeros:
for persona in cumpleañeros:
id = persona[0]
self.bg_task = self.loop.create_task(mandar_mensajes(id))
async def my_background_task(self):
await self.wait_until_ready()
while True:
schedule.run_pending()
senial_de_trading = signal()
canal_de_inversiones = self.get_channel(687155197080109058)
rol_inversor = "<@&687155503855304721>"
if senial_de_trading:
await canal_de_inversiones.send(rol_inversor + "\n" + senial_de_trading)
await asyncio.sleep(60 * 60) # task runs every 60 minutes
if __name__ == '__main__':
client = TekeBot()
client.run(config.token)