forked from Hirohiko360/LiquidBounceScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFastEatPackets.js
More file actions
63 lines (41 loc) · 1.4 KB
/
FastEatPackets.js
File metadata and controls
63 lines (41 loc) · 1.4 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
59
60
61
62
63
var scriptName = "FastUse";
var scriptAuthor = "By Virus";
var scriptVersion = 1.1;
var ItemFood = Java.type('net.minecraft.item.ItemFood');
var C03PacketPlayer = Java.type('net.minecraft.network.play.client.C03PacketPlayer');
function EatModule() {
this.getName = function() {
return "FastEatPackets";
}
this.getDescription = function() {
return "Custom Packets"
}
this.getCategory = function() {
return "Misc";
}
this.onUpdate = function() {
if (mc.thePlayer.isEating() && mc.thePlayer.getHeldItem().getItem() instanceof ItemFood) {
if(mc.thePlayer.ticksExisted % 1 == 0) { //Custom Packets
mc.thePlayer.sendQueue.addToSendQueue(new C03PacketPlayer(false));
}
}
// if (mc.thePlayer.isEating() && mc.thePlayer.getHeldItem().getItem() instanceof ItemFood) {
// mc.timer.timerSpeed = 1.30; Opcional
// }else{
// mc.timer.timerSpeed = 1.0; Opcional
// }
}
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);
}