-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.py
62 lines (50 loc) · 1.79 KB
/
init.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
import os
import configparser
from configparser import ConfigParser
import discord
from discord.enums import RelationshipType
from discord.ext import commands
import aiocron
intents = discord.Intents.default()
intents.members = True
intents.presences = True
###### CONFIG
tocken = # TOCKEN DEL BOT
idguid = # ID DEL SERVIDOR
rolastro = # ID DEL ROL
juego = "ASTRONEER" # NOMBRE DEL JUEGO
###### FIN DEL CONFIG
bot = commands.Bot(command_prefix='/', description="Bot creado para añadir role de astroneer, si esta jugando", intents=intents)
@bot.event
async def on_ready():
print('El bot de se esta ejecutando')
@aiocron.crontab('*/1 * * * *')
async def cornjob3():
guild = bot.get_guild(idguid)
astroneer = guild.get_role(rolastro)
for X in range(len(guild.members)):
miembro = guild.members[X]
if len(miembro.activities) == 0:
if astroneer in miembro.roles:
await miembro.remove_roles(astroneer)
else:
try:
if miembro.activities[0].name == juego:
await miembro.add_roles(astroneer)
else:
if astroneer in miembro.roles:
await miembro.remove_roles(astroneer)
except:
if astroneer in miembro.roles:
await miembro.remove_roles(astroneer)
@bot.command()
async def juego(ctx, userdiscord: discord.Member = None):
if ctx.author.guild_permissions.manage_roles is True:
if userdiscord is None:
ctx.send("No has puesto el usuario")
return
miembro = bot.get_member(userdiscord.id)
await ctx.send('Esta jugando a "{}"'format(userdiscord.activities[0].name))
else:
return
bot.run(tocken)