It looks like you're new here. If you want to get involved, click one of these buttons!
input {
text-transform: uppercase;
}
That makes the text the player enters in the field appear in all uppercase, but the actual variable is whatever case the user inputted. $('input').keyup(function(){
this.value = this.value.toLowerCase();
});
However, I don't know how to use that to change the variable's value. I'm an idiot, I know. ;D
Comments
So do it like this. At the very start of the macro find the params argument and convert that first thing. If you need help I might pop on irc later.
I do recommend using .toLowerCase() for the actual variables: