Skip to content

Commit

Permalink
𝑭𝑬𝑡𝑰𝑿-𝑩𝑢𝑻-π‘ͺ𝑫
Browse files Browse the repository at this point in the history
  • Loading branch information
Wilsmac authored Nov 6, 2023
1 parent b29b417 commit 9f43c76
Showing 1 changed file with 3 additions and 22 deletions.
25 changes: 3 additions & 22 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ global.conn = makeWASocket(connectionOptions);

conn.isInit = false;
conn.well = false;
conn.logger.info(`Ζ‡α΄€Κ€Ι’α΄€Ι΄α΄…α΄οΌŽοΌŽοΌŽ\n`);
conn.logger.info(`π‘ͺπ’‚π’“π’ˆπ’‚π’π’…π’οΌŽοΌŽοΌŽ\n`);

if (!opts['test']) {
if (global.db) {
Expand All @@ -188,26 +188,7 @@ if (!opts['test']) {
}

if (opts['server']) (await import('./server.js')).default(global.conn, PORT);


/* Y ese fue el momazo mas bueno del mundo
Aunque no dudara tan solo un segundo
Mas no me arrepiento de haberme reido
Por que la grasa es un sentimiento
Y ese fue el momazo mas bueno del mundo
Aunque no dudara tan solo un segundo
que me arrepiento de ser un grasoso
Por que la grasa es un sentimiento
- El waza πŸ‘»πŸ‘»πŸ‘»πŸ‘» (Aiden)
Yo tambien se hacer momazos Aiden...
ahi te va el ajuste de los borrados
inteligentes de las sesiones y de los sub-bot
By (Rey Endymion πŸ‘ΊπŸ‘πŸΌ)
Ninguno es mejor que tilin god
- atte: sk1d */

//----------------------------------------------------------
function clearTmp() {
const tmp = [join(__dirname, './tmp')];
const filename = [];
Expand Down Expand Up @@ -520,6 +501,6 @@ function clockString(ms) {
const h = isNaN(ms) ? '--' : Math.floor(ms / 3600000) % 24;
const m = isNaN(ms) ? '--' : Math.floor(ms / 60000) % 60;
const s = isNaN(ms) ? '--' : Math.floor(ms / 1000) % 60;
return [d, ' Día(s) ️', h, ' Hora(s) ', m, ' Minuto(s) ', s, ' Segundo(s) '].map((v) => v.toString().padStart(2, 0)).join('');
return [d, ' 𝐷𝐼𝐴𝑆(𝑆) ️', h, ' 𝐻𝑂𝑅𝐴(𝑆) ', m, ' π‘€πΌπ‘π‘ˆπ‘‡π‘‚(𝑆) '].map((v) => v.toString().padStart(2, 0)).join('');
}
_quickTest().catch(console.error);

0 comments on commit 9f43c76

Please sign in to comment.