forked from Hirohiko360/LiquidBounceScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFastEatTimer.js
More file actions
58 lines (35 loc) · 1.02 KB
/
FastEatTimer.js
File metadata and controls
58 lines (35 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
var scriptName = "FastUse";
var scriptAuthor = "By Virus";
var scriptVersion = 1.1;
var ItemFood = Java.type('net.minecraft.item.ItemFood');
function EatModule() {
this.getName = function() {
return "FastEatTimer";
}
this.getDescription = function() {
return "Custom Timer"
}
this.getCategory = function() {
return "Misc";
}
this.onUpdate = function() {
if (mc.thePlayer.isEating() && mc.thePlayer.getHeldItem().getItem() instanceof ItemFood) {
mc.timer.timerSpeed = 1.30; //Custom timer
}else{
mc.timer.timerSpeed = 1.0;
}
}
this.onEnable = function() {
}
this.onDisable = function() {
mc.timer.timerSpeed = 1.0;
}
}
var eatModule = new EatModule();
var eatModuleClient;
function onEnable() {
eatModuleClient = moduleManager.registerModule(eatModule);
}
function onDisable() {
moduleManager.unregisterModule(eatModuleClient);
}