💬Faqs

This page is totally dedicated to the faqs.

ERROR IN PLAY COMMAND

Command raised an exception: 
AttributeError: 'NoneType' object has no attribute 'channel'

Sometimes you may see this type of errors while running [prefix]play command. This often happens if you run this command without joining a voice channel.

ERROR IN SUGGESTION COMMAND

Command raised an exception: 
AttributeError: 'NoneType' object has no attribute send

This happens when you delete the default channels viz. Approve Suggestion Channel, Deny Suggestion Channel, Suggestion Channel. To get rid of this run [prefix]help suggestion-setup channel to know more about how to setup another channel.

ERROR IN EVAL COMMAND

400 Bad Request (error code: 50035): Invalid Form Body
In data.embeds.0.fields.1.value: This field is required

This error occurs when you don't returning any result by executing your code. Like :

from random import choice

def function(choice1: str, choice2: str, choice3: str):
    list = [f"{choice1}", f"{choice2}", f"{choice3}"]
    result = choice(list)
function("apple", "banana", "mango") 

So this is returning nothing and causing this error. This means you have to print or return a value in your code so that the bot can show it. Otherwise the some part of the embed will remain empty which causes this error.

OTHER ERRORS

PERMISSION ERROR

 Command raised an exception: 
 Forbidden: 403 Forbidden (error code: 50013): Missing Permissions

This is simply notifying that he require a higher permission to execute the command. Like to mute a member it requires a higher role than others to mute/ kick / ban / to change their nicknames.

Last updated