Complete rewrite - Added slash commands

This commit is contained in:
2025-05-04 18:55:40 -05:00
parent 382ac41d7f
commit 6cae1d1eea
13 changed files with 3478 additions and 711 deletions

15
cmd/util/util.js Normal file
View File

@@ -0,0 +1,15 @@
function randomHex(){
let hex="";
let randNum = 0;
randNum = (Math.floor(Math.random()*Math.floor(41)));
if(randNum<16){
hex = "0" + randNum.toString(16);
}
else{
hex = randNum.toString(16);
}
return hex;
}
module.exports = { randomHex };