chore: lengthen humanised selfbot startup delays

Join/go-live still felt a touch fast. Widen the pauses: ~2.5-4.5s after
coming online before joining voice, ~6-10s after joining before Go Live.
This commit is contained in:
javis-bot
2026-06-10 11:47:31 +09:00
parent 2c7f0a95b5
commit 2fd5e0fe9e

View File

@@ -110,10 +110,10 @@ export class SelfbotStreamer implements ScreenStreamer {
// fingerprintable. throwIfAborted() after each pause unwinds into the
// catch below if stop() lands mid-wait, so we never join/go-live on a
// torn-down streamer.
await this.humanPause(900, 2200, signal);
await this.humanPause(2500, 4500, signal);
signal.throwIfAborted();
await streamer.joinVoice(ctx.guildId, ctx.voiceChannelId);
await this.humanPause(2500, 5000, signal);
await this.humanPause(6000, 10000, signal);
signal.throwIfAborted();
const [w, h] = this.config.vncResolution.split("x").map((n) => parseInt(n, 10));