- Status
- Offline
- Joined
- Jul 18, 2023
- Messages
- 707
- Reaction score
- 3
Welcome, builders and adventurers, to a vast sanctuary of Minecraft resources that will revolutionize your gameplay like never before! Immerse yourself in our treasure trove of meticulously curated mods, skins, and much more, each expertly crafted to elevate your gaming experience to new heights. Whether you aspire to construct awe-inspiring structures or embark on daring quests, our extensive selection is tailored to fulfill your every need. Embrace the boundless possibilities that await you in this pixelated realm, and unleash your imagination without limits!
Timer:
JavaScript:
package fun.rich.client.command.impl;
import fun.rich.client.command.CommandAbstract;
import fun.rich.client.utils.other.ChatUtils;
public class TimerCommand
extends CommandAbstract {
public float timerValue;
public TimerCommand() {
super("timer + <value>", "timer", ".timer <value>", "timer");
}
@Override
public void execute(String... args) {
if (args.length == 2) {
if (args[0].equals("timer")) {
float timerValue = Float.parseFloat(args[1]);
mc.timer.timerSpeed = timerValue;
} else {
ChatUtils.addChatMessage(this.getUsage());
}
}
}
}
// GhatCPT