Want to manually change a command's count? Reset the count? Maybe you want to count by 5s or count to 10 & then reset. This is the right place.
Reset a command's counter
!reset!$(1) -c=0
owner/moderator
!editcom
I like to explain each command here. !editcom is shorthand for !command, & you'd have to type !edit before the command which is not ideal. Owner or moderator makes it so you don't have to invoke stringquery, & it's not like you'd want your viewers changing your !deaths counter to 69420.
"!reset fall" will change the !fall command's counter to be 0. Nothing else is changed.
Change a counter to a specific non-0 value
!redo!$(1) -c=$(2)
owner/moderator
!editcom
Same as above but usage is "!redo fall 7" in lieu of a command that decrements the counter by 1. Sadly, this seems to be the only way to do it.
!countby5$(eval var max = 5; var C = $(count); C - max * Math.trunc((C - 1) / max))
everyone, owner/moderator
no alias
Latetsicario (link expired) suggested this a while back & I finally figured out a way to do it. The solution is not to actually reset the counter, but to display a reset counter. If you play around with it, what it's doing is counting up to 5 (you can change 5 to whatever number you'd like) & then when it gets to 6, it subtracts 5 from it. When it gets to 11, it subtracts 10. & so on. So the internal counter goes up forever, but Nightbot comments the count modulus 5, but adjusted so it doesn't say "0".
Choose a random number between X & Y
!random