You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The error generated by the analyzeModuleUsage function has been fixed!
Features
constmzr=require('mzrdjs');const{ AntiCrash }=require('mzrdjs');mzr.version// reflects the version of mzrdjs.mzr.calculate(20,200)// It takes the percentage of the number A to the number B.mzr.random(5,10)// Generates a random number between 5 and 10, inclusive.mzr.shortNumber(112394)// Represents 112394 as 112.3k; 112000 it would be represented as 112k.mzr.timestamp(1695495014935)// Changed the normal timestamp to the timestamp for Discord.mzr.formatNumber(12381248125)// The numbers will be more readable because it adds a dot.mzr.ms(60000,{short: true,lang: 'en',largest: 2,units: ['ms','s','m']})// {} is not mandatory. Supports Turkish (TR) and English (EN) languages.mzr.ms('1m')// Converts the time unit you specify to milliseconds.mzr.tdk('inek')// Ideal for a word game system and its usage is at the bottom. (Special for Turks)newAntiCrash().start()// Initializes the system that prevents any error from shutting down your bot.mzr.generatePassword({length: 16,numbers: true})// You can create a custom password generate with many settings.mzr.generateCode({length: 16,range: 4})// You can create a custom code generate with many settings.mzr.analyzeModuleUsage()// Returns you of used, hidden, unused, hidden unused modules. (Only CommonJS)
If you have any questions, you can join my Discord server.
const{ AntiCrash }=require('mzrdjs');// If you do any of the following, your bot will never shut down due to an error.// Anti Crash system Writes briefly when it reflects an error on the console, but writes in detail when it reflects it on the webhooknewAntiCrash().start()// Initializes the system that prevents any error from shutting down your bot.newAntiCrash().start()// If an error is received, it reflects the error on the console.newAntiCrash({url: 'DISCORD_WEBHOOK_URL'}).setHide().start()// It reflects the error to the console and to the Webhook you wrote.newAntiCrash({url: 'DISCORD_WEBHOOK_URL'}).setHide('console').setShow('webhook').start()// It only reflects the error to the Webhook you are writing to.newAntiCrash().setShow().start()// Reflects nothing to anywhere, acts as if it has never received any errors.