for those who can't find Copy ID option you just need to turn on developer mode feature
@cofosso3 жыл бұрын
Another usefull tutorial ! I see that your pycharm is well customed, can you do an overview of the main plugins and themes you have ? Thanks again for all your videos !
@Bluva3 жыл бұрын
Can you show us how to add more things? i couldn't figure out
@benjamindreyer98843 жыл бұрын
Your videos are so great! Would love to see another code wars video, you could make it a series :D
@TomKnudsen2 жыл бұрын
Two questions.. 1) How do I get the bot to be online all the time. Kinda seems like it just runs an event loop which closes when the program closes? 2) Is there a bug in your code, keep getting this " File "c:\Users\post\Documents\Python Coding\TKBOT\tkbot.py", line 27, in on_connect await channel.send("Just connected to channel") AttributeError: 'NoneType' object has no attribute 'send'"
@phat51343 жыл бұрын
can i ask why im doing like you but i get error message
@neelbanga3 жыл бұрын
Ayyyy nice!!
@Robin-kh2nq3 жыл бұрын
If any1 is having trouble copying the channel id you need to have dev mode enabled you can goto setting>advanced then check deveoper mode
@Swarmer1503 жыл бұрын
" 'pip' is not recognized as a external or a internal command " how to fix?
@hillybankok2 жыл бұрын
use pip3 then
@SahajOberoi3 жыл бұрын
You're one of the reason I started my channel. Great content as always. Well explained and innovative.
@SahajOberoi3 жыл бұрын
@CRACKED 😌
@zachreitan38593 жыл бұрын
I did exactly what your tutorial shows and i keep getting "RuntimeError: Event loop is closed" The discord dev portal has lots of poorly explained options. I don't understand what im doing wrong
@vivekminj38363 жыл бұрын
Hi nerualnine if I disconnect my internet connection then my bot will go offline? Do I need to host my bot to keep bot online?
@matthias9163 жыл бұрын
You need to keep your computer connected to internet for the bot to work, also if you turn off your pc the bot goes offline
@rishabhscodes3 жыл бұрын
How do I actually host the bot ? I can't really have that running on my machine the whole time.
@matthias9163 жыл бұрын
You have to either rent a server to run it on or have your computer run it 24/7
@TheCidle3 жыл бұрын
Can someone tell me why my code still tells me "no module named discord" after i pip install it?
@greengrenade30893 жыл бұрын
same problem here
@Артём-ь3ж6д3 жыл бұрын
This event loop is already running During handling of the above exception, another exception occurred:
@ThaumesD3 жыл бұрын
Nice video! Well explained :)
@prince2347x3 жыл бұрын
Make a tutorial on Ursina or panda3d🥺
@ananthramvijayaraj45543 жыл бұрын
I’m pretty sure he may, coz Ursina is very easy and powerful
@yusiferzendric14893 жыл бұрын
@@ananthramvijayaraj4554 he didn't have any interest in 3d cause he had said it in his previous videos
@zidanutomo3263 жыл бұрын
6:04 that's what a robot would say
@neuralninethebest25323 жыл бұрын
@neuralnine Please make a video about backend tiktok clone, please my guy
@alperkaya89193 жыл бұрын
Thanks, I was able to leverage a bot from 0 within 15 munites
@navinvenkatesan97843 жыл бұрын
Telegram bot next tutorial ?
@HoriRecap2 жыл бұрын
client.run(TOKEN) didnt work
@alpw4042 жыл бұрын
me too, did u solve?
@carlparadis3 жыл бұрын
well explained, thanks
@ethan79303 жыл бұрын
saw this video just as i was coding a bot for my discord server... what are the odds?
@inx18193 жыл бұрын
google is spying on you
@lolcraft20673 жыл бұрын
this guy is really good
@neppie14.2 жыл бұрын
Makes bot: Me: ok and now?
@vulcanolog02 жыл бұрын
Great content thanks
@manojkumark39343 жыл бұрын
plz make video on json
@HoriRecap2 жыл бұрын
it usually not online it offline
@samlolpip16043 жыл бұрын
Yeaaaaa man pls do every part for discord bot thankssssssss fianly
@abelsherry96863 жыл бұрын
Can u make video of telegram Bot
@SparePlayss3 жыл бұрын
can you also make video for Telegram bot in python too? ^^
@MangoNutella3 жыл бұрын
Stonks
@TipsJazzInferno9 ай бұрын
Your Are really Great :)
@vivekminj38363 жыл бұрын
Thank you nice video
@abhinavchoudhary80143 жыл бұрын
Great bro
@MaybeTarun3 жыл бұрын
Oooh i wanted this so bad
@prod.ot53 жыл бұрын
I was literally trying to relearn this yesterday
@fsoky3 жыл бұрын
*Great* 💕
@PythonicMind2 жыл бұрын
client = discord.Client()
@useless74972 жыл бұрын
Did you ever find a solution to this problem? I am having something similar.
Yay!, thanks for this amazing video!. I hope we can get more in depth in the future. ;)
@rasol64603 жыл бұрын
YES, BEEN WAITING FOR THIS VIDEO! THANKS! neuralnine fire no cap
@HimanshuSharma-yz5ij3 жыл бұрын
Can you please upload videos on deep learning algorithms like CNN's and RNN's .. bytheway love your content ❤️ you always bring something new ❤️
@shivangrathore3 жыл бұрын
ah you must use discord.ext.commands otherwise newbies gonna use on_message 🤣
@hossamal-dinhassan96523 жыл бұрын
❤️
@AdoukaStalks3 жыл бұрын
u r doing it the hard way... try @client.command()
@mob_10173 жыл бұрын
im not early but im here :)
@Ineedsumrandom Жыл бұрын
for anybody having trouble with # Define your intents intents = discord.Intents.default() intents.typing = False # For example, you can customize the intents as needed # Create the Client instance with the intents client = discord.Client(intents=intents) With the new API update they changed how it works so replace "Client = discord.Client()" With # Define your intents intents = discord.Intents.default() intents.typing = False # For example, you can customize the intents as needed # Create the Client instance with the intents client = discord.Client(intents=intents) # Rest of your code