- Nig__PostingGuest
Her; {10 characters}
4/2/2020, 1:42 pm
I just jerked off to her bitmoji, holy shit. This feeling will never be met again in my life. Now I'm eating nachos.
- Cum
- Age : 103
Location : r/Pyongyang
Join date : 2020-03-31
Posts : 66
Re: Her; {10 characters}
4/2/2020, 1:44 pm
Do you jerk off to lolis?
Ghay Ping likes this post
- Nig__Posting
- Location : RijiHuudo
Join date : 2020-04-02
Posts : 16
Re: Her; {10 characters}
4/2/2020, 1:47 pm
No.
Ghay Ping likes this post
Re: Her; {10 characters}
4/2/2020, 1:50 pm
ait webhooks()ΒΆ
This function is a coroutine.
Gets the list of webhooks from this guild.
Requires manage_webhooks permissions.
Raises
Forbidden – You don’t have permissions to get the webhooks.
Returns
The webhooks for this guild.
Return type
List[Webhook]
await estimate_pruned_members(*, days)
This function is a coroutine.
Similar to prune_members() except instead of actually pruning members, it returns how many members it would prune from the guild had it been called.
Parameters
days (int) – The number of days before counting as inactive.
Raises
Forbidden – You do not have permissions to prune members.
HTTPException – An error occurred while fetching the prune members estimate.
InvalidArgument – An integer was not passed for days.
Returns
The number of members estimated to be pruned.
Return type
int
await invites()
This function is a coroutine.
Returns a list of all active instant invites from the guild.
You must have the manage_guild permission to get this information.
Raises
Forbidden – You do not have proper permissions to get the information.
HTTPException – An error occurred while fetching the information.
Returns
The list of invites that are currently active.
Return type
List[Invite]
await fetch_emojis()
This function is a coroutine.
Retrieves all custom Emojis from the guild.
Note This method is an API call. For general usage, consider emojis instead.
Raises
HTTPException – An error occurred fetching the emojis.
Returns
The retrieved emojis.
Return type
List[Emoji]
await fetch_emoji(emoji_id)
This function is a coroutine.
Retrieves a custom Emoji from the guild.
Note This method is an API call. For general usage, consider iterating over emojis instead.
Parameters
emoji_id (int) – The emoji’s ID.
Raises
NotFound – The emoji requested could not be found.
HTTPException – An error occurred fetching the emoji.
Returns
The retrieved emoji.
Return type
Emoji
await create_custom_emoji(*, name, image, roles=None, reason=None)
This function is a coroutine.
Creates a custom Emoji for the guild.
There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the MORE_EMOJI feature which extends the limit to 200.
You must have the manage_emojis permission to do this.
Parameters
name (str) – The emoji name. Must be at least 2 characters.
image (bytes) – The bytes-like object representing the image data to use. Only JPG, PNG and GIF images are supported.
roles (Optional[List[Role]]) – A list of Roles that can use this emoji. Leave empty to make it available to everyone.
reason (Optional[str]) – The reason for creating this emoji. Shows up on the audit log.
Raises
Forbidden – You are not allowed to create emojis.
HTTPException – An error occurred creating an emoji.
Returns
The created emoji.
Return type
Emoji
await fetch_roles()
This function is a coroutine.
Retrieves all Role that the guild has.
Note This method is an API call. For general usage, consider roles instead.
New in version 1.3.
Raises
HTTPException – Retrieving the roles failed.
Returns
All roles in the guild.
Return type
List[Role]
await create_role(*, reason=None, **fields)
This function is a coroutine.
Creates a Role for the guild.
All fields are optional.
You must have the manage_roles permission to do this.
Parameters
name (
str) – The role name. Defaults to ‘new role’.
permissions (Permissions) – The permissions to have. Defaults to no permissions.
colour (Colour) – The colour for the role. Defaults to Colour.default(). This is aliased to color as well.
hoist (bool) – Indicates if the role should be shown separately in the member list. Defaults to False.
mentionable (bool) – Indicates if the role should be mentionable by others. Defaults to False.
reason (Optional[str]) – The reason for creating this role. Shows up on the audit log.
Raises
Forbidden – You do not have permissions to create the role.
HTTPException – Creating the role failed.
InvalidArgument – An invalid keyword argument was given.
Returns
The newly created role.
Return type
Role
await kick(user, *, reason=None)
This function is a coroutine.
Kicks a user from the guild.
The user must meet the abc.Snowflake abc.
You must have the kick_members permission to do this.
Parameters
user (abc.Snowflake) – The user to kick from their guild.
reason (Optional[str]) – The reason the user got kicked.
Raises
Forbidden – You do not have the proper permissions to kick.
HTTPException – Kicking failed.
await ban(user, *, reason=None, delete_message_days=1)
This function is a coroutine.
Bans a user from the guild.
The user must meet the abc.Snowflake abc.
You must have the ban_members permission to do this.
Parameters
user (abc.Snowflake) – The user to ban from their guild.
delete_message_days (int) – The number of days worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 7.
reason (Optional[str]) – The reason the user got banned.
Raises
Forbidden – You do not have the proper permissions to ban.
HTTPException – Banning failed.
This function is a coroutine.
Gets the list of webhooks from this guild.
Requires manage_webhooks permissions.
Raises
Forbidden – You don’t have permissions to get the webhooks.
Returns
The webhooks for this guild.
Return type
List[Webhook]
await estimate_pruned_members(*, days)
This function is a coroutine.
Similar to prune_members() except instead of actually pruning members, it returns how many members it would prune from the guild had it been called.
Parameters
days (int) – The number of days before counting as inactive.
Raises
Forbidden – You do not have permissions to prune members.
HTTPException – An error occurred while fetching the prune members estimate.
InvalidArgument – An integer was not passed for days.
Returns
The number of members estimated to be pruned.
Return type
int
await invites()
This function is a coroutine.
Returns a list of all active instant invites from the guild.
You must have the manage_guild permission to get this information.
Raises
Forbidden – You do not have proper permissions to get the information.
HTTPException – An error occurred while fetching the information.
Returns
The list of invites that are currently active.
Return type
List[Invite]
await fetch_emojis()
This function is a coroutine.
Retrieves all custom Emojis from the guild.
Note This method is an API call. For general usage, consider emojis instead.
Raises
HTTPException – An error occurred fetching the emojis.
Returns
The retrieved emojis.
Return type
List[Emoji]
await fetch_emoji(emoji_id)
This function is a coroutine.
Retrieves a custom Emoji from the guild.
Note This method is an API call. For general usage, consider iterating over emojis instead.
Parameters
emoji_id (int) – The emoji’s ID.
Raises
NotFound – The emoji requested could not be found.
HTTPException – An error occurred fetching the emoji.
Returns
The retrieved emoji.
Return type
Emoji
await create_custom_emoji(*, name, image, roles=None, reason=None)
This function is a coroutine.
Creates a custom Emoji for the guild.
There is currently a limit of 50 static and animated emojis respectively per guild, unless the guild has the MORE_EMOJI feature which extends the limit to 200.
You must have the manage_emojis permission to do this.
Parameters
name (str) – The emoji name. Must be at least 2 characters.
image (bytes) – The bytes-like object representing the image data to use. Only JPG, PNG and GIF images are supported.
roles (Optional[List[Role]]) – A list of Roles that can use this emoji. Leave empty to make it available to everyone.
reason (Optional[str]) – The reason for creating this emoji. Shows up on the audit log.
Raises
Forbidden – You are not allowed to create emojis.
HTTPException – An error occurred creating an emoji.
Returns
The created emoji.
Return type
Emoji
await fetch_roles()
This function is a coroutine.
Retrieves all Role that the guild has.
Note This method is an API call. For general usage, consider roles instead.
New in version 1.3.
Raises
HTTPException – Retrieving the roles failed.
Returns
All roles in the guild.
Return type
List[Role]
await create_role(*, reason=None, **fields)
This function is a coroutine.
Creates a Role for the guild.
All fields are optional.
You must have the manage_roles permission to do this.
Parameters
name (
str) – The role name. Defaults to ‘new role’.
permissions (Permissions) – The permissions to have. Defaults to no permissions.
colour (Colour) – The colour for the role. Defaults to Colour.default(). This is aliased to color as well.
hoist (bool) – Indicates if the role should be shown separately in the member list. Defaults to False.
mentionable (bool) – Indicates if the role should be mentionable by others. Defaults to False.
reason (Optional[str]) – The reason for creating this role. Shows up on the audit log.
Raises
Forbidden – You do not have permissions to create the role.
HTTPException – Creating the role failed.
InvalidArgument – An invalid keyword argument was given.
Returns
The newly created role.
Return type
Role
await kick(user, *, reason=None)
This function is a coroutine.
Kicks a user from the guild.
The user must meet the abc.Snowflake abc.
You must have the kick_members permission to do this.
Parameters
user (abc.Snowflake) – The user to kick from their guild.
reason (Optional[str]) – The reason the user got kicked.
Raises
Forbidden – You do not have the proper permissions to kick.
HTTPException – Kicking failed.
await ban(user, *, reason=None, delete_message_days=1)
This function is a coroutine.
Bans a user from the guild.
The user must meet the abc.Snowflake abc.
You must have the ban_members permission to do this.
Parameters
user (abc.Snowflake) – The user to ban from their guild.
delete_message_days (int) – The number of days worth of messages to delete from the user in the guild. The minimum is 0 and the maximum is 7.
reason (Optional[str]) – The reason the user got banned.
Raises
Forbidden – You do not have the proper permissions to ban.
HTTPException – Banning failed.
Ghay Ping likes this post
Permissions in this forum:
You cannot reply to topics in this forum