diff --git a/commands/casino/rob.js b/commands/casino/rob.js index 8497a31..29d9995 100644 --- a/commands/casino/rob.js +++ b/commands/casino/rob.js @@ -6,24 +6,24 @@ module.exports = { aliases: [], description: "Vole les coins de la main d'un membre.", emote: "🦹", - utilisation: "<@membre>", + utilisation: "<@membre|membreID>", permission: 0, async execute(message, args, client) { - const member = message.mentions.users.first(); - if (!member) { - const embed = new EmbedBuilder() - .setTitle("Erreur") - .setDescription("❌ Vous devez mentionner un membre.") - .setColor(await embedColor(message.author.id, message.guild.id)) - .setTimestamp() - .setFooter({ - text: `DemandΓ© par ${message.author.tag}`, - iconURL: message.author.displayAvatarURL(), - }); - + const member = message.mentions.members.first()?.id || args[0]; + if (args.length < 1 && !member) { return message.reply({ - embeds: [embed], + embeds: [ + new EmbedBuilder() + .setTitle("Erreur") + .setDescription("❌ Veuillez spΓ©cifier un membre du serveur.") + .setColor(await embedColor(message.author.id, message.guild.id)) + .setTimestamp() + .setFooter({ + text: `DemandΓ© par ${message.author.tag}`, + iconURL: message.author.displayAvatarURL(), + }), + ], allowedMentions: { repliedUser: false }, }); } @@ -38,30 +38,25 @@ module.exports = { }, ); }); - const memberlist = await new Promise((resolve, reject) => { - db.all( - `SELECT userId FROM users WHERE guildId = ? AND teamId = ?`, - [message.guild.id, user.teamId], - (err, rows) => { - if (err) reject(err); - resolve(rows); - }, - ); - }); - if (memberlist.includes(member)) + + if (user.teamId === member.teamId) { + const embed = new EmbedBuilder() + .setTitle("Erreur") + .setDescription( + `❌ Vous ne pouvez pas voler un membre de votre team.`, + ) + .setColor(await embedColor(message.author.id, message.guild.id)) + .setTimestamp() + .setFooter({ + text: `DemandΓ© par ${message.author.tag}`, + iconURL: message.author.displayAvatarURL(), + }); + return message.reply({ - embeds: [ - new EmbedBuilder() - .setTitle("Erreur") - .setDescription( - "❌ Veuillez choisir un membre qui __n'est pas__ dans votre team.", - ) - .setColor(await embedColor(message.author.id, message.guild.id)) - .setTimestamp() - .setFooter(footer), - ], + embeds: [embed], allowedMentions: { repliedUser: false }, }); + } if (user.lastRob + 7200000 > Date.now()) { const embed = new EmbedBuilder() @@ -85,7 +80,7 @@ module.exports = { const memberInfo = await new Promise((resolve, reject) => { db.get( `SELECT * FROM users WHERE guildId = ? AND userId = ?`, - [message.guild.id, member.id], + [message.guild.id, member], (err, row) => { if (err) reject(err); resolve(row); @@ -97,7 +92,7 @@ module.exports = { const embed = new EmbedBuilder() .setTitle("Erreur") .setDescription( - `❌ Vous ne pouvez pas voler <@${member.id}> pour le moment, il est protΓ©gΓ© par un bouclier anti-vol pendant encore \`${Math.floor((memberInfo.antiRob + 7200000 - Date.now()) / 60000)}\` minutes.`, + `❌ Vous ne pouvez pas voler <@${member}> pour le moment, il est protΓ©gΓ© par un bouclier anti-vol pendant encore \`${Math.floor((memberInfo.antiRob + 7200000 - Date.now()) / 60000)}\` minutes.`, ) .setColor(await embedColor(message.author.id, message.guild.id)) .setTimestamp() @@ -118,7 +113,7 @@ module.exports = { const embed = new EmbedBuilder() .setTitle("Erreur") .setDescription( - `❌ <@${member.id}> n'a pas d'argent sur lui pour que vous puissiez le voler.`, + `❌ <@${member}> n'a pas d'argent sur lui pour que vous puissiez le voler.`, ) .setColor(await embedColor(message.author.id, message.guild.id)) .setTimestamp() @@ -145,7 +140,7 @@ module.exports = { const embed = new EmbedBuilder() .setTitle("Vol") - .setDescription(`πŸ’° Vous avez volΓ© ${amount} Γ  <@${member.id}>.`) + .setDescription(`πŸ’° Vous avez volΓ© ${amount} Γ  <@${member}>.`) .setColor(await embedColor(message.author.id, message.guild.id)) .setTimestamp() .setFooter({ diff --git a/logs/ERROR.txt b/logs/ERROR.txt index 09b104b..b1e9712 100644 --- a/logs/ERROR.txt +++ b/logs/ERROR.txt @@ -1,219 +1,3 @@ -[ERROR] || 21/051/2024 =>> 16h 20m 08s 190ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 20m 08s 193ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 20m 08s 454ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 20m 08s 459ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 21m 08s 190ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 21m 08s 195ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 21m 08s 502ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 21m 08s 534ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 22m 08s 202ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 22m 08s 204ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 22m 08s 466ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 22m 08s 470ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 23m 08s 204ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 23m 08s 211ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 23m 08s 489ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 23m 08s 744ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 24m 08s 218ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 24m 08s 222ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 24m 08s 484ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 24m 08s 487ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 25m 08s 232ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 25m 08s 234ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 25m 08s 496ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 25m 08s 500ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 26m 08s 236ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 26m 08s 239ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 26m 08s 504ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 26m 08s 507ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 27m 08s 239ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 27m 08s 241ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 27m 08s 507ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 27m 08s 509ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 28m 08s 244ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 28m 08s 265ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 28m 08s 513ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 28m 08s 516ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 36m 53s 690ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 53s 707ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 53s 954ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 092ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 187ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 276ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 317ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 344ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 394ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 432ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 484ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 509ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 548ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 575ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 624ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 655ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 682ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 712ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 744ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 776ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 812ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 841ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 875ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 901ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 931ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 957ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 54s 982ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 017ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 053ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 099ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 128ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 160ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 193ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 228ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 275ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 304ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 338ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 368ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 404ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 448ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 576ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 602ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 625ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 674ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 727ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 789ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 822ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 870ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 920ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 55s 992ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 56s 038ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 56s 078ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 56s 156ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 56s 195ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 56s 234ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 56s 278ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 56s 320ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 56s 359ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 56s 460ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 56s 644ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 56s 773ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 56s 902ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 56s 955ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 008ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 038ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 060ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 090ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 111ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 144ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 167ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 190ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 216ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 242ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 273ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 295ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 325ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 356ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 375ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 405ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 428ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 458ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 489ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 508ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 535ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 560ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 591ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 624ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 36m 57s 657ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 37m 51s 725ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 37m 51s 730ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 37m 53s 972ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 37m 53s 975ms || ReferenceError: message is not defined -[ERROR] || 21/051/2024 =>> 16h 38m 16s 397ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 16s 418ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 16s 875ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 16s 992ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 17s 058ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 17s 168ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 17s 234ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 17s 438ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 17s 528ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 17s 598ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 17s 648ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 17s 677ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 17s 712ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 17s 746ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 17s 788ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 17s 830ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 17s 872ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 17s 945ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 17s 978ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 013ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 044ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 078ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 106ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 156ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 189ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 268ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 300ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 345ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 375ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 405ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 446ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 483ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 512ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 543ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 581ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 612ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 646ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 680ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 728ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 763ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 800ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 863ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 896ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 928ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 962ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 18s 994ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 032ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 067ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 106ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 134ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 167ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 207ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 246ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 280ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 312ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 341ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 378ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 414ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 448ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 480ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 516ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 546ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 589ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 616ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 648ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 682ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 716ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 761ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 806ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 833ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 888ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 909ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 943ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 19s 974ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 20s 004ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 20s 046ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 20s 097ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 20s 129ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 20s 166ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 20s 203ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 20s 228ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 20s 281ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 20s 330ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 20s 366ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 20s 523ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 20s 894ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 20s 943ms || Error: SQLITE_ERROR: 4 values for 2 columns -[ERROR] || 21/051/2024 =>> 16h 38m 21s 009ms || Error: SQLITE_ERROR: 4 values for 2 columns [ERROR] || 21/051/2024 =>> 16h 39m 16s 107ms || ReferenceError: message is not defined [ERROR] || 21/051/2024 =>> 16h 39m 16s 142ms || ReferenceError: message is not defined [ERROR] || 21/051/2024 =>> 16h 39m 16s 486ms || ReferenceError: message is not defined @@ -384,4 +168,4 @@ [ERROR] || 09/061/2024 =>> 19h 07m 49s 439ms || DiscordAPIError[40060]: Interaction has already been acknowledged. [ERROR] || 09/061/2024 =>> 19h 08m 31s 411ms || DiscordAPIError[40060]: Interaction has already been acknowledged. [ERROR] || 09/061/2024 =>> 19h 08m 31s 458ms || DiscordAPIError[40060]: Interaction has already been acknowledged. -[ERROR] || 09/061/2024 =>> 19h 19m 51s 351ms || Error [ChannelNotCached]: Could not find the channel where this message came from in the cache! \ No newline at end of file +[ERROR] || 09/061/2024 =>> 19h 19m 51s 351ms || Error [ChannelNotCached]: Could not find the channel where this message came from in the cache! diff --git a/logs/TEXT.txt b/logs/TEXT.txt index ff27b21..7207906 100644 --- a/logs/TEXT.txt +++ b/logs/TEXT.txt @@ -736,277 +736,331 @@ [TEXT] || 09/06/2024 =>> 00h 49m 42s 894ms || [&] Azelie 🍹 #NewLife | rexosouli | me [TEXT] || 09/06/2024 =>> 00h 51m 23s 964ms || [&] Azelie 🍹 #NewLife | rexosouli | me [TEXT] || 09/06/2024 =>> 00h 51m 31s 222ms || [&] Azelie 🍹 #NewLife | rexosouli | tdeposit -[TEXT] || 09/06/2024 =>> 01h 12m 03s 283ms || Events loaded -[TEXT] || 09/06/2024 =>> 01h 12m 03s 340ms || Commands loaded -[TEXT] || 09/06/2024 =>> 01h 12m 04s 349ms || +[TEXT] || 09/06/2024 =>> 00h 57m 54s 638ms || [&] Azelie 🍹 #NewLife | arthur.pbty | work +[TEXT] || 09/06/2024 =>> 00h 57m 55s 026ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 01h 02m 03s 015ms || [&] Azelie 🍹 #NewLife | arthur.pbty | withdraw +[TEXT] || 09/06/2024 =>> 01h 02m 03s 366ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 01h 13m 25s 721ms || [&] Azelie 🍹 #NewLife | .power.x | drop +[TEXT] || 09/06/2024 =>> 01h 15m 18s 601ms || [&] Azelie 🍹 #NewLife | .power.x | bingo +[TEXT] || 09/06/2024 =>> 01h 16m 42s 711ms || [&] Azelie 🍹 #NewLife | .power.x | drop +[TEXT] || 09/06/2024 =>> 01h 17m 22s 324ms || [&] Azelie 🍹 #NewLife | ch1fuyux_505 | tdeposit +[TEXT] || 09/06/2024 =>> 01h 17m 23s 198ms || [&] Azelie 🍹 #NewLife | .power.x | drop +[TEXT] || 09/06/2024 =>> 01h 17m 38s 162ms || [&] Azelie 🍹 #NewLife | .power.x | tdeposit +[TEXT] || 09/06/2024 =>> 01h 17m 44s 465ms || [&] Azelie 🍹 #NewLife | .power.x | me +[TEXT] || 09/06/2024 =>> 01h 17m 56s 718ms || [&] Azelie 🍹 #NewLife | inconnu_3000 | me +[TEXT] || 09/06/2024 =>> 01h 18m 00s 732ms || [&] Azelie 🍹 #NewLife | .power.x | add +[TEXT] || 09/06/2024 =>> 01h 18m 06s 772ms || [&] Azelie 🍹 #NewLife | .power.x | tdeposit +[TEXT] || 09/06/2024 =>> 01h 18m 15s 283ms || [&] Azelie 🍹 #NewLife | inconnu_3000 | tdeposit +[TEXT] || 09/06/2024 =>> 01h 25m 40s 757ms || [&] Azelie 🍹 #NewLife | frysteur__ | tdeposit +[TEXT] || 09/06/2024 =>> 01h 26m 31s 828ms || [&] Azelie 🍹 #NewLife | .power.x | bingo +[TEXT] || 09/06/2024 =>> 01h 26m 43s 602ms || [&] Azelie 🍹 #NewLife | frysteur__ | top +[TEXT] || 09/06/2024 =>> 01h 27m 08s 379ms || [&] Azelie 🍹 #NewLife | frysteur__ | rob +[TEXT] || 09/06/2024 =>> 01h 27m 13s 263ms || [&] Azelie 🍹 #NewLife | frysteur__ | tdeposit +[TEXT] || 09/06/2024 =>> 01h 27m 16s 615ms || [&] Azelie 🍹 #NewLife | frysteur__ | me +[TEXT] || 09/06/2024 =>> 01h 27m 48s 094ms || [&] Azelie 🍹 #NewLife | frysteur__ | team +[TEXT] || 09/06/2024 =>> 01h 28m 24s 484ms || [&] Azelie 🍹 #NewLife | frysteur__ | top +[TEXT] || 09/06/2024 =>> 01h 28m 42s 747ms || [&] Azelie 🍹 #NewLife | .power.x | tdeposit +[TEXT] || 09/06/2024 =>> 01h 28m 45s 701ms || [&] Azelie 🍹 #NewLife | frysteur__ | top +[TEXT] || 09/06/2024 =>> 01h 28m 48s 913ms || [&] Azelie 🍹 #NewLife | .power.x | me +[TEXT] || 09/06/2024 =>> 01h 28m 55s 087ms || [&] Azelie 🍹 #NewLife | inconnu_3000 | tdeposit +[TEXT] || 09/06/2024 =>> 01h 29m 03s 846ms || [&] Azelie 🍹 #NewLife | inconnu_3000 | me +[TEXT] || 09/06/2024 =>> 01h 29m 06s 701ms || [&] Azelie 🍹 #NewLife | .power.x | set +[TEXT] || 09/06/2024 =>> 01h 29m 13s 764ms || [&] Azelie 🍹 #NewLife | frysteur__ | team +[TEXT] || 09/06/2024 =>> 01h 29m 25s 912ms || [&] Azelie 🍹 #NewLife | ch1fuyux_505 | team +[TEXT] || 09/06/2024 =>> 01h 29m 51s 629ms || [&] Azelie 🍹 #NewLife | inconnu_3000 | team +[TEXT] || 09/06/2024 =>> 01h 31m 18s 912ms || [&] Azelie 🍹 #NewLife | frysteur__ | team +[TEXT] || 09/06/2024 =>> 01h 32m 03s 556ms || [&] Azelie 🍹 #NewLife | arthur.pbty | withdraw +[TEXT] || 09/06/2024 =>> 01h 32m 03s 845ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 01h 33m 42s 550ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 01h 33m 53s 585ms || [&] Azelie 🍹 #NewLife | kylian_vl | poulet +[TEXT] || 09/06/2024 =>> 01h 33m 59s 068ms || [&] Azelie 🍹 #NewLife | kylian_vl | work +[TEXT] || 09/06/2024 =>> 01h 34m 10s 497ms || [&] Azelie 🍹 #NewLife | kylian_vl | daily +[TEXT] || 09/06/2024 =>> 01h 34m 17s 219ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 01h 34m 32s 091ms || [&] Azelie 🍹 #NewLife | kylian_vl | roll +[TEXT] || 09/06/2024 =>> 01h 34m 55s 524ms || [&] Azelie 🍹 #NewLife | kylian_vl | poulet +[TEXT] || 09/06/2024 =>> 01h 35m 17s 874ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 01h 35m 25s 675ms || [&] Azelie 🍹 #NewLife | frysteur__ | work +[TEXT] || 09/06/2024 =>> 01h 35m 25s 919ms || [&] Azelie 🍹 #NewLife | kylian_vl | team +[TEXT] || 09/06/2024 =>> 01h 35m 36s 118ms || [&] Azelie 🍹 #NewLife | frysteur__ | tdeposit +[TEXT] || 09/06/2024 =>> 01h 35m 40s 602ms || [&] Azelie 🍹 #NewLife | frysteur__ | team +[TEXT] || 09/06/2024 =>> 01h 35m 42s 171ms || [&] Azelie 🍹 #NewLife | .power.x | top +[TEXT] || 09/06/2024 =>> 01h 36m 00s 978ms || [&] Azelie 🍹 #NewLife | frysteur__ | top +[TEXT] || 09/06/2024 =>> 01h 37m 05s 469ms || [&] Azelie 🍹 #NewLife | .power.x | bingo +[TEXT] || 09/06/2024 =>> 01h 37m 41s 205ms || [&] Azelie 🍹 #NewLife | .power.x | bingo +[TEXT] || 09/06/2024 =>> 01h 38m 09s 646ms || [&] Azelie 🍹 #NewLife | .power.x | bingo +[TEXT] || 09/06/2024 =>> 01h 38m 46s 247ms || [&] Azelie 🍹 #NewLife | .power.x | bingo +[TEXT] || 09/06/2024 =>> 01h 39m 19s 872ms || [&] Azelie 🍹 #NewLife | .power.x | bingo +[TEXT] || 09/06/2024 =>> 01h 40m 21s 881ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 01h 40m 30s 973ms || [&] Azelie 🍹 #NewLife | .power.x | work +[TEXT] || 09/06/2024 =>> 01h 40m 34s 911ms || [&] Azelie 🍹 #NewLife | .power.x | tdeposit +[TEXT] || 09/06/2024 =>> 01h 40m 43s 009ms || [&] Azelie 🍹 #NewLife | kylian_vl | poulet +[TEXT] || 09/06/2024 =>> 01h 40m 44s 005ms || [&] Azelie 🍹 #NewLife | .power.x | Arep +[TEXT] || 09/06/2024 =>> 01h 40m 47s 288ms || [&] Azelie 🍹 #NewLife | .power.x | trep +[TEXT] || 09/06/2024 =>> 01h 41m 05s 463ms || [&] Azelie 🍹 #NewLife | kylian_vl | tdeposit +[TEXT] || 09/06/2024 =>> 01h 41m 12s 077ms || [&] Azelie 🍹 #NewLife | kylian_vl | team +[TEXT] || 09/06/2024 =>> 01h 41m 24s 002ms || [&] Azelie 🍹 #NewLife | kylian_vl | roll +[TEXT] || 09/06/2024 =>> 01h 42m 30s 211ms || [&] Azelie 🍹 #NewLife | kylian_vl | top +[TEXT] || 09/06/2024 =>> 01h 44m 11s 187ms || [&] Azelie 🍹 #NewLife | frysteur__ | twithdraw +[TEXT] || 09/06/2024 =>> 01h 45m 55s 083ms || [&] Azelie 🍹 #NewLife | arthur.pbty | rep +[TEXT] || 09/06/2024 =>> 01h 45m 55s 618ms || [&] Azelie 🍹 #NewLife | arthur.pbty | rob +[TEXT] || 09/06/2024 =>> 01h 45m 56s 293ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 01h 46m 05s 488ms || [&] Azelie 🍹 #NewLife | ch1fuyux_505 | team +[TEXT] || 09/06/2024 =>> 01h 47m 15s 098ms || [&] Azelie 🍹 #NewLife | .power.x | team +[TEXT] || 09/06/2024 =>> 01h 51m 21s 031ms || [&] Azelie 🍹 #NewLife | ch1fuyux_505 | team +[TEXT] || 09/06/2024 =>> 01h 55m 13s 769ms || [&] Azelie 🍹 #NewLife | .power.x | work +[TEXT] || 09/06/2024 =>> 01h 55m 22s 040ms || [&] Azelie 🍹 #NewLife | .power.x | top +[TEXT] || 09/06/2024 =>> 01h 55m 53s 731ms || [&] Azelie 🍹 #NewLife | .power.x | top +[TEXT] || 09/06/2024 =>> 01h 56m 07s 916ms || [&] Azelie 🍹 #NewLife | .power.x | rob +[TEXT] || 09/06/2024 =>> 01h 56m 19s 053ms || [&] Azelie 🍹 #NewLife | .power.x | deposit +[TEXT] || 09/06/2024 =>> 01h 56m 34s 623ms || [&] Azelie 🍹 #NewLife | .power.x | team +[TEXT] || 09/06/2024 =>> 01h 56m 54s 727ms || [&] Azelie 🍹 #NewLife | .power.x | team +[TEXT] || 09/06/2024 =>> 01h 56m 56s 299ms || [&] Azelie 🍹 #NewLife | inconnu_3000 | rob +[TEXT] || 09/06/2024 =>> 01h 57m 10s 244ms || [&] Azelie 🍹 #NewLife | inconnu_3000 | rob +[TEXT] || 09/06/2024 =>> 01h 58m 55s 191ms || [&] Azelie 🍹 #NewLife | arthur.pbty | work +[TEXT] || 09/06/2024 =>> 01h 58m 55s 508ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 01h 59m 02s 368ms || [&] Azelie 🍹 #NewLife | inconnu_3000 | rob +[TEXT] || 09/06/2024 =>> 02h 01m 01s 294ms || [&] Azelie 🍹 #NewLife | inconnu_3000 | tdeposit +[TEXT] || 09/06/2024 =>> 02h 02m 04s 089ms || [&] Azelie 🍹 #NewLife | arthur.pbty | withdraw +[TEXT] || 09/06/2024 =>> 02h 02m 04s 333ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 02h 03m 17s 336ms || [&] Azelie 🍹 #NewLife | .power.x | me +[TEXT] || 09/06/2024 =>> 02h 13m 12s 907ms || [&] Azelie 🍹 #NewLife | inconnu_3000 | rob +[TEXT] || 09/06/2024 =>> 02h 14m 45s 411ms || [&] Azelie 🍹 #NewLife | frysteur__ | rep +[TEXT] || 09/06/2024 =>> 02h 15m 03s 962ms || [&] Azelie 🍹 #NewLife | frysteur__ | rep +[TEXT] || 09/06/2024 =>> 02h 15m 39s 641ms || [&] Azelie 🍹 #NewLife | frysteur__ | rep +[TEXT] || 09/06/2024 =>> 02h 15m 57s 695ms || [&] Azelie 🍹 #NewLife | inconnu_3000 | rep +[TEXT] || 09/06/2024 =>> 02h 16m 20s 115ms || [&] Azelie 🍹 #NewLife | ch1fuyux_505 | tdeposit +[TEXT] || 09/06/2024 =>> 02h 16m 25s 279ms || [&] Azelie 🍹 #NewLife | ch1fuyux_505 | work +[TEXT] || 09/06/2024 =>> 02h 16m 36s 507ms || [&] Azelie 🍹 #NewLife | inconnu_3000 | work +[TEXT] || 09/06/2024 =>> 02h 16m 50s 254ms || [&] Azelie 🍹 #NewLife | inconnu_3000 | tdeposit +[TEXT] || 09/06/2024 =>> 02h 17m 22s 749ms || [&] Azelie 🍹 #NewLife | frysteur__ | rep +[TEXT] || 09/06/2024 =>> 02h 17m 39s 251ms || [&] Azelie 🍹 #NewLife | frysteur__ | me +[TEXT] || 09/06/2024 =>> 02h 17m 45s 926ms || [&] Azelie 🍹 #NewLife | frysteur__ | work +[TEXT] || 09/06/2024 =>> 02h 17m 48s 431ms || [&] Azelie 🍹 #NewLife | ch1fuyux_505 | team +[TEXT] || 09/06/2024 =>> 02h 17m 57s 799ms || [&] Azelie 🍹 #NewLife | frysteur__ | top +[TEXT] || 09/06/2024 =>> 02h 18m 08s 715ms || [&] Azelie 🍹 #NewLife | ch1fuyux_505 | team +[TEXT] || 09/06/2024 =>> 02h 18m 15s 273ms || [&] Azelie 🍹 #NewLife | ch1fuyux_505 | work +[TEXT] || 09/06/2024 =>> 02h 19m 42s 003ms || [&] Azelie 🍹 #NewLife | .power.x | rep +[TEXT] || 09/06/2024 =>> 02h 19m 45s 552ms || [&] Azelie 🍹 #NewLife | .power.x | rep +[TEXT] || 09/06/2024 =>> 02h 19m 53s 302ms || [&] Azelie 🍹 #NewLife | .power.x | trep +[TEXT] || 09/06/2024 =>> 02h 19m 58s 842ms || [&] Azelie 🍹 #NewLife | .power.x | tdeposit +[TEXT] || 09/06/2024 =>> 02h 20m 02s 491ms || [&] Azelie 🍹 #NewLife | ch1fuyux_505 | rep +[TEXT] || 09/06/2024 =>> 02h 20m 02s 605ms || [&] Azelie 🍹 #NewLife | .power.x | work +[TEXT] || 09/06/2024 =>> 02h 20m 09s 937ms || [&] Azelie 🍹 #NewLife | .power.x | me +[TEXT] || 09/06/2024 =>> 02h 20m 11s 160ms || [&] Azelie 🍹 #NewLife | ch1fuyux_505 | trep +[TEXT] || 09/06/2024 =>> 02h 20m 20s 762ms || [&] Azelie 🍹 #NewLife | .power.x | Arep +[TEXT] || 09/06/2024 =>> 02h 20m 29s 245ms || [&] Azelie 🍹 #NewLife | frysteur__ | trep +[TEXT] || 09/06/2024 =>> 02h 20m 44s 454ms || [&] Azelie 🍹 #NewLife | frysteur__ | team +[TEXT] || 09/06/2024 =>> 02h 24m 21s 019ms || [&] Azelie 🍹 #NewLife | .power.x | bingo +[TEXT] || 09/06/2024 =>> 02h 25m 56s 069ms || [&] Azelie 🍹 #NewLife | inconnu_3000 | tdeposit +[TEXT] || 09/06/2024 =>> 02h 26m 54s 870ms || [&] Azelie 🍹 #NewLife | .power.x | work +[TEXT] || 09/06/2024 =>> 02h 26m 58s 301ms || [&] Azelie 🍹 #NewLife | .power.x | tdeposit +[TEXT] || 09/06/2024 =>> 02h 27m 08s 626ms || [&] Azelie 🍹 #NewLife | .power.x | team +[TEXT] || 09/06/2024 =>> 02h 27m 26s 217ms || [&] Azelie 🍹 #NewLife | inconnu_3000 | tdeposit +[TEXT] || 09/06/2024 =>> 02h 28m 02s 033ms || [&] Azelie 🍹 #NewLife | .power.x | me +[TEXT] || 09/06/2024 =>> 02h 31m 56s 034ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tcadenas +[TEXT] || 09/06/2024 =>> 02h 32m 04s 634ms || [&] Azelie 🍹 #NewLife | arthur.pbty | withdraw +[TEXT] || 09/06/2024 =>> 02h 32m 04s 954ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 02h 32m 19s 889ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 02h 32m 22s 271ms || [&] Azelie 🍹 #NewLife | kylian_vl | work +[TEXT] || 09/06/2024 =>> 02h 32m 30s 726ms || [&] Azelie 🍹 #NewLife | kylian_vl | daily +[TEXT] || 09/06/2024 =>> 02h 32m 34s 318ms || [&] Azelie 🍹 #NewLife | kylian_vl | work +[TEXT] || 09/06/2024 =>> 02h 32m 40s 740ms || [&] Azelie 🍹 #NewLife | kylian_vl | roll +[TEXT] || 09/06/2024 =>> 02h 33m 46s 636ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 02h 39m 29s 486ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 02h 39m 36s 354ms || [&] Azelie 🍹 #NewLife | kylian_vl | poulet +[TEXT] || 09/06/2024 =>> 02h 39m 46s 478ms || [&] Azelie 🍹 #NewLife | kylian_vl | poulet +[TEXT] || 09/06/2024 =>> 02h 39m 47s 166ms || [&] Azelie 🍹 #NewLife | she_or_me | trep +[TEXT] || 09/06/2024 =>> 02h 39m 49s 912ms || [&] Azelie 🍹 #NewLife | she_or_me | Arep +[TEXT] || 09/06/2024 =>> 02h 39m 52s 076ms || [&] Azelie 🍹 #NewLife | she_or_me | tdeposit +[TEXT] || 09/06/2024 =>> 02h 39m 57s 644ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 02h 39m 57s 726ms || [&] Azelie 🍹 #NewLife | she_or_me | work +[TEXT] || 09/06/2024 =>> 02h 40m 02s 639ms || [&] Azelie 🍹 #NewLife | kylian_vl | poulet +[TEXT] || 09/06/2024 =>> 02h 40m 04s 805ms || [&] Azelie 🍹 #NewLife | she_or_me | deposit +[TEXT] || 09/06/2024 =>> 02h 40m 15s 430ms || [&] Azelie 🍹 #NewLife | kylian_vl | poulet +[TEXT] || 09/06/2024 =>> 02h 42m 19s 916ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 02h 42m 25s 003ms || [&] Azelie 🍹 #NewLife | kylian_vl | roll +[TEXT] || 09/06/2024 =>> 02h 43m 38s 333ms || [&] Azelie 🍹 #NewLife | .power.x | me +[TEXT] || 09/06/2024 =>> 02h 43m 53s 886ms || [&] Azelie 🍹 #NewLife | .power.x | roll +[TEXT] || 09/06/2024 =>> 02h 43m 56s 619ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 02h 44m 09s 013ms || [&] Azelie 🍹 #NewLife | .power.x | deposit +[TEXT] || 09/06/2024 =>> 02h 44m 14s 549ms || [&] Azelie 🍹 #NewLife | kylian_vl | team +[TEXT] || 09/06/2024 =>> 02h 44m 34s 223ms || [&] Azelie 🍹 #NewLife | .power.x | me +[TEXT] || 09/06/2024 =>> 02h 50m 52s 365ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 02h 51m 16s 157ms || Events loaded +[TEXT] || 09/06/2024 =>> 02h 51m 16s 191ms || Commands loaded +[TEXT] || 09/06/2024 =>> 02h 51m 17s 184ms || -[TEXT] || 09/06/2024 =>> 01h 12m 04s 384ms || [READY] Coins#9235 est prΓͺt ||| 5 serveurs | 525 utilisateurs -[TEXT] || 09/06/2024 =>> 01h 12m 34s 619ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | bingo -[TEXT] || 09/06/2024 =>> 01h 20m 50s 522ms || Events loaded -[TEXT] || 09/06/2024 =>> 01h 20m 50s 565ms || Commands loaded -[TEXT] || 09/06/2024 =>> 01h 20m 51s 496ms || +[TEXT] || 09/06/2024 =>> 02h 51m 17s 271ms || [READY] Azelie coins#1300 est prΓͺt ||| 1 serveurs | 2600 utilisateurs +[TEXT] || 09/06/2024 =>> 02h 51m 32s 730ms || [&] Azelie 🍹 #NewLife | kylian_vl | team +[TEXT] || 09/06/2024 =>> 02h 51m 47s 793ms || [&] Azelie 🍹 #NewLife | kylian_vl | top +[TEXT] || 09/06/2024 =>> 02h 52m 18s 742ms || [&] Azelie 🍹 #NewLife | kylian_vl | kill +[TEXT] || 09/06/2024 =>> 02h 53m 37s 935ms || [&] Azelie 🍹 #NewLife | kylian_vl | rob +[TEXT] || 09/06/2024 =>> 02h 53m 48s 797ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 02h 53m 54s 216ms || [&] Azelie 🍹 #NewLife | kylian_vl | work +[TEXT] || 09/06/2024 =>> 02h 54m 07s 697ms || [&] Azelie 🍹 #NewLife | kylian_vl | roll +[TEXT] || 09/06/2024 =>> 02h 54m 22s 950ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 02h 54m 30s 805ms || [&] Azelie 🍹 #NewLife | kylian_vl | poulet +[TEXT] || 09/06/2024 =>> 02h 54m 46s 773ms || [&] Azelie 🍹 #NewLife | kylian_vl | poulet +[TEXT] || 09/06/2024 =>> 02h 54m 47s 999ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 02h 54m 56s 763ms || [&] Azelie 🍹 #NewLife | kylian_vl | poulet +[TEXT] || 09/06/2024 =>> 02h 55m 00s 229ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 02h 55m 10s 219ms || [&] Azelie 🍹 #NewLife | kylian_vl | poulet +[TEXT] || 09/06/2024 =>> 02h 55m 37s 219ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 02h 55m 43s 917ms || [&] Azelie 🍹 #NewLife | kylian_vl | poulet +[TEXT] || 09/06/2024 =>> 02h 55m 53s 452ms || [&] Azelie 🍹 #NewLife | kylian_vl | poulet +[TEXT] || 09/06/2024 =>> 02h 55m 55s 784ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 02h 56m 04s 876ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 02h 56m 06s 941ms || [&] Azelie 🍹 #NewLife | kylian_vl | work +[TEXT] || 09/06/2024 =>> 02h 59m 56s 633ms || [&] Azelie 🍹 #NewLife | arthur.pbty | work +[TEXT] || 09/06/2024 =>> 02h 59m 56s 773ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 03h 02m 05s 363ms || [&] Azelie 🍹 #NewLife | arthur.pbty | withdraw +[TEXT] || 09/06/2024 =>> 03h 02m 05s 626ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 03h 21m 57s 044ms || [&] Azelie 🍹 #NewLife | arthur.pbty | hack +[TEXT] || 09/06/2024 =>> 03h 21m 57s 178ms || [&] Azelie 🍹 #NewLife | arthur.pbty | braquage +[TEXT] || 09/06/2024 =>> 03h 21m 57s 464ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 03h 32m 06s 034ms || [&] Azelie 🍹 #NewLife | arthur.pbty | withdraw +[TEXT] || 09/06/2024 =>> 03h 32m 06s 321ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 03h 43m 19s 219ms || [&] Azelie 🍹 #NewLife | kylian_vl | work +[TEXT] || 09/06/2024 =>> 03h 43m 23s 451ms || [&] Azelie 🍹 #NewLife | kylian_vl | poulet +[TEXT] || 09/06/2024 =>> 03h 46m 57s 605ms || [&] Azelie 🍹 #NewLife | arthur.pbty | rep +[TEXT] || 09/06/2024 =>> 03h 46m 57s 706ms || [&] Azelie 🍹 #NewLife | arthur.pbty | rob +[TEXT] || 09/06/2024 =>> 03h 46m 57s 827ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 04h 00m 57s 508ms || [&] Azelie 🍹 #NewLife | arthur.pbty | work +[TEXT] || 09/06/2024 =>> 04h 00m 57s 789ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 04h 02m 06s 877ms || [&] Azelie 🍹 #NewLife | arthur.pbty | withdraw +[TEXT] || 09/06/2024 =>> 04h 02m 06s 967ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 04h 31m 58s 483ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tcadenas +[TEXT] || 09/06/2024 =>> 04h 32m 07s 260ms || [&] Azelie 🍹 #NewLife | arthur.pbty | withdraw +[TEXT] || 09/06/2024 =>> 04h 32m 07s 530ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 04h 32m 52s 336ms || [&] Azelie 🍹 #NewLife | kylian_vl | help +[TEXT] || 09/06/2024 =>> 04h 33m 08s 963ms || [&] Azelie 🍹 #NewLife | kylian_vl | work +[TEXT] || 09/06/2024 =>> 04h 33m 13s 841ms || [&] Azelie 🍹 #NewLife | kylian_vl | poulet +[TEXT] || 09/06/2024 =>> 04h 34m 28s 431ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 04h 34m 31s 010ms || [&] Azelie 🍹 #NewLife | kylian_vl | team +[TEXT] || 09/06/2024 =>> 04h 34m 36s 757ms || [&] Azelie 🍹 #NewLife | kylian_vl | top +[TEXT] || 09/06/2024 =>> 04h 35m 07s 448ms || [&] Azelie 🍹 #NewLife | kylian_vl | rob +[TEXT] || 09/06/2024 =>> 04h 35m 13s 693ms || [&] Azelie 🍹 #NewLife | kylian_vl | work +[TEXT] || 09/06/2024 =>> 04h 44m 57s 450ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 04h 45m 03s 689ms || [&] Azelie 🍹 #NewLife | kylian_vl | poulet +[TEXT] || 09/06/2024 =>> 04h 45m 16s 686ms || [&] Azelie 🍹 #NewLife | kylian_vl | poulet +[TEXT] || 09/06/2024 =>> 10h 16m 12s 607ms || [&] Azelie 🍹 #NewLife | .power.x | work +[TEXT] || 09/06/2024 =>> 10h 16m 16s 745ms || [&] Azelie 🍹 #NewLife | .power.x | daily +[TEXT] || 09/06/2024 =>> 10h 16m 24s 930ms || [&] Azelie 🍹 #NewLife | .power.x | deposit +[TEXT] || 09/06/2024 =>> 10h 22m 56s 555ms || [&] Azelie 🍹 #NewLife | .power.x | tdeposit +[TEXT] || 09/06/2024 =>> 10h 22m 58s 059ms || [&] Azelie 🍹 #NewLife | .power.x | team +[TEXT] || 09/06/2024 =>> 10h 23m 14s 131ms || [&] Azelie 🍹 #NewLife | .power.x | top +[TEXT] || 09/06/2024 =>> 10h 23m 25s 277ms || [&] Azelie 🍹 #NewLife | .power.x | withdraw +[TEXT] || 09/06/2024 =>> 10h 23m 30s 147ms || [&] Azelie 🍹 #NewLife | .power.x | tdeposit +[TEXT] || 09/06/2024 =>> 10h 23m 33s 188ms || [&] Azelie 🍹 #NewLife | .power.x | team +[TEXT] || 09/06/2024 =>> 10h 24m 10s 268ms || [&] Azelie 🍹 #NewLife | .power.x | drop +[TEXT] || 09/06/2024 =>> 10h 32m 06s 758ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tcadenas +[TEXT] || 09/06/2024 =>> 10h 32m 15s 554ms || [&] Azelie 🍹 #NewLife | arthur.pbty | withdraw +[TEXT] || 09/06/2024 =>> 10h 32m 15s 979ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 10h 34m 09s 373ms || [&] Azelie 🍹 #NewLife | 1_sung_1 | work +[TEXT] || 09/06/2024 =>> 10h 34m 13s 144ms || [&] Azelie 🍹 #NewLife | 1_sung_1 | me +[TEXT] || 09/06/2024 =>> 10h 34m 21s 820ms || [&] Azelie 🍹 #NewLife | 1_sung_1 | rep +[TEXT] || 09/06/2024 =>> 10h 34m 29s 976ms || [&] Azelie 🍹 #NewLife | 1_sung_1 | trep +[TEXT] || 09/06/2024 =>> 10h 34m 35s 195ms || [&] Azelie 🍹 #NewLife | 1_sung_1 | me +[TEXT] || 09/06/2024 =>> 10h 34m 47s 683ms || [&] Azelie 🍹 #NewLife | 1_sung_1 | team +[TEXT] || 09/06/2024 =>> 10h 35m 47s 647ms || [&] Azelie 🍹 #NewLife | .power.x | rep +[TEXT] || 09/06/2024 =>> 10h 35m 57s 742ms || [&] Azelie 🍹 #NewLife | .power.x | trep +[TEXT] || 09/06/2024 =>> 10h 36m 06s 279ms || [&] Azelie 🍹 #NewLife | .power.x | Arep +[TEXT] || 09/06/2024 =>> 10h 40m 59s 893ms || [&] Azelie 🍹 #NewLife | .power.x | bingo +[TEXT] || 09/06/2024 =>> 10h 46m 51s 352ms || [&] Azelie 🍹 #NewLife | .power.x | top +[TEXT] || 09/06/2024 =>> 10h 46m 56s 089ms || [&] Azelie 🍹 #NewLife | .power.x | team +[TEXT] || 09/06/2024 =>> 10h 47m 03s 841ms || [&] Azelie 🍹 #NewLife | .power.x | rob +[TEXT] || 09/06/2024 =>> 10h 47m 13s 472ms || [&] Azelie 🍹 #NewLife | .power.x | pay +[TEXT] || 09/06/2024 =>> 10h 47m 26s 850ms || [&] Azelie 🍹 #NewLife | .power.x | pay +[TEXT] || 09/06/2024 =>> 10h 49m 08s 771ms || Events loaded +[TEXT] || 09/06/2024 =>> 10h 49m 08s 810ms || Commands loaded +[TEXT] || 09/06/2024 =>> 10h 49m 09s 827ms || -[TEXT] || 09/06/2024 =>> 01h 20m 51s 526ms || [READY] Coins#9235 est prΓͺt ||| 5 serveurs | 525 utilisateurs -[TEXT] || 09/06/2024 =>> 01h 21m 23s 158ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | reset-guild -[TEXT] || 09/06/2024 =>> 01h 21m 23s 221ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | reset-guild -[TEXT] || 09/06/2024 =>> 01h 21m 23s 285ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | reset-guild -[TEXT] || 09/06/2024 =>> 01h 21m 23s 357ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | help -[TEXT] || 09/06/2024 =>> 01h 21m 52s 559ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | daily -[TEXT] || 09/06/2024 =>> 01h 21m 57s 196ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | work -[TEXT] || 09/06/2024 =>> 01h 22m 37s 651ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | help -[TEXT] || 09/06/2024 =>> 01h 22m 48s 920ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | team -[TEXT] || 09/06/2024 =>> 01h 23m 20s 066ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | bingo -[TEXT] || 09/06/2024 =>> 01h 31m 26s 650ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | bingo -[TEXT] || 09/06/2024 =>> 01h 31m 57s 628ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | bingo -[TEXT] || 09/06/2024 =>> 01h 32m 07s 493ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tcreate -[TEXT] || 09/06/2024 =>> 01h 34m 05s 195ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | bingo -[TEXT] || 09/06/2024 =>> 01h 34m 11s 850ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | help -[TEXT] || 09/06/2024 =>> 01h 35m 14s 949ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | bingo -[TEXT] || 09/06/2024 =>> 02h 00m 42s 129ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tinvite -[TEXT] || 09/06/2024 =>> 02h 01m 03s 614ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tinvite -[TEXT] || 09/06/2024 =>> 02h 01m 13s 170ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tinvite -[TEXT] || 09/06/2024 =>> 02h 01m 47s 584ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tpromote -[TEXT] || 09/06/2024 =>> 02h 02m 04s 858ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tpromote -[TEXT] || 09/06/2024 =>> 02h 02m 13s 779ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tinvite -[TEXT] || 09/06/2024 =>> 02h 20m 29s 968ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tinvite -[TEXT] || 09/06/2024 =>> 02h 20m 31s 300ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tinvite -[TEXT] || 09/06/2024 =>> 02h 20m 32s 751ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tinvite -[TEXT] || 09/06/2024 =>> 02h 20m 33s 760ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tinvite -[TEXT] || 09/06/2024 =>> 02h 20m 34s 655ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tinvite -[TEXT] || 09/06/2024 =>> 02h 21m 12s 940ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tpromote -[TEXT] || 09/06/2024 =>> 02h 21m 22s 436ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | team -[TEXT] || 09/06/2024 =>> 02h 21m 51s 225ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tdeposit -[TEXT] || 09/06/2024 =>> 02h 21m 54s 146ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | work -[TEXT] || 09/06/2024 =>> 02h 21m 55s 428ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tdeposit -[TEXT] || 09/06/2024 =>> 02h 50m 52s 749ms || Events loaded -[TEXT] || 09/06/2024 =>> 02h 50m 52s 793ms || Commands loaded -[TEXT] || 09/06/2024 =>> 02h 50m 53s 646ms || +[TEXT] || 09/06/2024 =>> 10h 49m 09s 865ms || [READY] Azelie coins#1300 est prΓͺt ||| 1 serveurs | 2602 utilisateurs +[TEXT] || 09/06/2024 =>> 10h 50m 38s 960ms || Events loaded +[TEXT] || 09/06/2024 =>> 10h 50m 39s 019ms || Commands loaded +[TEXT] || 09/06/2024 =>> 10h 50m 40s 144ms || -[TEXT] || 09/06/2024 =>> 02h 50m 53s 674ms || [READY] Coins#9235 est prΓͺt ||| 5 serveurs | 525 utilisateurs -[TEXT] || 09/06/2024 =>> 10h 22m 33s 953ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | work -[TEXT] || 09/06/2024 =>> 10h 22m 37s 500ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | daily -[TEXT] || 09/06/2024 =>> 10h 22m 41s 935ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | recolt -[TEXT] || 09/06/2024 =>> 10h 22m 47s 500ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tdeposit -[TEXT] || 09/06/2024 =>> 12h 32m 52s 048ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | twithdraw -[TEXT] || 09/06/2024 =>> 12h 32m 56s 100ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | twithdraw -[TEXT] || 09/06/2024 =>> 12h 33m 02s 357ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tdelete -[TEXT] || 09/06/2024 =>> 12h 33m 10s 113ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tcreate -[TEXT] || 09/06/2024 =>> 12h 33m 28s 829ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tdeposit -[TEXT] || 09/06/2024 =>> 12h 33m 37s 055ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tinvite -[TEXT] || 09/06/2024 =>> 12h 33m 44s 970ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tinvite -[TEXT] || 09/06/2024 =>> 12h 34m 18s 033ms || [&] 【 * x 1 】ℒ 0.47k | inconnu_3000 | team -[TEXT] || 09/06/2024 =>> 12h 34m 28s 551ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tpromote -[TEXT] || 09/06/2024 =>> 12h 34m 35s 866ms || [&] 【 * x 1 】ℒ 0.47k | inconnu_3000 | tdeposit -[TEXT] || 09/06/2024 =>> 12h 34m 41s 414ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | work -[TEXT] || 09/06/2024 =>> 12h 34m 43s 968ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | daily -[TEXT] || 09/06/2024 =>> 12h 34m 47s 062ms || [&] 【 * x 1 】ℒ 0.47k | .power.x | tdeposit -[TEXT] || 09/06/2024 =>> 12h 34m 51s 798ms || [&] 【 * x 1 】ℒ 0.47k | inconnu_3000 | daily -[TEXT] || 09/06/2024 =>> 12h 35m 07s 674ms || [&] 【 * x 1 】ℒ 0.47k | inconnu_3000 | work -[TEXT] || 09/06/2024 =>> 12h 35m 15s 638ms || [&] 【 * x 1 】ℒ 0.47k | inconnu_3000 | deposit -[TEXT] || 09/06/2024 =>> 12h 35m 50s 106ms || [&] 【 * x 1 】ℒ 0.47k | inconnu_3000 | tdeposit -[TEXT] || 09/06/2024 =>> 13h 08m 49s 154ms || [&] 【 * x 1 】ℒ 0.47k | roxasytb | help -[TEXT] || 09/06/2024 =>> 13h 08m 57s 345ms || [&] 【 * x 1 】ℒ 0.47k | roxasytb | help -[TEXT] || 09/06/2024 =>> 18h 49m 58s 283ms || Events loaded -[TEXT] || 09/06/2024 =>> 18h 49m 58s 333ms || Commands loaded -[TEXT] || 09/06/2024 =>> 18h 49m 59s 216ms || +[TEXT] || 09/06/2024 =>> 10h 50m 40s 181ms || [READY] Azelie coins#1300 est prΓͺt ||| 1 serveurs | 2602 utilisateurs +[TEXT] || 09/06/2024 =>> 10h 50m 49s 812ms || [&] Azelie 🍹 #NewLife | .power.x | rob +[TEXT] || 09/06/2024 =>> 10h 52m 19s 332ms || [&] Azelie 🍹 #NewLife | bycrooz | top +[TEXT] || 09/06/2024 =>> 10h 52m 32s 276ms || [&] Azelie 🍹 #NewLife | bycrooz | rob +[TEXT] || 09/06/2024 =>> 10h 52m 40s 886ms || [&] Azelie 🍹 #NewLife | bycrooz | me +[TEXT] || 09/06/2024 =>> 10h 53m 06s 432ms || [&] Azelie 🍹 #NewLife | .power.x | rep +[TEXT] || 09/06/2024 =>> 10h 53m 12s 209ms || [&] Azelie 🍹 #NewLife | .power.x | rob +[TEXT] || 09/06/2024 =>> 10h 54m 05s 306ms || Events loaded +[TEXT] || 09/06/2024 =>> 10h 54m 05s 341ms || Commands loaded +[TEXT] || 09/06/2024 =>> 10h 54m 06s 430ms || -[TEXT] || 09/06/2024 =>> 18h 49m 59s 253ms || [READY] Coins#9235 est prΓͺt ||| 6 serveurs | 539 utilisateurs -[TEXT] || 09/06/2024 =>> 18h 55m 40s 455ms || [&] Lieaz | .power.x | setRolePerm -[TEXT] || 09/06/2024 =>> 18h 55m 49s 588ms || [&] Lieaz | .power.x | setRolePerm -[TEXT] || 09/06/2024 =>> 18h 56m 31s 533ms || [&] Lieaz | .power.x | setRolePerm -[TEXT] || 09/06/2024 =>> 18h 56m 50s 331ms || [&] Lieaz | .power.x | team -[TEXT] || 09/06/2024 =>> 18h 57m 09s 431ms || [&] Lieaz | .power.x | help -[TEXT] || 09/06/2024 =>> 18h 57m 12s 467ms || [&] Lieaz | .power.x | work -[TEXT] || 09/06/2024 =>> 18h 57m 15s 262ms || [&] Lieaz | .power.x | daily -[TEXT] || 09/06/2024 =>> 18h 57m 23s 527ms || [&] Lieaz | 1_sung_1 | work -[TEXT] || 09/06/2024 =>> 18h 57m 26s 477ms || [&] Lieaz | 1_sung_1 | daily -[TEXT] || 09/06/2024 =>> 18h 57m 37s 930ms || [&] Lieaz | bycrooz | work -[TEXT] || 09/06/2024 =>> 18h 57m 38s 842ms || [&] Lieaz | 1_sung_1 | me -[TEXT] || 09/06/2024 =>> 18h 57m 39s 839ms || [&] Lieaz | bycrooz | daily -[TEXT] || 09/06/2024 =>> 18h 57m 48s 720ms || [&] Lieaz | bycrooz | top -[TEXT] || 09/06/2024 =>> 18h 57m 55s 091ms || [&] Lieaz | bycrooz | rob -[TEXT] || 09/06/2024 =>> 18h 57m 59s 093ms || [&] Lieaz | bycrooz | deposit -[TEXT] || 09/06/2024 =>> 18h 58m 01s 573ms || [&] Lieaz | bycrooz | deposit -[TEXT] || 09/06/2024 =>> 18h 58m 05s 455ms || [&] Lieaz | .power.x | tdeposit -[TEXT] || 09/06/2024 =>> 18h 58m 09s 605ms || [&] Lieaz | bycrooz | rep -[TEXT] || 09/06/2024 =>> 18h 58m 11s 492ms || [&] Lieaz | .power.x | deposit -[TEXT] || 09/06/2024 =>> 18h 58m 20s 272ms || [&] Lieaz | 1_sung_1 | braquage -[TEXT] || 09/06/2024 =>> 18h 58m 27s 625ms || [&] Lieaz | bycrooz | me -[TEXT] || 09/06/2024 =>> 18h 58m 36s 782ms || [&] Lieaz | bycrooz | withdraw -[TEXT] || 09/06/2024 =>> 18h 58m 45s 045ms || [&] Lieaz | bycrooz | pay -[TEXT] || 09/06/2024 =>> 18h 58m 53s 669ms || [&] Lieaz | bycrooz | pay -[TEXT] || 09/06/2024 =>> 18h 59m 09s 688ms || [&] Lieaz | 1_sung_1 | withdraw -[TEXT] || 09/06/2024 =>> 18h 59m 28s 192ms || [&] Lieaz | pablo093940 | daily -[TEXT] || 09/06/2024 =>> 18h 59m 36s 606ms || [&] Lieaz | pablo093940 | work -[TEXT] || 09/06/2024 =>> 18h 59m 39s 568ms || [&] Lieaz | .power.x | me -[TEXT] || 09/06/2024 =>> 18h 59m 42s 875ms || [&] Lieaz | pablo093940 | roll -[TEXT] || 09/06/2024 =>> 18h 59m 57s 197ms || [&] Lieaz | pablo093940 | me -[TEXT] || 09/06/2024 =>> 18h 59m 58s 372ms || [&] Lieaz | .power.x | withdraw -[TEXT] || 09/06/2024 =>> 19h 00m 08s 315ms || [&] Lieaz | .power.x | roll -[TEXT] || 09/06/2024 =>> 19h 00m 18s 890ms || [&] Lieaz | 1_sung_1 | me -[TEXT] || 09/06/2024 =>> 19h 00m 27s 483ms || [&] Lieaz | ch1fuyux_505 | me -[TEXT] || 09/06/2024 =>> 19h 00m 30s 013ms || [&] Lieaz | 1_sung_1 | roll -[TEXT] || 09/06/2024 =>> 19h 00m 35s 934ms || [&] Lieaz | .power.x | roll -[TEXT] || 09/06/2024 =>> 19h 00m 41s 736ms || [&] Lieaz | ch1fuyux_505 | roll -[TEXT] || 09/06/2024 =>> 19h 00m 42s 352ms || [&] Lieaz | pablo093940 | rob -[TEXT] || 09/06/2024 =>> 19h 00m 51s 305ms || [&] Lieaz | pablo093940 | roll -[TEXT] || 09/06/2024 =>> 19h 00m 52s 087ms || [&] Lieaz | .power.x | roll -[TEXT] || 09/06/2024 =>> 19h 01m 03s 260ms || [&] Lieaz | 1_sung_1 | me -[TEXT] || 09/06/2024 =>> 19h 01m 04s 863ms || [&] Lieaz | pablo093940 | deposit -[TEXT] || 09/06/2024 =>> 19h 01m 07s 254ms || [&] Lieaz | ch1fuyux_505 | me -[TEXT] || 09/06/2024 =>> 19h 01m 07s 600ms || [&] Lieaz | .power.x | roll -[TEXT] || 09/06/2024 =>> 19h 01m 11s 218ms || [&] Lieaz | pablo093940 | me -[TEXT] || 09/06/2024 =>> 19h 01m 16s 947ms || [&] Lieaz | 1_sung_1 | rob -[TEXT] || 09/06/2024 =>> 19h 01m 26s 750ms || [&] Lieaz | .power.x | deposit -[TEXT] || 09/06/2024 =>> 19h 01m 27s 004ms || [&] Lieaz | ch1fuyux_505 | roll -[TEXT] || 09/06/2024 =>> 19h 01m 27s 444ms || [&] Lieaz | pablo093940 | rob -[TEXT] || 09/06/2024 =>> 19h 01m 29s 292ms || [&] Lieaz | .power.x | me -[TEXT] || 09/06/2024 =>> 19h 01m 35s 386ms || [&] Lieaz | 1_sung_1 | roll -[TEXT] || 09/06/2024 =>> 19h 01m 36s 925ms || [&] Lieaz | .power.x | top -[TEXT] || 09/06/2024 =>> 19h 01m 37s 257ms || [&] Lieaz | bycrooz | withdraw -[TEXT] || 09/06/2024 =>> 19h 01m 41s 352ms || [&] Lieaz | pablo093940 | blackjack -[TEXT] || 09/06/2024 =>> 19h 01m 42s 886ms || [&] Lieaz | ch1fuyux_505 | me -[TEXT] || 09/06/2024 =>> 19h 01m 50s 966ms || [&] Lieaz | ch1fuyux_505 | roll -[TEXT] || 09/06/2024 =>> 19h 01m 51s 532ms || [&] Lieaz | 1_sung_1 | tdeposit -[TEXT] || 09/06/2024 =>> 19h 01m 51s 900ms || [&] Lieaz | bycrooz | roll -[TEXT] || 09/06/2024 =>> 19h 01m 59s 619ms || [&] Lieaz | 1_sung_1 | deposit -[TEXT] || 09/06/2024 =>> 19h 02m 02s 210ms || [&] Lieaz | ch1fuyux_505 | roll -[TEXT] || 09/06/2024 =>> 19h 02m 07s 466ms || [&] Lieaz | ch1fuyux_505 | me -[TEXT] || 09/06/2024 =>> 19h 02m 07s 544ms || [&] Lieaz | 1_sung_1 | withdraw -[TEXT] || 09/06/2024 =>> 19h 02m 10s 221ms || [&] Lieaz | bycrooz | deposit -[TEXT] || 09/06/2024 =>> 19h 02m 13s 454ms || [&] Lieaz | 1_sung_1 | tcreate -[TEXT] || 09/06/2024 =>> 19h 02m 14s 677ms || [&] Lieaz | bycrooz | top -[TEXT] || 09/06/2024 =>> 19h 02m 20s 497ms || [&] Lieaz | .power.x | rob -[TEXT] || 09/06/2024 =>> 19h 02m 41s 270ms || [&] Lieaz | 1_sung_1 | tinvite -[TEXT] || 09/06/2024 =>> 19h 02m 49s 605ms || [&] Lieaz | rexosouli | team -[TEXT] || 09/06/2024 =>> 19h 02m 59s 800ms || [&] Lieaz | ch1fuyux_505 | me -[TEXT] || 09/06/2024 =>> 19h 03m 03s 616ms || [&] Lieaz | 1_sung_1 | tpromote -[TEXT] || 09/06/2024 =>> 19h 03m 06s 469ms || [&] Lieaz | .power.x | bingo -[TEXT] || 09/06/2024 =>> 19h 03m 20s 018ms || [&] Lieaz | rexosouli | work -[TEXT] || 09/06/2024 =>> 19h 03m 24s 668ms || [&] Lieaz | rexosouli | me -[TEXT] || 09/06/2024 =>> 19h 03m 30s 043ms || [&] Lieaz | .power.x | tcreate -[TEXT] || 09/06/2024 =>> 19h 03m 30s 317ms || [&] Lieaz | 1_sung_1 | rob -[TEXT] || 09/06/2024 =>> 19h 03m 32s 076ms || [&] Lieaz | rexosouli | daily -[TEXT] || 09/06/2024 =>> 19h 03m 50s 783ms || [&] Lieaz | 1_sung_1 | recolt -[TEXT] || 09/06/2024 =>> 19h 03m 55s 407ms || [&] Lieaz | pablo093940 | recolt -[TEXT] || 09/06/2024 =>> 19h 04m 00s 058ms || [&] Lieaz | 1_sung_1 | rep -[TEXT] || 09/06/2024 =>> 19h 04m 05s 357ms || [&] Lieaz | pablo093940 | rep -[TEXT] || 09/06/2024 =>> 19h 04m 06s 769ms || [&] Lieaz | 1_sung_1 | team -[TEXT] || 09/06/2024 =>> 19h 04m 06s 994ms || [&] Lieaz | .power.x | team -[TEXT] || 09/06/2024 =>> 19h 04m 14s 197ms || [&] Lieaz | .power.x | tdeposit -[TEXT] || 09/06/2024 =>> 19h 04m 20s 218ms || [&] Lieaz | pablo093940 | trep -[TEXT] || 09/06/2024 =>> 19h 04m 20s 998ms || [&] Lieaz | 1_sung_1 | trep -[TEXT] || 09/06/2024 =>> 19h 04m 23s 508ms || [&] Lieaz | .power.x | withdraw -[TEXT] || 09/06/2024 =>> 19h 04m 26s 307ms || [&] Lieaz | .power.x | tdeposit -[TEXT] || 09/06/2024 =>> 19h 04m 32s 477ms || [&] Lieaz | .power.x | tdeposit -[TEXT] || 09/06/2024 =>> 19h 04m 35s 446ms || [&] Lieaz | 1_sung_1 | top -[TEXT] || 09/06/2024 =>> 19h 04m 38s 423ms || [&] Lieaz | .power.x | top -[TEXT] || 09/06/2024 =>> 19h 04m 41s 597ms || [&] Lieaz | 1_sung_1 | me -[TEXT] || 09/06/2024 =>> 19h 04m 46s 228ms || [&] Lieaz | 1_sung_1 | tdeposit -[TEXT] || 09/06/2024 =>> 19h 05m 01s 609ms || [&] Lieaz | 1_sung_1 | tedit -[TEXT] || 09/06/2024 =>> 19h 05m 13s 318ms || [&] Lieaz | .power.x | recolt -[TEXT] || 09/06/2024 =>> 19h 05m 20s 012ms || [&] Lieaz | .power.x | team -[TEXT] || 09/06/2024 =>> 19h 05m 34s 367ms || [&] Lieaz | 1_sung_1 | tedit -[TEXT] || 09/06/2024 =>> 19h 05m 42s 179ms || [&] Lieaz | rexosouli | top -[TEXT] || 09/06/2024 =>> 19h 05m 51s 275ms || [&] Lieaz | rexosouli | deposit -[TEXT] || 09/06/2024 =>> 19h 05m 52s 692ms || [&] Lieaz | .power.x | tdeposit -[TEXT] || 09/06/2024 =>> 19h 06m 08s 658ms || [&] Lieaz | 1_sung_1 | me -[TEXT] || 09/06/2024 =>> 19h 06m 21s 481ms || [&] Lieaz | 1_sung_1 | top -[TEXT] || 09/06/2024 =>> 19h 06m 32s 599ms || [&] Lieaz | 1_sung_1 | braquage -[TEXT] || 09/06/2024 =>> 19h 07m 17s 597ms || [&] Lieaz | .power.x | shop -[TEXT] || 09/06/2024 =>> 19h 07m 18s 009ms || [&] Lieaz | 1_sung_1 | shop -[TEXT] || 09/06/2024 =>> 19h 07m 25s 993ms || [&] Lieaz | pablo093940 | shop -[TEXT] || 09/06/2024 =>> 19h 07m 48s 748ms || [&] Lieaz | bycrooz | team -[TEXT] || 09/06/2024 =>> 19h 08m 05s 226ms || [&] Lieaz | rexosouli | top -[TEXT] || 09/06/2024 =>> 19h 08m 10s 630ms || [&] Lieaz | .power.x | trep -[TEXT] || 09/06/2024 =>> 19h 08m 14s 559ms || [&] Lieaz | 1_sung_1 | me -[TEXT] || 09/06/2024 =>> 19h 08m 14s 727ms || [&] Lieaz | .power.x | work -[TEXT] || 09/06/2024 =>> 19h 08m 16s 136ms || [&] Lieaz | .power.x | tdeposit -[TEXT] || 09/06/2024 =>> 19h 08m 26s 737ms || [&] Lieaz | rexosouli | shop -[TEXT] || 09/06/2024 =>> 19h 08m 39s 884ms || [&] Lieaz | rexosouli | blackjack -[TEXT] || 09/06/2024 =>> 19h 08m 47s 125ms || [&] Lieaz | 1_sung_1 | me -[TEXT] || 09/06/2024 =>> 19h 08m 55s 401ms || [&] Lieaz | rexosouli | blackjack -[TEXT] || 09/06/2024 =>> 19h 09m 02s 600ms || [&] Lieaz | 1_sung_1 | roll -[TEXT] || 09/06/2024 =>> 19h 09m 15s 525ms || [&] Lieaz | rexosouli | blackjack -[TEXT] || 09/06/2024 =>> 19h 09m 21s 743ms || [&] Lieaz | pablo093940 | me -[TEXT] || 09/06/2024 =>> 19h 09m 26s 872ms || [&] Lieaz | pablo093940 | tdeposit -[TEXT] || 09/06/2024 =>> 19h 09m 31s 167ms || [&] Lieaz | 1_sung_1 | me -[TEXT] || 09/06/2024 =>> 19h 09m 37s 453ms || [&] Lieaz | pablo093940 | withdraw -[TEXT] || 09/06/2024 =>> 19h 09m 53s 721ms || [&] Lieaz | pablo093940 | roll -[TEXT] || 09/06/2024 =>> 19h 10m 10s 315ms || [&] Lieaz | pablo093940 | me -[TEXT] || 09/06/2024 =>> 19h 10m 37s 049ms || [&] Lieaz | rexosouli | me -[TEXT] || 09/06/2024 =>> 19h 10m 50s 705ms || [&] Lieaz | rexosouli | top -[TEXT] || 09/06/2024 =>> 19h 11m 02s 687ms || [&] Lieaz | rexosouli | help -[TEXT] || 09/06/2024 =>> 19h 11m 44s 166ms || [&] Lieaz | rexosouli | poulet -[TEXT] || 09/06/2024 =>> 19h 12m 55s 727ms || [&] Lieaz | 1_sung_1 | me -[TEXT] || 09/06/2024 =>> 19h 16m 38s 511ms || [&] Lieaz | .power.x | help -[TEXT] || 09/06/2024 =>> 19h 16m 42s 896ms || [&] Lieaz | 1_sung_1 | help -[TEXT] || 09/06/2024 =>> 19h 18m 18s 185ms || [&] Lieaz | 1_sung_1 | bingo -[TEXT] || 09/06/2024 =>> 19h 19m 04s 216ms || [&] Lieaz | .power.x | bingo -[TEXT] || 09/06/2024 =>> 19h 19m 34s 318ms || [&] Lieaz | 1_sung_1 | tdeposit -[TEXT] || 09/06/2024 =>> 19h 19m 51s 319ms || [&] Lieaz | bycrooz | kill -[TEXT] || 09/06/2024 =>> 19h 20m 12s 698ms || [&] Lieaz | bycrooz | kill -[TEXT] || 09/06/2024 =>> 19h 20m 18s 237ms || [&] Lieaz | bycrooz | top -[TEXT] || 09/06/2024 =>> 19h 20m 25s 644ms || [&] Lieaz | bycrooz | kill -[TEXT] || 09/06/2024 =>> 19h 20m 39s 750ms || [&] Lieaz | 1_sung_1 | kill -[TEXT] || 09/06/2024 =>> 19h 20m 41s 776ms || [&] Lieaz | rexosouli | kill -[TEXT] || 09/06/2024 =>> 19h 22m 36s 686ms || [&] Lieaz | 1_sung_1 | team -[TEXT] || 09/06/2024 =>> 19h 22m 47s 472ms || [&] Lieaz | 1_sung_1 | top -[TEXT] || 09/06/2024 =>> 19h 27m 15s 752ms || [&] Lieaz | bycrooz | work -[TEXT] || 09/06/2024 =>> 19h 36m 21s 277ms || [&] Lieaz | bycrooz | me -[TEXT] || 09/06/2024 =>> 19h 36m 22s 817ms || [&] Lieaz | ch1fuyux_505 | me -[TEXT] || 09/06/2024 =>> 19h 36m 30s 171ms || [&] Lieaz | bycrooz | withdraw -[TEXT] || 09/06/2024 =>> 19h 36m 32s 993ms || [&] Lieaz | rexosouli | bingo -[TEXT] || 09/06/2024 =>> 19h 36m 34s 668ms || [&] Lieaz | bycrooz | me -[TEXT] || 09/06/2024 =>> 19h 36m 42s 280ms || [&] Lieaz | bycrooz | pay -[TEXT] || 09/06/2024 =>> 19h 36m 48s 460ms || [&] Lieaz | bycrooz | pay -[TEXT] || 09/06/2024 =>> 19h 36m 58s 677ms || [&] Lieaz | ch1fuyux_505 | tcreate -[TEXT] || 09/06/2024 =>> 19h 37m 48s 214ms || [&] Lieaz | ch1fuyux_505 | tinvite -[TEXT] || 09/06/2024 =>> 19h 37m 50s 825ms || [&] Lieaz | bycrooz | team -[TEXT] || 09/06/2024 =>> 19h 37m 58s 608ms || [&] Lieaz | bycrooz | team -[TEXT] || 09/06/2024 =>> 19h 37m 58s 682ms || [&] Lieaz | ch1fuyux_505 | tpromote -[TEXT] || 09/06/2024 =>> 19h 38m 39s 667ms || [&] Lieaz | ch1fuyux_505 | tdeposit -[TEXT] || 09/06/2024 =>> 19h 38m 43s 086ms || [&] Lieaz | ch1fuyux_505 | work -[TEXT] || 09/06/2024 =>> 19h 38m 45s 356ms || [&] Lieaz | ch1fuyux_505 | daily -[TEXT] || 09/06/2024 =>> 19h 38m 53s 958ms || [&] Lieaz | ch1fuyux_505 | tdeposit -[TEXT] || 09/06/2024 =>> 19h 41m 49s 850ms || [&] Lieaz | ch1fuyux_505 | me -[TEXT] || 09/06/2024 =>> 19h 41m 54s 997ms || [&] Lieaz | ch1fuyux_505 | rob -[TEXT] || 09/06/2024 =>> 19h 41m 59s 455ms || [&] Lieaz | ch1fuyux_505 | tdeposit -[TEXT] || 09/06/2024 =>> 19h 42m 32s 078ms || [&] Lieaz | bycrooz | top -[TEXT] || 09/06/2024 =>> 19h 42m 35s 319ms || [&] Lieaz | 1_sung_1 | team -[TEXT] || 09/06/2024 =>> 19h 42m 38s 559ms || [&] Lieaz | bycrooz | tdeposit -[TEXT] || 09/06/2024 =>> 19h 42m 41s 655ms || [&] Lieaz | bycrooz | rep -[TEXT] || 09/06/2024 =>> 19h 42m 48s 345ms || [&] Lieaz | bycrooz | team -[TEXT] || 09/06/2024 =>> 19h 42m 49s 589ms || [&] Lieaz | ch1fuyux_505 | rep -[TEXT] || 09/06/2024 =>> 19h 42m 59s 644ms || [&] Lieaz | ch1fuyux_505 | trep -[TEXT] || 09/06/2024 =>> 19h 43m 00s 889ms || [&] Lieaz | 1_sung_1 | hack -[TEXT] || 09/06/2024 =>> 19h 43m 01s 762ms || [&] Lieaz | bycrooz | trep -[TEXT] || 09/06/2024 =>> 19h 43m 14s 109ms || [&] Lieaz | ch1fuyux_505 | team -[TEXT] || 09/06/2024 =>> 19h 43m 25s 307ms || [&] Lieaz | bycrooz | trep -[TEXT] || 09/06/2024 =>> 19h 43m 32s 943ms || [&] Lieaz | bycrooz | team -[TEXT] || 09/06/2024 =>> 19h 43m 37s 117ms || [&] Lieaz | bycrooz | top -[TEXT] || 09/06/2024 =>> 19h 43m 53s 416ms || [&] Lieaz | bycrooz | team -[TEXT] || 09/06/2024 =>> 19h 44m 16s 905ms || [&] Lieaz | ch1fuyux_505 | team -[TEXT] || 09/06/2024 =>> 19h 44m 39s 660ms || [&] Lieaz | 1_sung_1 | top -[TEXT] || 09/06/2024 =>> 19h 45m 29s 545ms || [&] Lieaz | 1_sung_1 | drop -[TEXT] || 09/06/2024 =>> 19h 45m 53s 880ms || [&] Lieaz | 1_sung_1 | me -[TEXT] || 09/06/2024 =>> 19h 46m 04s 497ms || [&] Lieaz | bycrooz | drop -[TEXT] || 09/06/2024 =>> 19h 47m 43s 605ms || [&] Lieaz | ch1fuyux_505 | work -[TEXT] || 09/06/2024 =>> 19h 47m 54s 522ms || [&] Lieaz | 1_sung_1 | drop -[TEXT] || 09/06/2024 =>> 19h 48m 07s 314ms || [&] Lieaz | .power.x | drop -[TEXT] || 09/06/2024 =>> 19h 48m 35s 372ms || [&] Lieaz | 1_sung_1 | drop -[TEXT] || 09/06/2024 =>> 19h 48m 45s 316ms || [&] Lieaz | ch1fuyux_505 | tdeposit -[TEXT] || 09/06/2024 =>> 19h 49m 34s 290ms || [&] Lieaz | .power.x | perms -[TEXT] || 09/06/2024 =>> 19h 50m 11s 933ms || [&] Lieaz | ch1fuyux_505 | drop -[TEXT] || 09/06/2024 =>> 19h 50m 20s 752ms || [&] Lieaz | 1_sung_1 | tdeposit -[TEXT] || 09/06/2024 =>> 19h 50m 26s 897ms || [&] Lieaz | 1_sung_1 | team -[TEXT] || 09/06/2024 =>> 19h 50m 43s 803ms || [&] Lieaz | ch1fuyux_505 | team -[TEXT] || 09/06/2024 =>> 19h 50m 57s 137ms || [&] Lieaz | bycrooz | top -[TEXT] || 09/06/2024 =>> 19h 51m 07s 603ms || [&] Lieaz | bycrooz | tdeposit -[TEXT] || 09/06/2024 =>> 19h 51m 14s 862ms || [&] Lieaz | bycrooz | rob -[TEXT] || 09/06/2024 =>> 19h 51m 27s 930ms || [&] Lieaz | 1_sung_1 | rob -[TEXT] || 09/06/2024 =>> 19h 51m 34s 482ms || [&] Lieaz | 1_sung_1 | work \ No newline at end of file +[TEXT] || 09/06/2024 =>> 10h 54m 06s 454ms || [READY] Azelie coins#1300 est prΓͺt ||| 1 serveurs | 2602 utilisateurs +[TEXT] || 09/06/2024 =>> 10h 54m 17s 605ms || [&] Azelie 🍹 #NewLife | .power.x | rob +[TEXT] || 09/06/2024 =>> 10h 55m 13s 418ms || [&] Azelie 🍹 #NewLife | .power.x | bingo +[TEXT] || 09/06/2024 =>> 10h 57m 45s 947ms || [&] Azelie 🍹 #NewLife | .power.x | rob +[TEXT] || 09/06/2024 =>> 10h 58m 09s 509ms || [&] Azelie 🍹 #NewLife | .power.x | rob +[TEXT] || 09/06/2024 =>> 10h 58m 27s 174ms || Events loaded +[TEXT] || 09/06/2024 =>> 10h 58m 27s 220ms || Commands loaded +[TEXT] || 09/06/2024 =>> 10h 58m 28s 228ms || + + +[TEXT] || 09/06/2024 =>> 10h 58m 28s 270ms || [READY] Azelie coins#1300 est prΓͺt ||| 1 serveurs | 2603 utilisateurs +[TEXT] || 09/06/2024 =>> 10h 58m 45s 958ms || [&] Azelie 🍹 #NewLife | .power.x | rob +[TEXT] || 09/06/2024 =>> 10h 59m 04s 914ms || [&] Azelie 🍹 #NewLife | .power.x | rob +[TEXT] || 09/06/2024 =>> 10h 59m 13s 626ms || [&] Azelie 🍹 #NewLife | .power.x | pay +[TEXT] || 09/06/2024 =>> 11h 00m 59s 699ms || [&] Azelie 🍹 #NewLife | .power.x | tdeposit +[TEXT] || 09/06/2024 =>> 11h 01m 02s 193ms || [&] Azelie 🍹 #NewLife | .power.x | team +[TEXT] || 09/06/2024 =>> 11h 02m 16s 167ms || [&] Azelie 🍹 #NewLife | arthur.pbty | withdraw +[TEXT] || 09/06/2024 =>> 11h 02m 16s 578ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 11h 02m 28s 525ms || [&] Azelie 🍹 #NewLife | .power.x | work +[TEXT] || 09/06/2024 =>> 11h 02m 32s 340ms || [&] Azelie 🍹 #NewLife | .power.x | tdeposit +[TEXT] || 09/06/2024 =>> 11h 08m 07s 384ms || [&] Azelie 🍹 #NewLife | arthur.pbty | work +[TEXT] || 09/06/2024 =>> 11h 08m 07s 835ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 11h 21m 25s 471ms || [&] Azelie 🍹 #NewLife | keke2408 | tdeposit +[TEXT] || 09/06/2024 =>> 11h 25m 10s 789ms || [&] Azelie 🍹 #NewLife | 1_sung_1 | Arep +[TEXT] || 09/06/2024 =>> 11h 25m 17s 853ms || [&] Azelie 🍹 #NewLife | 1_sung_1 | rep +[TEXT] || 09/06/2024 =>> 11h 31m 56s 088ms || [&] Azelie 🍹 #NewLife | .power.x | rep +[TEXT] || 09/06/2024 =>> 11h 32m 16s 888ms || [&] Azelie 🍹 #NewLife | arthur.pbty | withdraw +[TEXT] || 09/06/2024 =>> 11h 32m 17s 146ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 11h 42m 51s 579ms || [&] Azelie 🍹 #NewLife | aerin_akino137 | work +[TEXT] || 09/06/2024 =>> 11h 42m 56s 910ms || [&] Azelie 🍹 #NewLife | aerin_akino137 | daily +[TEXT] || 09/06/2024 =>> 11h 43m 08s 856ms || [&] Azelie 🍹 #NewLife | aerin_akino137 | tdeposit +[TEXT] || 09/06/2024 =>> 11h 43m 11s 627ms || [&] Azelie 🍹 #NewLife | aerin_akino137 | me +[TEXT] || 09/06/2024 =>> 11h 51m 11s 253ms || [&] Azelie 🍹 #NewLife | arthur.pbty | rob +[TEXT] || 09/06/2024 =>> 11h 51m 11s 292ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 11h 51m 11s 324ms || [&] Azelie 🍹 #NewLife | arthur.pbty | rep +[TEXT] || 09/06/2024 =>> 11h 53m 50s 596ms || [&] Azelie 🍹 #NewLife | aerin_akino137 | top +[TEXT] || 09/06/2024 =>> 11h 54m 10s 713ms || [&] Azelie 🍹 #NewLife | aerin_akino137 | team +[TEXT] || 09/06/2024 =>> 11h 58m 42s 972ms || [&] Azelie 🍹 #NewLife | 1_sung_1 | rep +[TEXT] || 09/06/2024 =>> 11h 59m 59s 828ms || [&] Azelie 🍹 #NewLife | inconnu_3000 | rob +[TEXT] || 09/06/2024 =>> 12h 00m 19s 921ms || [&] Azelie 🍹 #NewLife | inconnu_3000 | rob +[TEXT] || 09/06/2024 =>> 12h 00m 40s 619ms || [&] Azelie 🍹 #NewLife | inconnu_3000 | rob +[TEXT] || 09/06/2024 =>> 12h 02m 17s 609ms || [&] Azelie 🍹 #NewLife | arthur.pbty | withdraw +[TEXT] || 09/06/2024 =>> 12h 02m 18s 033ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 12h 09m 08s 697ms || [&] Azelie 🍹 #NewLife | arthur.pbty | work +[TEXT] || 09/06/2024 =>> 12h 09m 09s 063ms || [&] Azelie 🍹 #NewLife | arthur.pbty | tdeposit +[TEXT] || 09/06/2024 =>> 12h 12m 56s 443ms || [&] Azelie 🍹 #NewLife | bryan66130 | me +[TEXT] || 09/06/2024 =>> 12h 13m 02s 158ms || [&] Azelie 🍹 #NewLife | bycrooz | work +[TEXT] || 09/06/2024 =>> 12h 13m 04s 642ms || [&] Azelie 🍹 #NewLife | .power.x | me +[TEXT] || 09/06/2024 =>> 12h 13m 11s 136ms || [&] Azelie 🍹 #NewLife | bryan66130 | daily +[TEXT] || 09/06/2024 =>> 12h 13m 17s 137ms || [&] Azelie 🍹 #NewLife | bryan66130 | work +[TEXT] || 09/06/2024 =>> 12h 13m 24s 312ms || [&] Azelie 🍹 #NewLife | bryan66130 | blackjack +[TEXT] || 09/06/2024 =>> 12h 13m 46s 503ms || [&] Azelie 🍹 #NewLife | bryan66130 | blackjack +[TEXT] || 09/06/2024 =>> 12h 13m 53s 674ms || [&] Azelie 🍹 #NewLife | bryan66130 | me +[TEXT] || 09/06/2024 =>> 12h 14m 22s 775ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 12h 14m 24s 693ms || [&] Azelie 🍹 #NewLife | bycrooz | top +[TEXT] || 09/06/2024 =>> 12h 14m 29s 478ms || [&] Azelie 🍹 #NewLife | bycrooz | rob +[TEXT] || 09/06/2024 =>> 12h 14m 46s 988ms || [&] Azelie 🍹 #NewLife | bycrooz | top +[TEXT] || 09/06/2024 =>> 12h 14m 59s 020ms || [&] Azelie 🍹 #NewLife | kylian_vl | daily +[TEXT] || 09/06/2024 =>> 12h 14m 59s 541ms || [&] Azelie 🍹 #NewLife | bycrooz | kill +[TEXT] || 09/06/2024 =>> 12h 15m 03s 178ms || [&] Azelie 🍹 #NewLife | bycrooz | me +[TEXT] || 09/06/2024 =>> 12h 15m 05s 631ms || [&] Azelie 🍹 #NewLife | kylian_vl | work +[TEXT] || 09/06/2024 =>> 12h 15m 11s 643ms || [&] Azelie 🍹 #NewLife | bycrooz | tdeposit +[TEXT] || 09/06/2024 =>> 12h 15m 12s 324ms || [&] Azelie 🍹 #NewLife | bycrooz | team +[TEXT] || 09/06/2024 =>> 12h 15m 34s 867ms || [&] Azelie 🍹 #NewLife | kylian_vl | pay +[TEXT] || 09/06/2024 =>> 12h 16m 09s 458ms || [&] Azelie 🍹 #NewLife | bryan66130 | blackjack +[TEXT] || 09/06/2024 =>> 12h 16m 15s 047ms || [&] Azelie 🍹 #NewLife | bryan66130 | me +[TEXT] || 09/06/2024 =>> 12h 16m 41s 746ms || [&] Azelie 🍹 #NewLife | kylian_vl | me +[TEXT] || 09/06/2024 =>> 12h 23m 01s 950ms || [&] Azelie 🍹 #NewLife | bryan66130 | me +[TEXT] || 09/06/2024 =>> 12h 24m 11s 512ms || [&] Azelie 🍹 #NewLife | .power.x | set \ No newline at end of file