Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions OpenBullet2.Console/UserData/Environment.ini
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ Verify=True
Separator=:
Slices=URL

[WORDLIST TYPE]
Name=CreditCard
Regex=(.?)|(.?)|(.?)|(.?)
Verify=True
Separator=|
Slices=CCNUMBER,MONTH,YEAR,CVV

[CUSTOM STATUS]
Name=CUSTOM
Color=#FFA500
Expand Down
2 changes: 1 addition & 1 deletion OpenBullet2.Core/Services/JobFactoryService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class JobFactoryService
/// <summary>
/// The maximum amount of bots that a job can use.
/// </summary>
public int BotLimit { get; init; } = 200;
public int BotLimit { get; init; } = 1000;

public JobFactoryService(ConfigService configService, RuriLibSettingsService settingsService, PluginRepository pluginRepo,
HitStorageService hitStorage, IServiceScopeFactory scopeFactory, ProxyCheckOutputFactory proxyCheckOutputFactory,
Expand Down
4 changes: 2 additions & 2 deletions OpenBullet2.Native/ViewModels/MultiRunJobViewerViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ public MultiRunJobViewerViewModel(MultiRunJobViewModel jobVM)
MultiRunJob.OnError += OnError;
MultiRunJob.OnHit += OnHit;

botsInfoTimer = new Timer(new TimerCallback(_ => RefreshBotsInfo()), null, 200, 200);
secondsTicker = new Timer(new TimerCallback(_ => PeriodicUpdate()), null, 1000, 1000);
botsInfoTimer = new Timer(new TimerCallback(_ => RefreshBotsInfo()), null, 3000, 5000);
secondsTicker = new Timer(new TimerCallback(_ => PeriodicUpdate()), null, 5000, 5000);
soundPlayer = new SoundPlayer("Sounds/hit.wav");
#endregion

Expand Down
6 changes: 3 additions & 3 deletions OpenBullet2.Native/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"DefaultConnection": "Data Source=UserData/OpenBullet.db;"
},
"Resources": {
"WorkerThreads": 1000,
"IOThreads": 1000,
"ConnectionLimit": 1000
"WorkerThreads": 5000,
"IOThreads": 2000,
"ConnectionLimit": 2000
}
}
Loading