コード例 #1
0
        public async Task Came(CommandContext ctx)
        {
            var  context = new DiscordContext();
            bool punish  = true;
            var  userId  = Convert.ToInt64(ctx.Message.Author.Id);
            var  user    = await UserExtension.GetUser(userId);

            var difficulty  = (await UserSettingExtension.GetSettingAsync(userId, UserSettingExtension.SettingID.WheelDifficulty, context)).GetValue <WheelExtension.WheelDifficultyPreference>();
            var lastOutcome = await WheelOutcomeExtension.GetLastOutcome(userId, false, context);

            var lastallowedOrgasm = await WheelOutcomeExtension.GetLastOutcome(WheelExtension.Outcome.O****m, userId, true, context);

            var lastUserOrgasm = await WheelOutcomeExtension.GetLastOutcome(WheelExtension.Outcome.O****m, userId, true, context);

            if (lastOutcome == null)
            {
                await ctx.RespondAsync("Please start your *training* with ``//orgasmwheel`` first.");

                return;
            }

            DiscordEmbedBuilder builder = new DiscordEmbedBuilder();

            var denialTime = TimeSpan.FromTicks(1);

            if (lastallowedOrgasm != null && lastUserOrgasm != null)
            {
                if (lastUserOrgasm.Time > lastallowedOrgasm.Time)
                {
                    denialTime = TimeSpan.FromDays(Math.Round((int)difficulty + 1 * 1.5, 0, MidpointRounding.AwayFromZero));

                    builder.Description = "What!? You already came after i allowed you to!!" + Environment.NewLine
                                          + "Can you not even follow simple instructions?" + Environment.NewLine
                                          + $"I'll give you {denialTime.Days} day{(denialTime.Days > 1 ? "s" : "")} of denial for that!";
                }
            }

            switch ((WheelExtension.Outcome)lastOutcome.Type)
            {
            case WheelExtension.Outcome.NotSet:

                break;

            case WheelExtension.Outcome.Denial:
                denialTime = TimeSpan.FromDays(Math.Round((int)difficulty + 1 * 1.5, 0, MidpointRounding.AwayFromZero));

                builder.Description = "What!? I told you, that you'd be denied!" + Environment.NewLine
                                      + "Can you not even follow simple instructions?" + Environment.NewLine
                                      + $"I'll give you {denialTime.Days} day{(denialTime.Days > 1 ? "s" : "")} of denial for that!";
                break;

            case WheelExtension.Outcome.Ruin:
                denialTime = TimeSpan.FromDays((int)difficulty + 1);

                builder.Description = "Oh, was my poor little boy not strong enough, to follow through with the ruin?" + Environment.NewLine
                                      + "Guess you're gonna learn the hard way, to do what i say." + Environment.NewLine
                                      + $"That means no cumming for {denialTime.Days} day{(denialTime.Days > 1 ? "s" : "")}. And no ruins of course!";
                break;

            case WheelExtension.Outcome.O****m:
                punish = Helpers.RandomGenerator.RandomInt(0, 50) < (int)difficulty * 2;

                if (punish)
                {
                    builder.Description = "That must've felt sooo good." + Environment.NewLine
                                          + "But your luck ends here." + Environment.NewLine
                                          + $"I don't really feel, like you should've come after all.";
                }
                else
                {
                    builder.Description = "Yes, i hope you enjoyed that." + Environment.NewLine
                                          + "I do reward my subs every now and then." + Environment.NewLine
                                          + $"But don't get used to it.";
                }

                break;

            case WheelExtension.Outcome.Edge:
                denialTime = TimeSpan.FromDays(Math.Round((int)difficulty + 1 * 1.5, 0, MidpointRounding.AwayFromZero));

                builder.Description = "So... you tipped over and didn't even ruin it? What a shame..." + Environment.NewLine
                                      + "You're naturally going to have to make up for that." + Environment.NewLine
                                      + $"I guess {denialTime.Days} day{(denialTime.Days > 1 ? "s" : "")} of denial should do for now.";
                break;

            case WheelExtension.Outcome.Task:
                denialTime = TimeSpan.FromDays(Math.Round((int)difficulty + 1 * 1.5, 0, MidpointRounding.AwayFromZero));

                builder.Description = "So... you tipped over and didn't even ruin it? What a shame..." + Environment.NewLine
                                      + "You're naturally going to have to make up for that." + Environment.NewLine
                                      + $"I guess {denialTime.Days} day{(denialTime.Days > 1 ? "s" : "")} of denial should do for now.";
                break;
            }

            var prevDenialTime = user.DenialTime > DateTime.Now ? user.DenialTime : DateTime.Now;

            user.DenialTime = prevDenialTime + denialTime;

            var thisOutcome = new DbWheelOutcome()
            {
                IsUserReport = 1,
                Time         = DateTime.Now,
                Type         = (int)WheelExtension.Outcome.O****m,
                UserId       = userId
            };

            await context.WheelOutcome.AddAsync(thisOutcome);

            await context.SaveChangesAsync();

            if (punish)
            {
                builder.Description += Environment.NewLine + " And here's your punishment <3";
            }

            await ctx.RespondAsync(embed : builder.Build());

            if (punish)
            {
                await PunishmentInternal(ctx);
            }
        }
コード例 #2
0
        public async Task SpinNewWheelAsync(CommandContext ctx)
        {
            DiscordContext context = new DiscordContext();
            Users          user    = await UserExtension.GetUser(Convert.ToInt64(ctx.Message.Author.Id), context);

            SabrinaSettings sabrinaSettings = await context.SabrinaSettings.FindAsync(Convert.ToInt64(ctx.Guild.Id));

            if (sabrinaSettings == null)
            {
                sabrinaSettings = new SabrinaSettings
                {
                    GuildId      = Convert.ToInt64(ctx.Guild.Id),
                    WheelChannel = Convert.ToInt64(ctx.Channel.Id)
                };

                await context.SabrinaSettings.AddAsync(sabrinaSettings);

                await context.SaveChangesAsync();
            }

            if (sabrinaSettings.WheelChannel == null)
            {
                sabrinaSettings.WheelChannel = Convert.ToInt64(ctx.Channel.Id);
                await context.SaveChangesAsync();
            }

            if (Convert.ToInt64(ctx.Channel.Id) != sabrinaSettings.WheelChannel.Value)
            {
                DiscordChannel channel =
                    await ctx.Client.GetChannelAsync(Convert.ToUInt64(sabrinaSettings.WheelChannel));

                await ctx.RespondAsync(
                    $"You cannot issue this command from this Channel. Please use {channel.Mention}");

                return;
            }

            var wheelDifficultySetting = await UserSettingExtension.GetSettingAsync(user.UserId, UserSettingExtension.SettingID.WheelDifficulty, context);

            var difficulty = WheelExtension.WheelDifficultyPreference.Default;

            if (wheelDifficultySetting != null)
            {
                difficulty = (WheelExtension.WheelDifficultyPreference) int.Parse(wheelDifficultySetting.Value);
            }

            WheelChances chances = await context.WheelChances.FindAsync((int)difficulty);

            if (user.LockTime != null && user.LockTime > DateTime.Now)
            {
                TimeSpan?timeUntilFree = user.LockTime - DateTime.Now;

                TimeSpan newTimeUntilFree =
                    TimeSpan.FromTicks(timeUntilFree.Value.Ticks * Helpers.RandomGenerator.RandomInt(1, 4));

                if (newTimeUntilFree > TimeSpan.FromDays(365))
                {
                    await ctx.RespondAsync("F**k off");

                    return;
                }

                var responseText = "Oho, it seems like I told you to stay away from spinning the wheel...\n" +
                                   $"That means you get some more extra time of no spinning {DiscordEmoji.FromName(ctx.Client, Config.Emojis.Blush)}";

                if (int.TryParse(user.LockReason, out int reasonInt))
                {
                    var reason = (UserSettingExtension.LockReason)reasonInt;

                    switch (reason)
                    {
                    case UserSettingExtension.LockReason.Cooldown:
                        responseText =
                            "Oho, it seems like I told you to stay away from spinning the wheel...\n" +
                            $"That means you get some more extra time of no spinning {DiscordEmoji.FromName(ctx.Client, Config.Emojis.Blush)}";
                        user.LockTime += newTimeUntilFree;
                        break;

                    case UserSettingExtension.LockReason.Extension:
                        responseText =
                            "Hey! I already told you, that you'd get a longer lock on the Wheel! You still want more? Sure!";
                        user.LockTime += TimeSpan.FromMinutes(1);
                        break;

                    case UserSettingExtension.LockReason.Task:
                        responseText = "Haha, there's no way you were able to finish your Task so quickly. Do your Task, " +
                                       "and then I'll give you another minute to think about your Actions.";
                        user.LockTime += TimeSpan.FromMinutes(1);
                        break;
                    }
                }

                user.LockReason = ((int)UserSettingExtension.LockReason.Extension).ToString();

                await ctx.RespondAsync(responseText);

                await context.SaveChangesAsync().ConfigureAwait(false);

                return;
            }

            float cumScore   = 1;
            var   lastOrgasm = await WheelOutcomeExtension.GetLastOutcome(WheelExtension.Outcome.O****m, user.UserId, null, context);

            var lastRuin = await WheelOutcomeExtension.GetLastOutcome(WheelExtension.Outcome.Ruin, user.UserId, null, context);

            if (lastOrgasm != null || lastRuin != null)
            {
                DbWheelOutcome lastCum = null;
                if (lastOrgasm != null && lastRuin != null)
                {
                    lastCum = lastOrgasm?.Time > lastRuin?.Time ? lastOrgasm : lastRuin;
                }
                else
                {
                    lastCum = lastOrgasm != null ? lastOrgasm : lastRuin;
                }

                var allSinceLastCum = (await WheelOutcomeExtension.GetLastOutcomesUntil(lastCum, context)).ToList();

                var denialSinceLastCum = allSinceLastCum.Where(cOutcome => cOutcome.Type == (int)WheelExtension.Outcome.Denial);
                var taskSinceLastCum   = allSinceLastCum.Where(cOutcome => cOutcome.Type == (int)WheelExtension.Outcome.Task);
                var edgeSinceLastCum   = allSinceLastCum.Where(cOutcome => cOutcome.Type == (int)WheelExtension.Outcome.Edge);

                cumScore = (denialSinceLastCum.Count() * 6 + taskSinceLastCum.Count() * 2 + edgeSinceLastCum.Count()) / 4f;
                cumScore = cumScore == 0 ? 1 : cumScore;
            }

            var outcomeChanceValue = Helpers.RandomGenerator.RandomInt(
                0,
                chances.Denial + chances.Task + chances.Edge + Convert.ToInt32(cumScore * chances.Ruin) + Convert.ToInt32(cumScore * chances.O****m));

            WheelExtension.Outcome outcome = WheelExtension.Outcome.Edge;
            if (outcomeChanceValue < chances.Denial)
            {
                outcome = WheelExtension.Outcome.Denial;
            }
            else if (outcomeChanceValue < chances.Denial + chances.Edge)
            {
                outcome = WheelExtension.Outcome.Edge;
            }
            else if (outcomeChanceValue < chances.Denial + chances.Edge + chances.Task)
            {
                outcome = WheelExtension.Outcome.Task;
            }
            else if (outcomeChanceValue < chances.Denial + chances.Edge + chances.Task + Convert.ToInt32(cumScore * chances.Ruin))
            {
                outcome = WheelExtension.Outcome.Ruin;
            }
            else
            {
                outcome = WheelExtension.Outcome.O****m;
            }

            if (user.DenialTime != null && user.DenialTime > DateTime.Now)
            {
                TimeSpan?timeUntilFree = user.DenialTime - DateTime.Now;

                if (outcome.HasFlag(WheelExtension.Outcome.O****m) ||
                    outcome.HasFlag(WheelExtension.Outcome.Ruin))
                {
                    await ctx.RespondAsync(
                        "Haha, I would\'ve let you cum this time, but since you\'re still denied, "
                        + $"that won't happen {DiscordEmoji.FromName(ctx.Client, Config.Emojis.Blush)}.\n" +
                        "As a punishment, you\'re gonna do your Task anyways though:");
                }
                else
                {
                    await ctx.RespondAsync(
                        "Well, i told you, that you\'d be denied now.\n"
                        + "You still want to do something? Hmm... let's see...");
                }

                await Task.Delay(1500);

                outcome = WheelExtension.Outcome.Denial | WheelExtension.Outcome.Edge;
            }

            WheelOutcome wheelOutcome = null;

            while (wheelOutcome == null)
            {
                try
                {
                    wheelOutcomes = ReflectiveEnumerator.GetEnumerableOfType <WheelOutcome>(outcome, UserSettingExtension.GetAllSettings(user.UserId, context).ToDictionary(setting => (UserSettingExtension.SettingID)setting.SettingId), await WheelItemExtension.GetUserItemsAsync(user.UserId, context), _dependencies)
                                    .ToList();
                }
                catch (Exception e)
                {
                    Console.WriteLine(e);
                }

                foreach (var wheeloutcome in wheelOutcomes)
                {
                    await wheeloutcome.BuildAsync();
                }

                wheelOutcomes = wheelOutcomes.Where(e => !e.Outcome.HasFlag(WheelExtension.Outcome.NotSet)).ToList();

                if (wheelOutcomes.Count < 1)
                {
                    continue;
                }

                // Choose an outcome by summing up the chance values of all possible outcomes and
                // then generating a random number inside those.
                var combinedChance = 0;

                foreach (WheelOutcome currentOutcome in wheelOutcomes)
                {
                    combinedChance += currentOutcome.Chance;
                }

                var chance    = 0;
                var minChance = Helpers.RandomGenerator.RandomInt(0, combinedChance);

                foreach (WheelOutcome currentOutcome in wheelOutcomes)
                {
                    chance += currentOutcome.Chance;
                    if (minChance < chance)
                    {
                        wheelOutcome = currentOutcome;
                        break;
                    }
                }
            }

            if (wheelOutcome.Embed != null)
            {
                await ctx.RespondAsync(embed : wheelOutcome.Embed);
            }
            else
            {
                await ctx.RespondAsync(wheelOutcome.Text);
            }

            DbWheelOutcome dbOutcome = new DbWheelOutcome()
            {
                IsUserReport = 0,
                Time         = DateTime.Now,
                Type         = (int)outcome,
                UserId       = user.UserId
            };

            context.WheelOutcome.Add(dbOutcome);

            if (wheelOutcome.GetType() == typeof(Entities.WheelOutcomes.Content))
            {
                ((Entities.WheelOutcomes.Content)wheelOutcome).CleanUp(context);
            }

            if (user.DenialTime == null)
            {
                user.DenialTime = DateTime.Now;
            }

            if (user.LockTime == null)
            {
                user.LockTime = DateTime.Now;
            }

            if (user.DenialTime < DateTime.Now)
            {
                user.DenialTime = DateTime.Now;
            }

            if (user.LockTime < DateTime.Now)
            {
                user.LockTime = DateTime.Now;
            }

            if (wheelOutcome.WheelLockedTime != null && wheelOutcome.WheelLockedTime > TimeSpan.Zero)
            {
                switch (outcome)
                {
                case WheelExtension.Outcome.Edge:
                case WheelExtension.Outcome.Task:
                    user.LockReason = ((int)UserSettingExtension.LockReason.Task).ToString();
                    break;

                default:
                    user.LockReason = ((int)UserSettingExtension.LockReason.Cooldown).ToString();
                    break;
                }
            }

            user.DenialTime += wheelOutcome.DenialTime;
            user.LockTime   += wheelOutcome.WheelLockedTime;

            await Task.Run(async() => await context.SaveChangesAsync());

            if (outcome == WheelExtension.Outcome.O****m || outcome == WheelExtension.Outcome.Ruin)
            {
                var m = await ctx.Client.GetInteractivityModule().WaitForMessageAsync(
                    x => x.Channel.Id == ctx.Channel.Id && x.Author.Id == ctx.Member.Id &&
                    x.Content.Contains(@"//ruin") || x.Content.Contains(@"//cum") || x.Content.Contains(@"//came"),
                    TimeSpan.FromSeconds(120));

                if (m == null)
                {
                    string text = outcome == WheelExtension.Outcome.Ruin ? "ruin it like a good boy" : "cum in the end";

                    var builder = new DiscordEmbedBuilder()
                    {
                        Title       = $"Did you {text}?",
                        Description = $"{ctx.Message.Author.Mention} You didn't tell me, if you properly did {text} :(" + Environment.NewLine
                                      + "Please use either ``//ruined`` or ``//came`` depending on what you did"
                    };

                    await ctx.RespondAsync(embed : builder.Build());
                }
            }
        }
コード例 #3
0
        public async Task DenialTimeAsync(CommandContext ctx)
        {
            DiscordContext context = new DiscordContext();

            var   userId = Convert.ToInt64(ctx.Message.Author.Id);
            Users user   = await UserExtension.GetUser(ctx.Message.Author.Id);

            var difficulty        = (await UserSettingExtension.GetSettingAsync(userId, UserSettingExtension.SettingID.WheelDifficulty, context)).GetValue <WheelExtension.WheelDifficultyPreference>();
            var denialString      = "I guess I could give you another chance to cum...";
            var wheelLockedString = "So how about you test your luck?";

            if (user.DenialTime != null && user.DenialTime > DateTime.Now)
            {
                TimeSpan timeLeft = user.DenialTime.Value - DateTime.Now;

                var ballChance      = 100 - (20 / (int)difficulty) - (timeLeft.TotalDays * 5);
                var generatedChance = Helpers.RandomGenerator.RandomInt(0, 101);

                if (generatedChance > ballChance)
                {
                    denialString = "*shakes a magic ball*" + Environment.NewLine
                                   + $"*the ball reads {Math.Round(timeLeft.TotalHours, 0)}*" + Environment.NewLine
                                   + $"...I say no.";
                }
                else if (timeLeft > TimeSpan.FromHours(24))
                {
                    denialString = "Haha, no, you won't cum today.";
                }
                else if (timeLeft > TimeSpan.FromHours(12))
                {
                    denialString =
                        "Ask me again after you've slept a bit... Or gone to work or whatever, I don't care.";
                }
                else if (timeLeft > TimeSpan.FromHours(6))
                {
                    denialString = "Don't be ridiculous. You won't get a chance to cum now.";
                }
                else if (timeLeft > TimeSpan.FromHours(2))
                {
                    denialString = "Maybe later. I don't feel like you should cum right now.";
                }
                else if (timeLeft > TimeSpan.FromMinutes(20))
                {
                    denialString = "You won't cum right now. How about you try again in... say... 30 minutes? An hour?";
                }
                else
                {
                    denialString = "No, you won't get a chance now. I want to see you squirm for just a few more minutes~";
                }

                if (user.LockTime != null && user.LockTime < DateTime.Now)
                {
                    wheelLockedString = $"But i would allow you to spin right now, if you want {Environment.NewLine}" +
                                        $"*grins* {Environment.NewLine}" +
                                        "There\'s no way I\'ll let you cum though. You didn\'t deserve it yet.";
                }
                else
                {
                    wheelLockedString = "";
                }
            }
            else
            {
                if (user.LockTime != null && user.LockTime > DateTime.Now)
                {
                    TimeSpan lockTimeLeft = user.LockTime.Value - DateTime.Now;

                    if (lockTimeLeft > TimeSpan.FromHours(24))
                    {
                        wheelLockedString = "But not today.";
                    }
                    else if (lockTimeLeft > TimeSpan.FromHours(12))
                    {
                        wheelLockedString = "But i don't want to, right now. Maybe later today.";
                    }
                    else if (lockTimeLeft > TimeSpan.FromHours(6))
                    {
                        wheelLockedString = "But I'm not in the mood right now. Ask me again in a few hours.";
                    }
                    else if (lockTimeLeft > TimeSpan.FromHours(2))
                    {
                        wheelLockedString = "But i'm kinda in the middle of something right now. We can play later.";
                    }
                    else
                    {
                        wheelLockedString = "I won't let you spin for the moment though :)";
                    }
                }
            }

            await ctx.RespondAsync($"Hey {(await ctx.Client.GetUserAsync(Convert.ToUInt64(user.UserId))).Mention},\n" +
                                   $"{denialString}\n" +
                                   $"{wheelLockedString}");
        }
コード例 #4
0
        public async Task Ruin(CommandContext ctx)
        {
            var  context = new DiscordContext();
            bool punish  = true;
            var  userId  = Convert.ToInt64(ctx.Message.Author.Id);
            var  user    = await UserExtension.GetUser(userId);

            var difficulty  = (await UserSettingExtension.GetSettingAsync(userId, UserSettingExtension.SettingID.WheelDifficulty, context)).GetValue <WheelExtension.WheelDifficultyPreference>();
            var lastOutcome = await WheelOutcomeExtension.GetLastOutcome(userId, false, context);

            if (lastOutcome == null)
            {
                await ctx.RespondAsync("Please start your *session* with ``//orgasmwheel`` first.");

                return;
            }

            DiscordEmbedBuilder builder = new DiscordEmbedBuilder();

            var denialTime = TimeSpan.FromTicks(1);

            switch ((WheelExtension.Outcome)lastOutcome.Type)
            {
            case WheelExtension.Outcome.NotSet:

                break;

            case WheelExtension.Outcome.Denial:
                denialTime = TimeSpan.FromDays((int)difficulty + 1);

                builder.Description = "What!? I told you, that you'd be denied!" + Environment.NewLine
                                      + "I mean... at least you tried. Still, you didn't do what i said, and this must be punished!" + Environment.NewLine
                                      + $"I'll give you {denialTime.Days} day{(denialTime.Days > 1 ? "s" : "")} of denial for that!";
                break;

            case WheelExtension.Outcome.Ruin:
                builder.Description = "Oh, this makes me so happy." + Environment.NewLine
                                      + "I love seeing it just dribble out." + Environment.NewLine
                                      + $"You're a good little sub.";
                punish = false;
                break;

            case WheelExtension.Outcome.O****m:
                punish = Helpers.RandomGenerator.RandomInt(0, 50) < (int)difficulty * 2;

                if (punish)
                {
                    builder.Description = "I can see, that my conditioning worked!" + Environment.NewLine
                                          + "Even when you're allowed to cum, you still ruin it." + Environment.NewLine
                                          + $"But... this wasn't a suggestion. It was an order.";
                }
                else
                {
                    builder.Description = "I can see, that my conditioning worked!" + Environment.NewLine
                                          + "Even when you're allowed to cum, you still ruin it." + Environment.NewLine
                                          + $"Good boy.";
                }

                break;

            case WheelExtension.Outcome.Edge:
                denialTime = TimeSpan.FromDays(Math.Round((int)difficulty + 1 * 1.5, 0, MidpointRounding.AwayFromZero));

                builder.Description = "So... you couldn't control it and just tipped over?" + Environment.NewLine
                                      + "You're naturally going to have to make up for that." + Environment.NewLine
                                      + $"I guess {denialTime.Days} day{(denialTime.Days > 1 ? "s" : "")} of denial should do it for now.";
                break;

            case WheelExtension.Outcome.Task:
                denialTime = TimeSpan.FromDays(Math.Round((int)difficulty + 1 * 1.5, 0, MidpointRounding.AwayFromZero));

                builder.Description = "I'm not sure, how you can be so useless." + Environment.NewLine
                                      + "You're naturally going to have to make up for that." + Environment.NewLine
                                      + $"At least you tried... so I guess {denialTime.Days} day{(denialTime.Days > 1 ? "s" : "")} of denial should do it for now.";
                break;
            }

            var prevDenialTime = user.DenialTime > DateTime.Now ? user.DenialTime : DateTime.Now;

            user.DenialTime = prevDenialTime + denialTime;

            var thisOutcome = new DbWheelOutcome()
            {
                IsUserReport = 1,
                Time         = DateTime.Now,
                Type         = (int)WheelExtension.Outcome.O****m,
                UserId       = userId
            };

            await context.WheelOutcome.AddAsync(thisOutcome);

            await context.SaveChangesAsync();

            if (punish)
            {
                builder.Description += Environment.NewLine + "And here's your punishment <3";
            }

            await ctx.RespondAsync(embed : builder.Build());

            if (punish)
            {
                await PunishmentInternal(ctx);
            }
        }
コード例 #5
0
ファイル: BondageGearModule.cs プロジェクト: lasteur/Sabrina
        internal override async Task <bool> Run()
        {
            // See if User has bondage level set beforehand
            if (await UserSettingExtension.GetSettingAsync(_userId, UserSettingExtension.SettingID.BondageLevel, _context) == null)
            {
                await _dm.TriggerTypingAsync();

                await Task.Delay(1000);

                await _dm.SendMessageAsync($"First i've got to know something else.");

                var setBondageLevel = await new BondageLevelModule(_context, _dm, _ctx, _userId).Run();

                if (setBondageLevel == false)
                {
                    return(false);
                }

                var bondageLevel = await UserSettingExtension.GetSettingAsync(_userId, UserSettingExtension.SettingID.BondageLevel, _context);

                if (bondageLevel.GetValue <UserSettingExtension.BondageLevel>() == UserSettingExtension.BondageLevel.None)
                {
                    await _dm.TriggerTypingAsync();

                    await Task.Delay(1000);

                    await _dm.SendMessageAsync($"So you don't wanna do any Bondage? ...ok");

                    return(true);
                }
            }

            bool cancel = false;

            while (!cancel)
            {
                var existingBondageGear = (await WheelItemExtension.GetUserItemsAsync(_userId, _context)).Where(item => item.ItemId > (int)WheelItemExtension.Item.Bondage && item.ItemId < (int)WheelItemExtension.Item.Bondage + 1000).ToList();

                await _dm.SendMessageAsync($"Do you want to [add], or do you want to [remove] some of your bondage items? Or are you [done]?");

                var m = await _ctx.Client.GetInteractivityModule().WaitForMessageAsync(
                    x => x.Channel.Id == _dm.Id &&
                    x.Author.Id == _ctx.Member.Id,
                    TimeSpan.FromSeconds(240));

                if (m == null)
                {
                    await _dm.SendMessageAsync($"Or just don't respond at all. That's ok too :(");

                    cancel = true;
                    return(false);
                }

                if (Helpers.RegexHelper.ExitRegex.Match(m.Message.Content).Success)
                {
                    cancel = true;
                    return(true);
                }

                if (Helpers.RegexHelper.AddRegex.Match(m.Message.Content).Success)
                {
                    var possibleItems = new List <WheelUserItem>();

                    foreach (var item in (WheelItemExtension.Item[])Enum.GetValues(typeof(WheelItemExtension.Item)))
                    {
                        if ((int)item <= (int)WheelItemExtension.Item.Bondage || (int)item >= (int)WheelItemExtension.Item.Bondage + 1000 || existingBondageGear.Any(gear => gear.ItemId == (int)item))
                        {
                            continue;
                        }

                        possibleItems.Add(new WheelUserItem()
                        {
                            ItemId = (int)item,
                            UserId = _userId
                        });
                    }

                    var addItems = await new Items.ItemDialog().OpenAsync(possibleItems, Items.ItemDialog.DialogType.Add, _dm, _ctx);

                    if (addItems != null && addItems.Any())
                    {
                        _context.WheelUserItem.AddRange(addItems);
                        await _context.SaveChangesAsync();
                    }
                }

                if (Helpers.RegexHelper.RemoveRegex.Match(m.Message.Content).Success)
                {
                    var removeItems = await new Items.ItemDialog().OpenAsync(existingBondageGear, Items.ItemDialog.DialogType.Remove, _dm, _ctx);

                    if (removeItems != null && removeItems.Any())
                    {
                        _context.RemoveRange(removeItems);
                        await _context.SaveChangesAsync();
                    }
                }
            }

            return(true);
        }