me too but actually despite time limit, I want to enjoy the game slowly. time limit is a pain in the ass.
Js file >> Plugins >> Chronus >> Right Click >> Edit - This will slow the clock down
};
Game_Chronus.prototype.getRotationHourHand = function() {
return (this.getAnalogueHour() % 12) * (720 / 12) * Math.PI / 360;
};
Game_Chronus.prototype.getRotationMinuteHand = function() {
return this.getAnalogueMinute() * (720 / 60) * Math.PI / 360;
};
Disclaimer: This isn't the whole script for the Chronus plug-in, just a small part of it. Find this part and paste over or change the numbers to the above setup.
The original is 180/12 math.pi 60 for both, whatever amount that you put for Math.PI must be doubled for Hour and Minute. I also used this time adjustment for The Zombie Island, since they both use the same plug-in.
Edit: Deleted the Spoiler, because it can't be copied.