Beispiel #1
0
        public async Task removeSpendings(CommandContext Context, DiscordUser customerDiscord, float amountToAdd)
        {
            await Context.Message.DeleteAsync();

            //ProfileSender.otherProfile(Context, customerDiscord);

            ProfileSender.updatingProfile(Context, customerDiscord, amountToAdd, 2);
        }
Beispiel #2
0
        public async Task customerTier2(CommandContext Context, DiscordUser requestedUser)
        {
            await Context.Message.DeleteAsync();

            if (Context.Member.Id.ToString() == requestedUser.Id.ToString())
            {
                ProfileSender.yourProfile(Context);
            }
            else
            {
                ProfileSender.otherProfile(Context, requestedUser);
            }
        }
Beispiel #3
0
        public async Task setSpendings(CommandContext Context, DiscordUser customerDiscord, float amountToSet)
        {
            await Context.Message.DeleteAsync();

            ProfileSender.updatingProfile(Context, customerDiscord, amountToSet, 3);
        }
Beispiel #4
0
        public async Task customerTier(CommandContext Context)
        {
            await Context.Message.DeleteAsync();

            ProfileSender.yourProfile(Context);
        }