Пример #1
0
        public static async Task <bool> changeName(IDiscordClient client, string name)
        {
            ISelfUser self = client.CurrentUser;

            try
            {
                await self.ModifyAsync(x =>
                {
                    x.Username = name;
                });

                return(true);
            }
            catch
            {
                return(false);
            }
        }
Пример #2
0
        public static async Task <bool> changeProfile(IDiscordClient client, string path)
        {
            ISelfUser self = client.CurrentUser;

            try
            {
                Image image = new(path);

                await self.ModifyAsync(x =>
                {
                    x.Avatar = image;
                });

                return(true);
            }
            catch
            {
                return(false);
            }
        }