if(isNaN(args[0])){returnmessage.channel.send("You didn't provide a number for how long I should wait to remind you.");}
if(args[0].length>8){returnmessage.channel.send("Whoah there, pal. That's a lot of time! A little too much, perhaps?");}
lettime=Number(args[0]);
if(!args[1]){returnmessage.channel.send("You didn't provide the time format. Must be `<days|hours|minutes>`");}
if(!['days','day','d','hours','hour','h','minutes','minute','m'].includes(args[1].toLowerCase())){returnmessage.channel.send("You didn't provide a proper time format. Must be `days`, `hours`, or `minutes`.");}
newcron.CronJob(startDate,()=>message.author.send(`Here's a reminder you asked me to give you ${moment(newDate(Date.now()-(1000*60*time))).fromNow()}: ${reminder}`).catch(()=>{})).start();