Welcome on MasterOf13FPS! MasterOf13FPS

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

Simpler FastPlace

Really?

So einen Fastplace hat jeder Client heutzutage.
 
Wie mache ich einen FastBreak? xd
 
Wie mache ich einen FastBreak? xd
Code:
@Override
   public void onDisable() {
       Minecraft.getMinecraft().thePlayer.removePotionEffect(Potion.digSpeed.id);
       super.onDisable();
   }
 
    @Override
   public void onEnable() {
       Minecraft.getMinecraft().thePlayer.addPotionEffect(new PotionEffect(Potion.digSpeed.id, Integer.MAX_VALUE, 0));
       Minecraft.getMinecraft().playerController.blockHitDelay = Integer.MIN_VALUE;
       super.onEnable();
   }
 
Last edited by a moderator:
@Override
public void onDisable() {
Minecraft.getMinecraft().thePlayer.removePotionEffect(Potion.digSpeed.id);
super.onDisable();
}

@Override
public void onEnable() {
Minecraft.getMinecraft().thePlayer.addPotionEffect(new PotionEffect(Potion.digSpeed.id, Integer.MAX_VALUE, 0));
Minecraft.getMinecraft().playerController.blockHitDelay = Integer.MIN_VALUE;
super.onEnable();
}
The field PlayerControllerMP.blockHitDelay is not visible. kommt bei blockHitDelay (Fehler)
 
Last edited by a moderator:
Code:
/** The Item currently being used to destroy a block */
    private ItemStack currentItemHittingBlock;

    /** Current block damage (MP) */
    public float curBlockDamageMP;

    /**
     * Tick counter, when it hits 4 it resets back to 0 and plays the step sound
     */
    private float stepSoundTickCounter;

    /**
     * Delays the first damage on the block after the first click on the block
     */
    public int blockHitDelay;

    /** Tells if the player is hitting a block */
    private boolean isHittingBlock;

    /** Current game type for the player */
    private WorldSettings.GameType currentGameType;
The field PlayerControllerMP.blockHitDelay is not visible kommt bei blockHitDelay (Fehler)
Such in Player controller mp nach dem wie es halt bei dir heiß ist bei mir zwischen denen
 
The field PlayerControllerMP.blockHitDelay is not visible kommt bei blockHitDelay (Fehler)
Simpel blockHitDelay in der Klasse PlayerControllerMP auf public setzen lel
 
Danke.

Ich glaube, dass ich bald mal eine Sektion erstellen werde, wo ich die ganzen Code-Releases rein moven werde.
Dann brauch man sich das alles nur noch herunterladen, in einen Client packen und den Client als sein Eigentum ausgeben.
 
Dass du wünscht, dass er sich selber umbringen soll weil er etwas nicht kann ist ja mal mega sad
''Vergraben gehen'' ist eine Redewendung, das heißt nicht dass man sich umbringen soll :) So etwas sollte man niemandem wünschen, egal was er getan hat
 
Das ist einfach Standart das zukönnen genauso wie sprint oder vanilla fly.
 
Es iSt DoCh nIcHt eiNfaCh eiNeN SpRiNt zu cOdEn
 
shape1
shape2
shape3
shape4
shape5
shape6
Back
Top