Skip to content

Instantly share code, notes, and snippets.

@Rdx690
Forked from Trenchkid123/Autobio.md
Last active March 25, 2025 03:54
Show Gist options
  • Select an option

  • Save Rdx690/72aa4530b7c3e74d46ace724e72b8205 to your computer and use it in GitHub Desktop.

Select an option

Save Rdx690/72aa4530b7c3e74d46ace724e72b8205 to your computer and use it in GitHub Desktop.

const { bot } = require('../lib/') let AutoBio = false /* { pattern: 'autobio ?(.*)', fromMe: true, desc: 'bot alive message', type: 'misc', }, */ bot( { on: 'text', fromMe: false, type: 'autoBio', }, async (message, match) => { if (AutoBio == false) { setInterval(() => { const date = new Date() message.client.updateProfileStatus( It's๐ŸŽญ${date.toLocaleString('en-US', { timeZone: 'Asia/Kolkata' })}On${date.toLocaleString('en-US', { weekday: 'long', timeZone: 'Asia/Kolkata'})} by *sแดแดœส€แด€แดŠษชแด›-แด€ษช/ส™แดแด› ๐ฎ๐ฌ๐ž๐ซ * ๐’๐Ž๐”๐‘๐€๐‰๐ˆ๐“-๐€๐ˆ\n\n . ) }, 10 * 1000) AutoBio = true } } )

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment