Questions tagged [discum]

8 questions
1
vote
0 answers

Discord - How to get datetime when a member joined group?

For my problem I ended up using the discom pip library, but if there is any other way to do what I want, I would be happy for the suggestions. I want to find out what are the datetimes when a user joined a specific discord group. I managed to get…
Oskars
  • 407
  • 4
  • 24
0
votes
0 answers

This error with discum prevails I have read similar reddit threads but i cannot spot the error

https://www.reddit.com/r/Discord_selfbots/comments/tczprx/comment/i0ine4d/?utm_source=share&utm_medium=web2x&context=3 I get an error similar to this my code is as follows def slashCommandTest(resp,guildID,channelID,botID): if…
0
votes
0 answers

how do you set up a mudaeautobo and how to solve pip syntax error message

as you see I have zero experience in programming, and I tried checking everywhere for it but since its such a unknown thing I didn't find any results I tried doing it by myself but it seem like my python doesn't want to execute pip, and it say…
0
votes
1 answer

discum click button in dm's

I'm trying to do autoclick on button in DM's using discum. My actual code: import discum bot = discum.Client(token='token') from discum.utils.button import Buttoner @bot.gateway.command def message_data(resp): if resp.event.message: m =…
0
votes
1 answer

Discum disable console spam

I am using the Discum module of python, everything works but the console is spammed messages of the module, is there a way to disable this? here is a simple code piece import…
0
votes
1 answer

python discord bot forward messages from DM

I want my bot to forward DM messages from specific ID to a specific channel id in my discord server and to forward messages from the same specific server channel back to the same specific user id in DM. Issues I have: When the bot receive a message…
-1
votes
3 answers

TypeError: get_members() takes 2 positional arguments but 3 were given (I actually gave 2)

I am making a bot and it has a method in it called get_members() which takes 2 args self and client. I am supplying both arguments and still it says I am providing 3 args. Also the client parameter shows a warning Unexpected Argument The…
-3
votes
1 answer

How to use slash commands in Discum

I want to use it to trigger slash commands from other bots. As an example, I want to let the self bot write /ping and the Dankmemer should recognize that and respond. I have already tried to do this. My first problem is the script runs error free,…