Hello! To fix the cooldown error change following lines in the plugin:
Line 1103 "return secondsRemaining > 0;" to:
return secondsRemaining == 0;
Line 1114 "return secondsRemaining > 0;" to:
return secondsRemaining == 0;
This will completely disable to cooldown feature however the plugin will work.