top of page

The Super Pickaxe Addon

Updated: Apr 27

by ObiloxYT

ree

/*----------------------------------------------------------------------------------------------------------------------*/

Ah yes, we all like the Moonstone and Diamond Picks- but they arent good enough!

So i present to you, The Super Pickaxe Addon V1.


Conflicting Addons:

The Mod Conflicts with Super Boots, Rainbow Capes and Sit Addon.

Heres the Codes for this addon.

World Code

let tickCounter = 0; // Track game ticks for timing


tick = () => {

tickCounter++; // Increment tick count


if (tickCounter % 9 === 0) { // Every 5 ticks (~0.25 sec)

let playerIds = api.getPlayerIds(); // Get all active players


for (let myId of playerIds) {

let heldItem = api.getHeldItem(myId);


if (heldItem?.name === "Gold Pickaxe" && heldItem?.attributes?.customDisplayName === "Super Pickaxe") {

api.applyEffect(myId, "Haste", 500, { inbuiltLevel: 100 });

api.applyEffect(myId, "Speed", 500, { inbuiltLevel: 1 });

}

}

}

};

Code Block

api.giveItem(myId, "Gold Pickaxe", 1, {customDisplayName:"Super Pickaxe"})

ree



  1. Dont Change The Custom Display Name or Remove It! if you want to change the customDisplayName, edit this line. II

heldItem?.attributes?.customDisplayName === "Super Pickaxe"

Change "Super Pickaxe" to the customDisplayName you want.


  1. Dont Change the Item Name either! if you want to change it too, edit this line. II

            heldItem?.name === "Gold Pickaxe" && 

Change "Gold Pickaxe" to the item you want.


  1. To change the effects, edit these lines. II

            api.applyEffect(myId, "Haste", 500, { inbuiltLevel: 100 });
            api.applyEffect(myId, "Speed", 500, { inbuiltLevel: 1 });

Change "Haste" or "Speed" to whatever effect you want. heres a list of all the effects.

"Damage" | "Damage Reduction" | "Speed" | "VoidJump" | "Fist" | "Frozen" | "Hydrated" | "Invisible" | "Jump Boost" | "Poisoned" | "Slowness" | "Weakness" | "Health Regen" | "Haste" | "Heat Resistance" | "Gliding" | "Boating" | "Obsidian Boating" | "Bunny Hop" | "FallDamage" | "Feather Falling"

You can also make custom effects or change the icon of these effects

Custom Effect Names & Icons:

api.applyEffect(myId, "Custom Effect", null, {icon:"Rotten Flesh"})

Replace "Custom Effect" with the custom effect name you want.

Replace "Rotten Flesh" with the custom icon you want.

ree



You get Haste and Speed when you Hold this magical Pickaxe!

You get it only when you hold the pickaxe.


Haste helps you mine faster than any other pickaxe!

It doesnt work when you hold Gold Pickaxe.


Thank you for installing my first addon!

 
 
 

2 Comments


ObiloxYT
ObiloxYT
Apr 25

WARNING!!! IT IS ALSO VERY ERROR-Y!!!

Like

ObiloxYT
ObiloxYT
Apr 25

This is so cool :)

Like

ADD YOUR OWN PROJECT

© 2025 Bloxd world. All rights reserved.

bottom of page