Jump to content

Change the fuel variable in the holding-item only


TheTrueSCP

Recommended Posts

Hello everyone,

I need help with my code. I want to make drills that consume fuel. At first I wanted to use the damage bar, but then I decided to use tooltips to show the amount of fuel. And here is my problem: I created a variable that is the amount of fuel. But when I use a drill, ALL the drills consume fuel instead of just the one. I know that this happens because I reduce the fuel for all drills with "fuel--;"(static context). How could I relate the consumption to the one that actually uses the fuel?

The DrillsClass:

package net.the_goldbeards.lootdebugs.Items.Weapons.Drills;

import net.minecraft.core.BlockPos;
import net.minecraft.network.chat.Component;
import net.minecraft.network.chat.TextComponent;
import net.minecraft.network.chat.TranslatableComponent;
import net.minecraft.sounds.SoundSource;
import net.minecraft.tags.BlockTags;
import net.minecraft.tags.Tag;
import net.minecraft.util.Mth;
import net.minecraft.world.InteractionHand;
import net.minecraft.world.InteractionResult;
import net.minecraft.world.InteractionResultHolder;
import net.minecraft.world.entity.EquipmentSlot;
import net.minecraft.world.entity.LivingEntity;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.item.*;
import net.minecraft.world.item.context.UseOnContext;
import net.minecraft.world.level.ItemLike;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.Blocks;
import net.minecraft.world.level.block.TorchBlock;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraftforge.common.Tags;
import net.the_goldbeards.lootdebugs.util.ModSounds;
import net.the_goldbeards.lootdebugs.util.ModTags;


import javax.annotation.Nullable;
import java.util.List;

public class DrillsItem extends Item
{
//All fuel sync
public int MAXFUEL = 320 * 2;//320 Blöcke Max * height drills
public int FUEL = 120;//Default Fuel

public float MAXFUELDISPLAY = 44; // 44L
public float FUELDISPLAY = this.MAXFUELDISPLAY/this.MAXFUEL * this.FUEL;


    public DrillsItem(Properties pProperties) {
        super(pProperties);
    }

    @Override
    public boolean isDamageable(ItemStack stack) {
        return true;
    }


    @Override
    public InteractionResult useOn(UseOnContext pContext) {

        System.out.println(this.FUEL);

        Player player = pContext.getPlayer();

        BlockPos posBlock = pContext.getClickedPos();
        BlockPos posBlockDown = pContext.getClickedPos().above();

        Level level = pContext.getLevel();

        Block block = level.getBlockState(posBlock).getBlock();
        Block blockDown = level.getBlockState(posBlockDown).getBlock();


        if(!isFuelEmpty() && !ModTags.Blocks.MC_ORES.contains(block) &&  !ModTags.Blocks.MC_ORES.contains(blockDown) && !isFuel(block))//The Block isnt a MC Ore, the FUel is not empty and the taget block isnt a Coal BLock
        {

            //Break Block
            if (block != Blocks.OBSIDIAN && block != Blocks.BEDROCK) {//and the block isnt a Unbreakable block like obsidian and BedrocK
                level.destroyBlock(posBlock, true);


                if (blockDown != Blocks.OBSIDIAN && blockDown != Blocks.BEDROCK) {//block above
                    level.destroyBlock(posBlockDown, true);
                }
            }
            level.playSound(player, posBlock, ModSounds.LLOYD_INTERACTION.get(), SoundSource.BLOCKS, 1, 1);
            if (!player.isCreative())//If the player is in creative mode, the drills should not loose fuel
            {

                this.FUEL--;
            }
        }

        //Refuel
        else if (isFuel(block) && CanRefuel())//If the block is an Coal Block/Ore,and the Drills can Refuel,  the drills refuel and destroy the block
        {


            if(block == Blocks.COAL_ORE)
            {

              this.FUEL = this.FUEL + 10;//+10
                level.destroyBlock(posBlock, false);
                level.destroyBlock(posBlock, false);
                level.destroyBlock(posBlock, false);

            }
            else
            { this.FUEL = this.FUEL+40;//+40
                level.destroyBlock(posBlock, false);
                level.destroyBlock(posBlock, false);
                level.destroyBlock(posBlock, false);


            }
            level.destroyBlock(posBlock, false);

            if(this.FUEL > this.MAXFUEL)
            {
                this.FUEL = this.MAXFUEL;
            }

        }

        return super.useOn(pContext);
    }


    public boolean isFuelEmpty()
    {
        return  this.FUEL <= 0;
    }

    public boolean CanRefuel()
    {
        return this.FUEL < this.MAXFUEL;
    }


    public boolean isFuel(Block block)
    {
        return block == Blocks.COAL_ORE || block == Blocks.COAL_BLOCK;
    }

    @Override
    public void appendHoverText(ItemStack stack, @Nullable Level pLevel, List<Component> tooltip, TooltipFlag flagIn) {

        this.FUELDISPLAY = this.MAXFUELDISPLAY/this.MAXFUEL * this.FUEL;
        tooltip.add(new TextComponent(Math.round(this.FUELDISPLAY) + "L" +"/" + Math.round(this.MAXFUELDISPLAY) + "L"));
        super.appendHoverText(stack, pLevel, tooltip, flagIn);
    }

    @Override
    public void onUseTick(Level pLevel, LivingEntity pLivingEntity, ItemStack pStack, int pRemainingUseDuration) {
        this.FUELDISPLAY = this.MAXFUELDISPLAY/this.MAXFUEL * this.FUEL;
    }
}



Thanks in advance

Link to comment
Share on other sites

Hello,

Sorry for writing back again but despite several attempts I did not manage to change/create the tags. They always have the value 0.0
here's my code:

package net.the_goldbeards.lootdebugs.Items.Weapons.Drills;

import net.minecraft.core.BlockPos;
import net.minecraft.nbt.CompoundTag;
import net.minecraft.network.chat.Component;
import net.minecraft.network.chat.TextComponent;
import net.minecraft.network.chat.TranslatableComponent;
import net.minecraft.sounds.SoundSource;
import net.minecraft.tags.BlockTags;
import net.minecraft.tags.Tag;
import net.minecraft.util.Mth;
import net.minecraft.world.InteractionHand;
import net.minecraft.world.InteractionResult;
import net.minecraft.world.InteractionResultHolder;
import net.minecraft.world.entity.EquipmentSlot;
import net.minecraft.world.entity.LivingEntity;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.item.*;
import net.minecraft.world.item.context.UseOnContext;
import net.minecraft.world.item.enchantment.Enchantment;
import net.minecraft.world.level.ItemLike;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.Blocks;
import net.minecraft.world.level.block.TorchBlock;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
import net.minecraftforge.common.Tags;
import net.the_goldbeards.lootdebugs.util.ModSounds;
import net.the_goldbeards.lootdebugs.util.ModTags;
import org.jetbrains.annotations.Nullable;


import java.util.List;

public class DrillsItem extends Item
{




    @Override
    public int getItemStackLimit(ItemStack stack) {
        return 1;
    }

    public DrillsItem(Properties pProperties, float FUELAMMOUNT) {
        super(pProperties);

        ItemStack pStack = new ItemStack(this);
        pStack.getOrCreateTag().putFloat("lootdebugs.drillfuel", FUELAMMOUNT);

    }



    @Override
    public InteractionResult useOn(UseOnContext pContext) {

        ItemStack pStack = new ItemStack(pContext.getPlayer().getItemInHand(pContext.getHand()).getItem());
        pStack.getOrCreateTag().putFloat("lootdebugs.drillfuel", 12f);//Debug






        return InteractionResult.PASS;
    }



    @Override
    public void appendHoverText(ItemStack pStack, @Nullable Level pLevel, List<Component> pTooltipComponents, TooltipFlag pIsAdvanced) {



            Float val = pStack.getOrCreateTag().getFloat("lootdebugs.drillfuel");
            pTooltipComponents.add(new TextComponent(val.toString()));


    }
}

 

Thanks

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Baba  Serege [[+27-73 590 8989]] has experience of 27 years in helping and guiding many people from all over the world. His psychic abilities may help you answer and resolve many unanswered questions. He specialize in helping women and men from all walks of life.. 1) – Bring back lost lover. even if lost for a long time. 2) – My lover is abusing alcohol, partying and cheating on me I urgently need help” 3) – Divorce or court issues. 4) – Is your love falling apart? 5) – Do you want your love to grow stronger? 6) – Is your partner losing interest in you? 7) – Do you want to catch your partner cheating on you? – We help to keep your partner faithful and loyal to you. 9) – We recover love and happiness when relationship breaks down. 10) – Making your partner loves you alone. 11) – We create loyalty and everlasting love between couples. 12) – Get a divorce settlement quickly from your ex-partner. 13) – We create everlasting love between couples. 14) – We help you look for the best suitable partner. 15) – We bring back lost lover even if lost for a long time. 16) – We strengthen bonds in all love relationship and marriages 17) – Are you an herbalist who wants to get more powers? 18) – Buy a house or car of your dream. 19) – Unfinished jobs by other doctors come to me. 20) – I help those seeking employment. 21) – Pensioners free treatment. 22) – Win business tenders and contracts. 23) – Do you need to recover your lost property? 24) – Promotion at work and better pay. 25) – Do you want to be protected from bad spirits and nightmares? 26) – Financial problems. 27) – Why you can’t keep money or lovers? 28) – Why you have a lot of enemies? 29) – Why you are fired regularly on jobs? 30) – Speed up money claim spell, delayed payments, pension and accident funds 31) – I help students pass their exams/interviews. 33) – Removal of bad luck and debts. 34) – Are struggling to sleep because of a spiritual wife or husband. 35- ) Recover stolen property
    • OLXTOTO adalah situs bandar togel online resmi terbesar dan terpercaya di Indonesia. Bergabunglah dengan OLXTOTO dan nikmati pengalaman bermain togel yang aman dan terjamin. Koleksi toto 4D dan togel toto terlengkap di OLXTOTO membuat para member memiliki pilihan taruhan yang lebih banyak. Sebagai situs togel terpercaya, OLXTOTO menjaga keamanan dan kenyamanan para membernya dengan sistem keamanan terbaik dan enkripsi data. Transaksi yang cepat, aman, dan terpercaya merupakan jaminan dari OLXTOTO. Nikmati layanan situs toto terbaik dari OLXTOTO dengan tampilan yang user-friendly dan mudah digunakan. Layanan pelanggan tersedia 24/7 untuk membantu para member. Bergabunglah dengan OLXTOTO sekarang untuk merasakan pengalaman bermain togel yang menyenangkan dan menguntungkan.
    • Baba  Serege [[+27-73 590 8989]] has experience of 27 years in helping and guiding many people from all over the world. His psychic abilities may help you answer and resolve many unanswered questions. He specialize in helping women and men from all walks of life.. 1) – Bring back lost lover. even if lost for a long time. 2) – My lover is abusing alcohol, partying and cheating on me I urgently need help” 3) – Divorce or court issues. 4) – Is your love falling apart? 5) – Do you want your love to grow stronger? 6) – Is your partner losing interest in you? 7) – Do you want to catch your partner cheating on you? – We help to keep your partner faithful and loyal to you. 9) – We recover love and happiness when relationship breaks down. 10) – Making your partner loves you alone. 11) – We create loyalty and everlasting love between couples. 12) – Get a divorce settlement quickly from your ex-partner. 13) – We create everlasting love between couples. 14) – We help you look for the best suitable partner. 15) – We bring back lost lover even if lost for a long time. 16) – We strengthen bonds in all love relationship and marriages 17) – Are you an herbalist who wants to get more powers? 18) – Buy a house or car of your dream. 19) – Unfinished jobs by other doctors come to me. 20) – I help those seeking employment. 21) – Pensioners free treatment. 22) – Win business tenders and contracts. 23) – Do you need to recover your lost property? 24) – Promotion at work and better pay. 25) – Do you want to be protected from bad spirits and nightmares? 26) – Financial problems. 27) – Why you can’t keep money or lovers? 28) – Why you have a lot of enemies? 29) – Why you are fired regularly on jobs? 30) – Speed up money claim spell, delayed payments, pension and accident funds 31) – I help students pass their exams/interviews. 33) – Removal of bad luck and debts. 34) – Are struggling to sleep because of a spiritual wife or husband. 35- ) Recover stolen property
  • Topics

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.