what you have to do is.. check if a variable DOESNT exist..
e.g
if (!%cooldown) {
set -u10 %cooldown 1
"do the rest script as it is"
}
that way you get a 10 second cool down. add this in all your text events!
If the variable doesnt exist it will set it and -u10 will unset it automatically after 10 seconds. If it exists it wont do nothing because that means the cooldown is on.
Good Luck!
