Rage meter command?

Asked Apr 13, 2021·2 replies·Last activity 5 years ago·Open in Discord ↗
Archived from the original community forum
Things may have changed since it was written. Still stuck? Ask the community on Discord.

is it possible to make a rage meter or something similar.

`!addcom !rage -ul=mod Loading…█ █ █ █ █ ▒▒▒▒▒ $(query)`

everytime the streamer rages i want the loading bar to go up, for now I can only change the percentage using $(query)

2 replies

Hey @Dusky Sloth!

That's a fun idea!
From your example I understand that the loading bar rises by 10% steps.

So here's the command:

!addcom !rage -ul=mod $(eval e=`░`; f=`█`; c=`$(count)`; c%=10; if(c==0){c=10} `Loading... ${f.repeat(c)}${e.repeat(10-c)} — ${c*10}%`)

You won't need to edit the counter, once it reaches 100%, it'll start over at 10% the next time the command is called.

And just for fun I include another loading bar design:

!addcom !rage -ul=mod $(eval e=`_`; f=`#`; c=`$(count)`; c%=10; if(c==0){c=10} p=[]; l=`${f.repeat(c)}${e.repeat(10-c)}`; p.push(l.slice(0,5)); p.push(l.slice(5)); `Loading... [${p[0]}${c*10}%${p[1]}]`)
Polar Cat said:
!addcom !rage -ul=mod $(eval e=; f=; c=$(count); c%=10; if(c==0){c=10} Loading... ${f.repeat(c)}${e.repeat(10-c)} — ${c*10}%)

THANK YOU SO MUCH EMILY!