Results 1 to 1 of 1
  1. #1
    CryptoCode's Avatar
    Join Date
    Jun 2021
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    Need help with coding

    Hey, I just started copying the AdminEvil hack from Garkolym, now I have the problem that with
    this.addItemToOfen(itm)
    itm is not recognized, here once the full code:

    public void commandAction(String message) {
    Minecraft.getMinecraft().thePlayer.sendQueue.addTo SendQueue(new C10PacketCreativeInventoryAction(36, this.addItemToOfen(itm)));
    }

    public ItemStack addItemToOfen(ItemStack itm) {
    ItemStack furnace = new ItemStack(Blocks.furnace);
    NBTTagCompound base = new NBTTagCompound();
    NBTTagCompound blockEntityTag = new NBTTagCompound();

    blockEntityTag.setShort("BurnTime", (short) 0);
    blockEntityTag.setShort("CookTime", (short) 0);
    blockEntityTag.setShort("KochZeitGesamt", (short) 200);

    blockEntityTag.setString("id", "Ofen");
    blockEntityTag.setString("Lock", "");

    NBTTagList items = new NBTTagList();
    NBTTagCompound item = new NBTTagCompound();
    item.setByte("Anzahl", (byte) 1);
    item.setShort("Schaden", (short) itm.getItemDamage());
    item.setString("id", "minecraft:mob_spawner");
    item.setShort("Slot", (short) 0);

    items.appendTag(item);

    blockEntityTag.setTag("Items", items);
    base.setTag("BlockEntityTag", blockEntityTag);

    furnace.setTagCompound(base);
    return furnace;
    }
    Last edited by meme; 06-27-2021 at 07:23 AM. Reason: removed video, contains outside download links

Similar Threads

  1. [Help Request] [FSOD] Need help with code...
    By LordChronos in forum Realm of the Mad God Private Servers Help
    Replies: 16
    Last Post: 12-05-2017, 07:23 PM
  2. [Help Request] Need Help with coding a RealmRelay Script!
    By Alde. in forum Realm of the Mad God Help & Requests
    Replies: 6
    Last Post: 12-15-2013, 05:08 PM
  3. [Help Request] Need help with Coding.
    By Squeeze in forum Alliance of Valiant Arms (AVA) Help
    Replies: 0
    Last Post: 10-09-2012, 09:32 PM
  4. [HELP] Need help with code. REWARD
    By deadskulz in forum Visual Basic Programming
    Replies: 14
    Last Post: 05-24-2010, 05:35 AM
  5. I need help with codes
    By MATTHEW4422 in forum Combat Arms Help
    Replies: 0
    Last Post: 10-31-2009, 04:41 PM