From 2fd5e0fe9e46c24bd1bc8965923d367cd6e16560 Mon Sep 17 00:00:00 2001 From: javis-bot Date: Wed, 10 Jun 2026 11:47:31 +0900 Subject: [PATCH] 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. --- bot/src/stream/selfbot.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/src/stream/selfbot.ts b/bot/src/stream/selfbot.ts index 36bf98b..1b53749 100644 --- a/bot/src/stream/selfbot.ts +++ b/bot/src/stream/selfbot.ts @@ -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));