Is there a way to set the cooldown chat message from seconds to minutes?
/remove command puts a player on cooldownSolved
Print(player, Lang("Cooldown", player.UserIDString, Math.Ceiling(timeLeft))); // Try to find it in the plugin and replace it with the following line
Print(player, Lang("Cooldown", player.UserIDString, Math.Ceiling(timeLeft / 60f))); I tried setting it to
Print(player, Lang("Cooldown", player.UserIDString, Math.Ceiling(timeLeft / 1800f)));
and it is just saying "1 second" at all times. How do I make it 30 minutes?
and now it just says "1 second" at all times. how do I change it to 30 minutes?
Nyzy
I tried setting it to
Print(player, Lang("Cooldown", player.UserIDString, Math.Ceiling(timeLeft / 1800f)));and it is just saying "1 second" at all times. How do I make it 30 minutes?
and now it just says "1 second" at all times. how do I change it to 30 minutes?
Still having this issue
Locked automatically