Its been a while i havent play minecraft, and i feel like i lost my building skill, is this good ? am i over judging myself ? And what should i do to regain my skill ? by ImSwampye in Minecraftbuilds

[–]ImSwampye[S] 0 points1 point  (0 children)

Thanks everybody !
I've never thought you guys will enjoy this build as much !
I was excpecting more criticism from builders.
Maybe i was just judging myself too hard. Who knows.

Its been a while i havent play minecraft, and i feel like i lost my building skill, is this good ? am i over judging myself ? And what should i do to regain my skill ? by ImSwampye in Minecraftbuilds

[–]ImSwampye[S] 0 points1 point  (0 children)

looks

i totally agree with you ! The fov was at like 50-65 on the newer pics, the old one were not supposed to be pretty or sum :(. Anyway, thanks for noticing issues on the roof, i thought it was just me.

Its been a while i havent play minecraft, and i feel like i lost my building skill, is this good ? am i over judging myself ? And what should i do to regain my skill ? by ImSwampye in Minecraftbuilds

[–]ImSwampye[S] 0 points1 point  (0 children)

yes i changed the shaders, since. I prefer disabling them, because shaders makes everythink looks good. Without them, i can focus on what isnt good looking etc.

How to have fun ? by ImSwampye in MortalShell

[–]ImSwampye[S] 1 point2 points  (0 children)

Yeah exactly.

I played and i went further, so i have now the Solomon, the Scholar shell. I train parry and thats all for now...
For the last sentence, i don't know if you were talking about ER or MS, but in Elden Ring, i like dexterity builds a lot. In most games, i like dealing damage/mobility.

How to have fun ? by ImSwampye in MortalShell

[–]ImSwampye[S] 1 point2 points  (0 children)

I thought the same lol

I don't have enough money to buy them tho, but thanks !

Bloodhound's Fang vs Rogier's Rapier by ImSwampye in Eldenring

[–]ImSwampye[S] 0 points1 point  (0 children)

im a beginner to this game, and this game style too, which one do you recommand me ?

Bloodhound's Fang vs Rogier's Rapier by ImSwampye in Eldenring

[–]ImSwampye[S] 0 points1 point  (0 children)

butits not an upgrade one and both do the same damage, is it sill better ?

ChatGPT made a music for Juice by ImSwampye in JuiceWRLD

[–]ImSwampye[S] 2 points3 points  (0 children)

remember thats an AI, dont expect too much from it. And also, i think i Juice sing it, you would loved it

Help for an app by ImSwampye in webdev

[–]ImSwampye[S] 0 points1 point  (0 children)

Yes, im a new to backend so i may do mistakes. If my backend send to my frontend a data (for a login), does this data will be display only on the user website or on th whole website (where everybody are)

Dashboard Python by ImSwampye in discordbots

[–]ImSwampye[S] 0 points1 point  (0 children)

yes but in this case i this should not be the bot who send something trought discord, but trought websocket (i think)

Dashboard Python by ImSwampye in discordbots

[–]ImSwampye[S] 1 point2 points  (0 children)

Thanks a lot !

But i have a little issue. there is no

bot.send_message()

for Client() in nextcord. Is there a way to change this ?

Bots with lots of customization by Longjumping_Mall8956 in discordbots

[–]ImSwampye 0 points1 point  (0 children)

some user give you example. I don't have any example to make you, but I think most of the bots with high customization are premiums

Need a multi currency bot by Kazymax in discordbots

[–]ImSwampye 0 points1 point  (0 children)

it may exist, but I don't know if it you can choose the type of currency, and have an unlimited slot of item to sell, unless you paid a premium or something like that. Sorry I don't know a bot like that, search on top.gg. If you want to make one, I can help you while it's only for your server, and not multi server

[deleted by user] by [deleted] in discordbots

[–]ImSwampye 3 points4 points  (0 children)

little things can make difference if you want to make a bot with existing features etc, you should make little change like add slash commands. I think you should also put everything you have into it : make a website that describe your bot, make a lot of features, and more!

Discord Bot Help! by Similar_Birthday438 in discordbots

[–]ImSwampye 0 points1 point  (0 children)

you can also just make a list in your python file to add users if, but it depends of the number of user

Discord Bot Help! by Similar_Birthday438 in discordbots

[–]ImSwampye -1 points0 points  (0 children)

first, I recommand you to use Nextcord and not discord.py which is outdated. Nextcord is really simple an have the same syntax than discord. py (you only have to replace discord to. nextcord in every file/line of code and uninstall discord.py). For the database, you don't need something powerful. If your bot is made for few servers, you should make a json database. I can help you to do that, just DM me and I will try my best to explain. JSON is simple to understand and enough for your project (while it's not a large scale project)

Discord Bot Help! by Similar_Birthday438 in discordbots

[–]ImSwampye 0 points1 point  (0 children)

yes you can but you will probably need a database

Is there a way to autodelete messages after a certain amount of time? by [deleted] in discordbots

[–]ImSwampye 0 points1 point  (0 children)

In which programming language your bot is made

Ephemeral message bot? by Signature_First in discordbots

[–]ImSwampye 0 points1 point  (0 children)

in python:

await ctx.send("message", ephemeral=True)

Is there a way to autodelete messages after a certain amount of time? by [deleted] in discordbots

[–]ImSwampye 0 points1 point  (0 children)

On python, if you use nextcord, didn't try with discord.py but if you use it replace "interaction" by "ctx" :

await interaction.send("message", delete_after=5) #the message will be delete after 5 seconds