Welcome on MasterOf13FPS! MasterOf13FPS

Register today or sign up if you are already a member and never miss any cool content again :)

IceSpeed

MasterOf13FPS

Administrator
Staff member
Administrator
MasterOf13FPS
Joined
Jul 11, 2020
Messages
0
Reaction score
25
Points
0
Bypassing NCP perfectly :D:D


[HIDE]
Code:
import org.lwjgl.input.Keyboard;

import com.darkmagician6.eventapi.EventManager;

import net.minecraft.init.Blocks;

public class IceSpeed extends Module {
    public IceSpeed() {
        super("IceSpeed", "IceSpeed", Keyboard.KEY_NONE, Category.MOVEMENT);
    }

    @Override
    public void onEnable() {
        EventManager.register(this);
        Blocks.ice.slipperiness = 0.4F;
        Blocks.packed_ice.slipperiness = 0.4F;
    }

    @Override
    public void onDisable() {
        EventManager.unregister(this);
        Blocks.ice.slipperiness = 0.89F;
        Blocks.packed_ice.slipperiness = 0.89F;
    }
}
[/HIDE]
 
shape1
shape2
shape3
shape4
shape5
shape6
Back
Top