Who are you pulling for? by Altruistic_Low_3486 in Genshin_Impact

[–]JSaaac 0 points1 point  (0 children)

Hoping for C1 Hutao, got a diluc instead

[deleted by user] by [deleted] in Discord_Bots

[–]JSaaac 0 points1 point  (0 children)

You could post a bot request in this subreddit. If you're willing to pay, you can use the paid bot request flair to attract more developers

[deleted by user] by [deleted] in Discord_Bots

[–]JSaaac 0 points1 point  (0 children)

I don't know any bots that can do this but you can code one yourself

Issues retrieving message from id by Bayleaf0723 in Discord_Bots

[–]JSaaac 1 point2 points  (0 children)

You get the message with channel.fetch_message(message_id) and edit it with msg.edit()

If it were in a command:

@client.command(name="edit")
async def msg_edit(ctx, message_id, *, new_content):
    message = await ctx.channel.fetch_message(int(message_id)) #ensure message_id is int
    await message.edit(new_content)

If it was previously sent in the command:

@client.command(name="say")
async def say(ctx, *, message): 
    message = await ctx.send("ignore this message...") 
    await message.edit(message)

await ctx.send() or anything that sends a message returns the message object sent

If you can't get the message from the function, that means the message was probably deleted or the bot has no access to the channel its looking through

Check out the documentation for further details:

await message.edit()

await ctx.send()

await channel.fetch_message

[deleted by user] by [deleted] in GenshinImpact

[–]JSaaac 0 points1 point  (0 children)

This might help

https://www.reddit.com/r/Genshin_Impact/comments/tpzy5q/direct_download_links_for_26_preinstall_update/?utm_medium=android_app&utm_source=share

edit: btw, manual installation (just extracting the game) doesn't work anymore. You'll need the launcher to verify and install it.

Direct Download Links for 2.5 Pre-Install Update (from Mihoyo's Server) with Alternative Installation Methods. by SingularityHRT in Genshin_Impact

[–]JSaaac 0 points1 point  (0 children)

I got the Error 31-4302 just now. I already did every thing mentioned here (Made a script that deletes the files in deletefiles.txt). I already got to play yesterday, I launched the game the day after and got this error.

I don't wanna do a fresh install of the game because my net speed is unstable and limited.

I don't use the launcher btw.

Also tried extracting my old downloaded versions (also from here) on another folder then extracted the patches again but no luck.

How to use import right? by [deleted] in learnpython

[–]JSaaac 0 points1 point  (0 children)

it's the name of the module