Jump to content

[1.6.4]help with item spawning a wall


demand12

Recommended Posts

i am a noob at coding. now thats out of the way.

 

i have a problem.

 

i want to make an item when right clicked on a block it spawns a 3x3 wall on that block and after a few sec, de-spawns.

 

i have googled this sorta thing and i could only find a way to spawn 1 block. and that method comes from itemFlintAndSteel. and the method is quite complex for me to understand. so if someone could either explain how that works or knows another method that is easier to understand. let me know

 

itemFlintAndSteel method:

public boolean onItemUse(ItemStack par1ItemStack, EntityPlayer par2EntityPlayer, World par3World, int par4, int par5, int par6, int par7, float par8, float par9, float par10)

    {

        if (par7 == 0)

        {

            --par5;

        }

 

        if (par7 == 1)

        {

            ++par5;

        }

 

        if (par7 == 2)

        {

            --par6;

        }

 

        if (par7 == 3)

        {

            ++par6;

        }

 

        if (par7 == 4)

        {

            --par4;

        }

 

        if (par7 == 5)

        {

            ++par4;

        }

 

        if (!par2EntityPlayer.canPlayerEdit(par4, par5, par6, par7, par1ItemStack))

        {

            return false;

        }

        else

        {

            if (par3World.isAirBlock(par4, par5, par6))

            {

                par3World.playSoundEffect((double)par4 + 0.5D, (double)par5 + 0.5D, (double)par6 + 0.5D, "fire.ignite", 1.0F, itemRand.nextFloat() * 0.4F + 0.8F);

                par3World.setBlock(par4, par5, par6, Block.fire.blockID);

            }

 

            par1ItemStack.damageItem(1, par2EntityPlayer);

            return true;

        }

    }

 

 

thanks in advance

Link to comment
Share on other sites

I'll change name of some parameters so you can easily understand them.

 

//This method is called when right-clicked with an item.

//I think it was for placing block from the items, so the block position would be where a block would appear.

//bx, by, bz is the coordinate of the clicked region.

//side is the placing side. Bottom = 0, Top = 1, East = 2, West = 3, North = 4, South = 5.

//px, py, pz is the coordinate of the player relative to the clicked block.

public boolean onItemUse(ItemStack used, EntityPlayer player, World world, int bx, int by, int bz, int side, float px, float py, float pz)

    {

        //clicked bottom of the block

        if (side == 0)

        {

            //decreases the y position to get the actual clicked block

            --by;

        }

 

        //clicked top of the block

        if (side == 1)

        {

            //increases the y position to get the actual clicked block

            ++by;

        }

 

        //and so on...

        if (side == 2)

        {

            --bz;

        }

 

        if (side == 3)

        {

            ++bz;

        }

 

        if (side == 4)

        {

            --bx;

        }

 

        if (side == 5)

        {

            ++bx;

        }

 

        //check if player can edit the block.

        if (!player.canPlayerEdit(bx, by, bz, side, used))

        {

            //Item didnt used.

            return false;

        }

        else

        {

            //When the block is air,

            if (world.isAirBlock(bx, by, bz))

            {

                //play Sound at the center of the block.

                world.playSoundEffect((double)x+ 0.5D, (double)y+ 0.5D, (double)z+ 0.5D, "fire.ignite", 1.0F, itemRand.nextFloat() * 0.4F + 0.8F);

               

                //Sets the Block!

                world.setBlock(par4, par5, par6, Block.fire.blockID);

            }

 

            //Damages the Item.

            used.damageItem(1, player);

 

            //Item used.

            return true;

        }

   

I. Stellarium for Minecraft: Configurable Universe for Minecraft! (WIP)

II. Stellar Sky, Better Star Rendering&Sky Utility mod, had separated from Stellarium.

Link to comment
Share on other sites

I'll change name of some parameters so you can easily understand them.

 

//This method is called when right-clicked with an item.

//I think it was for placing block from the items, so the block position would be where a block would appear.

//bx, by, bz is the coordinate of the clicked region.

//side is the placing side. Bottom = 0, Top = 1, East = 2, West = 3, North = 4, South = 5.

//px, py, pz is the coordinate of the player relative to the clicked block.

public boolean onItemUse(ItemStack used, EntityPlayer player, World world, int bx, int by, int bz, int side, float px, float py, float pz)

    {

        //clicked bottom of the block

        if (side == 0)

        {

            //decreases the y position to get the actual clicked block

            --by;

        }

 

        //clicked top of the block

        if (side == 1)

        {

            //increases the y position to get the actual clicked block

            ++by;

        }

 

        //and so on...

        if (side == 2)

        {

            --bz;

        }

 

        if (side == 3)

        {

            ++bz;

        }

 

        if (side == 4)

        {

            --bx;

        }

 

        if (side == 5)

        {

            ++bx;

        }

 

        //check if player can edit the block.

        if (!player.canPlayerEdit(bx, by, bz, side, used))

        {

            //Item didnt used.

            return false;

        }

        else

        {

            //When the block is air,

            if (world.isAirBlock(bx, by, bz))

            {

                //play Sound at the center of the block.

                world.playSoundEffect((double)x+ 0.5D, (double)y+ 0.5D, (double)z+ 0.5D, "fire.ignite", 1.0F, itemRand.nextFloat() * 0.4F + 0.8F);

               

                //Sets the Block!

                world.setBlock(par4, par5, par6, Block.fire.blockID);

            }

 

            //Damages the Item.

            used.damageItem(1, player);

 

            //Item used.

            return true;

        }

 

 

thanks for your help Abastro really apriciated. i am going to see if i can get what i want from it(i propebly will) thanks again :)

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

    • where opportunities abound and promises of financial prosperity beckon from every corner of the internet, the line between opportunity and deception becomes increasingly blurred. As a 38-year-old single mom, I embarked on a journey into the world of cryptocurrency investing, hoping to secure a brighter future for myself and my family. Little did I know, this journey would lead me down a treacherous path fraught with deception and heartbreak. My foray into cryptocurrency investing began with the promise of lucrative returns from a platform claiming to operate within Europe and South Asia. Blinded by optimism and the allure of financial gain, I entrusted my hard-earned savings to this fraudulent company, believing wholeheartedly in its legitimacy. However, my hopes were dashed when I began encountering difficulties with withdrawals and found myself entangled in a web of exorbitant fees and dubious practices. In a desperate bid to salvage what remained of my investment, I turned to a recovery company recommended to me by the very platform that had deceived me. Yet, even in my darkest hour, the deceit persisted, as I soon discovered that the company tasked with recovering my funds was complicit in the deception. Faced with the crushing realization that I had been betrayed once again, I felt a sense of hopelessness engulf me. It was in this moment of despair that I stumbled upon Lee Ultimate Hacker – a shining beacon of hope amidst the darkness of deception. Through a stroke of luck, I came across a blog post singing the praises of this remarkable team, and I knew I had found my savior. With nothing left to lose and everything to gain, I reached out to them, hoping against hope for a chance at redemption. From the outset, Lee Ultimate Hacker proved to be a guiding light in my journey toward financial recovery. Their professionalism, expertise, and unwavering commitment to client satisfaction set them apart from the myriad of recovery services in the digital sphere. With empathy and understanding, they listened to my story and embarked on a mission to reclaim what was rightfully mine. Through their diligent efforts and meticulous attention to detail, Lee Ultimate Hacker succeeded where others had failed, restoring a sense of hope and security in the wake of betrayal. Their dedication to justice and unwavering determination to deliver results ensured that I emerged from the ordeal stronger and more resilient than ever before. Throughout the recovery process, their team remained accessible, transparent, and supportive, offering guidance and reassurance every step of the way. To anyone grappling with devastating financial fraud, I offer a lifeline of hope – trust in Lee Ultimate Hacker to guide you through the storm with expertise and compassion. In a world rife with deception and uncertainty, they stand as a beacon of reliability and trustworthiness, ready to lead you toward financial restitution and a brighter future. If you find yourself in a similar predicament, do not hesitate to reach out to Lee Ultimate Hacker.AT LEEULTIMATEHACKER@ AOL. COM   Support @ leeultimatehacker . com.  telegram:LEEULTIMATE   wh@tsapp +1  (715) 314  -  9248  https://leeultimatehacker.com
    • Sorry, this is the report https://paste.ee/p/OeDj1
    • Please share a link to your crash report on https://paste.ee, as explained in the FAQ
    • This is the crash report [User dumped their crash report directly in their thread, triggering the anti-spam]  
    • Add the crash-report or latest.log (logs-folder) with sites like https://paste.ee/ and paste the link to it here  
  • Topics

×
×
  • Create New...

Important Information

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