Last active
August 24, 2022 12:52
-
-
Save tandv592082/ea6eb30a65983ffed350ab6abc29bd30 to your computer and use it in GitHub Desktop.
Custom discord status
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ['๐','๐','๐','๐','๐','๐','๐','๐','๐','๐','๐','๐'][((new Date()).getHours()%12)]; | |
| const getStatus = () => { | |
| const day = new Date(); | |
| const time = day.getHours(); | |
| if(time >= 22 && time <= 23 || time >= 0 && time < 6 ) { | |
| return '๐๐ป'; | |
| }; | |
| if(time >=6 && time <7) { | |
| return '๐๐ป'; | |
| }; | |
| if(time >= 7 && time < 8) { | |
| return '๐๐ข'; | |
| }; | |
| if(time >= 8 && time < 12 || time >=13 && time < 18) { | |
| return '๐จ๐ปโ๐ป' ; | |
| }; | |
| if(time >= 18 && time < 19) { | |
| return '๐ฅ'; | |
| }; | |
| if(time >= 12 && time <13 || time >= 19 && time < 20) { | |
| return '๐ฅช'; | |
| }; | |
| if(time >= 20 && time < 22) { | |
| return `๐ฎ|๐ฑ|๐ฏ`; | |
| } | |
| }; | |
| `Bruh! Time to ${getStatus()}`; | |
| console.log(eval("`['๐','๐','๐','๐','๐','๐','๐','๐','๐','๐','๐','๐'][((new Date()).getHours()%12)]`;const getStatus=()=>{const day=new Date();const time=day.getHours();if(time>=22&&time<=23||time>=0&&time<6){return'๐๐ป'};if(time>=6&&time<7){return'๐๐ป'};if(time>=7&&time<8){return'๐๐ข'};if(time>=8&&time<12||time>=13&&time<18){return'๐จ๐ปโ๐ป'};if(time>=18&&time<19){return'๐ฅ'};if(time>=12&&time<13||time>=19&&time<20){return'๐ฅช'};if(time>=20&&time<22){return '๐ฎ|๐ฑ|๐ฏ'}};`${getStatus()} Brแปงh!!!`")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment