Jump to content

Throwable Items


ashtonr12

Recommended Posts

My throw able dagger works fine no bugs or freezes ecxept you cant see it when its thrown ( the moving entity) it still hits mobs and damages them the items still gets used up just no image.

 

entity class

package ashtonsmod.common;

import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.passive.EntityChicken;
import net.minecraft.entity.projectile.EntityThrowable;
import net.minecraft.util.DamageSource;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;

public class EntityThrowingKnife extends EntityThrowable
{
    public EntityThrowingKnife(World par1World)
    {
        super(par1World);
    }

    public EntityThrowingKnife(World par1World, EntityLiving par2EntityLiving)
    {
        super(par1World, par2EntityLiving);
    }

    public EntityThrowingKnife(World par1World, double par2, double par4, double par6)
    {
        super(par1World, par2, par4, par6);
    }

    /**
     * Called when this EntityThrowable hits a block or entity.
     */
    protected void onImpact(MovingObjectPosition par1MovingObjectPosition)
    {
        if (par1MovingObjectPosition.entityHit != null)
        {
            par1MovingObjectPosition.entityHit.attackEntityFrom(DamageSource.causeThrownDamage(this, this.func_85052_h()), 6);
        }

        if (!this.worldObj.isRemote && this.rand.nextInt( == 0)
        {
            byte var2 = 0;

            if (this.rand.nextInt(32) == 0)
            {
                var2 = 0;
            }

        if (!this.worldObj.isRemote)
        {
            this.setDead();
        }
    }
}}

 

Dagger class

package ashtonsmod.common;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;

public class Dagger extends Item{


    public Dagger(int par1)
    {
        super(par1);
        this.maxStackSize = 64;
    }
    
    public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)
    {
        if (!par3EntityPlayer.capabilities.isCreativeMode)
        {
            --par1ItemStack.stackSize;
        }

        par2World.playSoundAtEntity(par3EntityPlayer, "random.bow", 0.5F, 0.4F / (itemRand.nextFloat() * 0.4F + 0.8F));

        if (!par2World.isRemote)
        {
            par2World.spawnEntityInWorld(new EntityThrowingKnife(par2World, par3EntityPlayer));
        }

        return par1ItemStack;
    }
    @Override
  	public String getTextureFile(){
  		return CommonProxy.items_png;   
}

   }

Use examples, i have aspergers.

Examples make sense to me.

Link to comment
Share on other sites

thanks for the hint, i got this far.

 

public void renderRegistry() 
        {
             RenderingRegistry.registerEntityRenderingHandler(EntityThrowingKnife.class, new RenderEntityThrowingKnife.class);
        }

 

there is an error after new that spans to the .class and i cant see to fix it :/ all the other constructors and classes are in place, just this one part :/

Use examples, i have aspergers.

Examples make sense to me.

Link to comment
Share on other sites

well, you have to implement your custom renderer, because the vanilla ones work only for vanilla stuff (at least the snowball does). if you want just slightly modified snowball renderer you can take a look at this - https://github.com/mnn/jaffas/blob/c5359edb2e287d6503ec8a4def73b01917c4b257/src/minecraft/monnef/jaffas/food/client/RenderItemInAir.java.

mnn.getNativeLang() != English

If I helped you please click on the "thank you" button.

Link to comment
Share on other sites

I'm afraid you have lost me :( sorry.

 

I currently have;

 

An Item that fires an entity'

package ashtonsmod.common;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;

public class Dagger extends Item{


    public Dagger(int par1)
    {
        super(par1);
        this.maxStackSize = 64;
    }
    
    public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)
    {
        if (!par3EntityPlayer.capabilities.isCreativeMode)
        {
            --par1ItemStack.stackSize;
        }

        par2World.playSoundAtEntity(par3EntityPlayer, "random.bow", 0.5F, 0.4F / (itemRand.nextFloat() * 0.4F + 0.8F));

        if (!par2World.isRemote)
        {
            par2World.spawnEntityInWorld(new EntityThrowingKnife(par2World, par3EntityPlayer));
        }

        return par1ItemStack;
    }
    @Override
  	public String getTextureFile(){
  		return CommonProxy.items_png;   
}

   }

 

An Entity for the item to fire'

package ashtonsmod.common;

import net.minecraft.entity.EntityLiving;
import net.minecraft.entity.monster.EntityBlaze;
import net.minecraft.entity.passive.EntityChicken;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.projectile.EntityThrowable;
import net.minecraft.util.DamageSource;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.world.World;

public class EntityThrowingKnife extends EntityThrowable
{
    private static final EntityPlayer shootingEntity = null;

public EntityThrowingKnife(World par1World)
    {
        super(par1World);
    }

    public EntityThrowingKnife(World par1World, EntityLiving par2EntityLiving)
    {
        super(par1World, par2EntityLiving);
    }

    public EntityThrowingKnife(World par1World, double par2, double par4, double par6)
    {
        super(par1World, par2, par4, par6);
    }

    /**
     * Called when this EntityThrowable hits a block or entity.
     */
    protected void onImpact(MovingObjectPosition par1MovingObjectPosition)
    {
        if (par1MovingObjectPosition.entityHit != null)
        {
            par1MovingObjectPosition.entityHit.attackEntityFrom(DamageSource.causeThrownDamage(this, this.func_85052_h()), 6);
        }

        if (!this.worldObj.isRemote && this.rand.nextInt( == 0)
        {
            byte var2 = 1;

            if (this.rand.nextInt(32) == 0)
            {
                var2 = 4;
            }

        }

        if (!this.worldObj.isRemote)
        {
            this.setDead();
        }
    }
}

 

A preintit method for the entity

@PreInit
public void registerMyEvents(FMLPreInitializationEvent e){
    {
        EntityRegistry.registerModEntity(EntityThrowingKnife.class, "Throwing Knife", 1, this, 250, 5, true);
    }

 

and finally a render hook/thing in the client proxy'

  public void renderRegistry() 
        {
             RenderingRegistry.registerEntityRenderingHandler(EntityThrowingKnife.class,  RenderEntityThrowingKnife());
        }

	private Render RenderEntityThrowingKnife() {
		return null;
	}
        

 

As it stands;

-My item fires the entity from the top right of my player entities face.

- the entity fired appears as a white cube in game.

-the entity goes through all blocks/walls/floors.

 

If you could instruct me or guide to a tutorial or something to help me fix the above problems i would be immensely grateful.

Thankyou.

 

Use examples, i have aspergers.

Examples make sense to me.

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

    • ---- Minecraft Crash Report ---- // Why did you do that? Time: 2024-07-03 20:25:30 WEST Description: Exception in server tick loop java.lang.NoClassDefFoundError: org/spongepowered/asm/synthetic/args/Args$1     at net.minecraft.world.WorldType.getChunkGenerator(WorldType.java:149)     at net.minecraft.world.WorldProvider.func_76555_c(WorldProvider.java:66)     at net.minecraft.world.WorldServer.func_72970_h(WorldServer.java:654)     at net.minecraft.world.World.<init>(World.java:245)     at net.minecraft.world.WorldServer.<init>(WorldServer.java:97)     at WorldServerOF.<init>(WorldServerOF.java:69)     at net.minecraft.server.integrated.IntegratedServer.func_71247_a(IntegratedServer.java:65)     at net.minecraft.server.integrated.IntegratedServer.func_71197_b(IntegratedServer.java:153)     at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:387)     at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:685) Caused by: java.lang.ClassNotFoundException: org.spongepowered.asm.synthetic.args.Args$1     at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:191)     at java.lang.ClassLoader.loadClass(ClassLoader.java:424)     at java.lang.ClassLoader.loadClass(ClassLoader.java:357)     ... 10 more Caused by: java.lang.ArrayIndexOutOfBoundsException A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- System Details -- Details:     Minecraft Version: 1.7.10     Operating System: Windows 10 (amd64) version 10.0     Java Version: 1.8.0_51, Oracle Corporation     Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation     Memory: 639181016 bytes (609 MB) / 1577058304 bytes (1504 MB) up to 5301600256 bytes (5056 MB)     JVM Flags: 7 total; -Xmx5045M -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M     AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used     IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0     FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1614 Optifine OptiFine_1.7.10_HD_U_E7 165 mods loaded, 165 mods active     States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored     UCHIJAA    mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)      UCHIJAA    FML{7.10.99.99} [Forge Mod Loader] (forge-1.7.10-10.13.4.1614-1.7.10.jar)      UCHIJAA    Forge{10.13.4.1614} [Minecraft Forge] (forge-1.7.10-10.13.4.1614-1.7.10.jar)      UCHIJAA    appliedenergistics2-core{rv3-beta-6} [Applied Energistics 2 Core] (minecraft.jar)      UCHIJAA    Aroma1997Core{1.0.2.16} [Aroma1997Core] (Aroma1997Core-1.7.10-1.0.2.16.jar)      UCHIJAA    BRCore{1.0} [BRCore] (minecraft.jar)      UCHIJAA    CodeChickenCore{1.0.7.48} [CodeChicken Core] (minecraft.jar)      UCHIJAA    ivtoolkit{1.2.1} [IvToolkit] (minecraft.jar)      UCHIJAA    OpenComputers|Core{1.8.5} [OpenComputers (Core)] (minecraft.jar)      UCHIJAA    OpenModsCore{0.10.1} [OpenModsCore] (minecraft.jar)      UCHIJAA    FoamFixCore{1.0.4} [FoamFixCore] (minecraft.jar)      UCHIJAA    FastCraft{1.25} [FastCraft] (fastcraft-1.25.jar)      UCHIJAA    grimoire{3.2.11} [Grimoire] (Grimoire-mc1.7.10-3.2.11.jar)      UCHIJAA    bettercrashes{1.1.2} [BetterCrashes] (BetterCrashes-1.7.10-1.1.2.jar)      UCHIJAA    unimixins{0.1.17} [UniMixins] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAA    unimixins-mixin{0.1.17} [UniMixins: Mixin (UniMix)] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAA    unimixins-compat{0.1.17} [UniMixins: Compatibility] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAA    mixingasm{0.3} [UniMixins: Mixingasm] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAA    spongemixins{2.0.1} [UniMixins: SpongeMixins] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAA    mixinbooterlegacy{1.2.1} [UniMixins: MixinBooterLegacy] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAA    gasstation{0.5.1} [UniMixins: GasStation] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAA    gtnhmixins{2.2.0} [UniMixins: GTNHMixins] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAA    mixinextras{0.1.17} [UniMixins: MixinExtras] (+unimixins-all-1.7.10-0.1.17.jar)      UCHIJAA    battlegear2{1.7.10} [Mine & Blade Battlegear 2 - Bullseye] (1.7.10-MB_Battlegear2-Bullseye-1.0.8.3.jar)      UCHIJAA    simplecore{1.1.1.3} [SimpleCore API] (simplecore-1.7.10-1.1.1.3.jar)      UCHIJAA    netherrocks{1.3.0} [Netherrocks] ([1.7.10] Netherrocks v1.3.0.jar)      UCHIJAA    wingsmod{1.2} [Wings Mod] ([1.7.10] Wings Mod-1.2.jar.zip)      UCHIJAA    securitycraft{v1.8.13} [SecurityCraft] ([1.7.10]+SecurityCraft+v1.8.13.jar)      UCHIJAA    divinerpg{1.4.1.5} [DivineRPG] ([1.7.10][SMP]DivineRPG-1.4.1.5.jar)      UCHIJAA    compressedblocks{1.0.1.0} [Compressed Blocks] ([1.7.10]compressedblocks.jar)      UCHIJAA    fusion{1.6.1.1} [Fusion] (fusion-1.7.10-1.6.1.1.jar)      UCHIJAA    netherrocksfusion{2.0} [Netherrocks Fusion] ([1.7.10]Netherrocks Fusion SO 1.6.jar)      UCHIJAA    uncraftingTable{1.4.7} [Uncrafting Table] ([1.7.10]UncraftingTable-1.4.7.jar)      UCHIJAA    ActuallyAdditions{1.7.10-r21} [Actually Additions] (ActuallyAdditions-1.7.10-r21.jar)      UCHIJAA    achievementdetection{1.0.0} [Achievement Detection Fix] (ADFix-1.0.0.jar)      UCHIJAA    appliedenergistics2{rv3-beta-6} [Applied Energistics 2] (appliedenergistics2-rv3-beta-6.jar)      UCHIJAA    bdlib{1.9.5.1} [BD Lib] (bdlib-1.9.5.1-mc1.7.10.jar)      UCHIJAA    ae2stuff{0.5.1.61} [AE2 Stuff] (ae2stuff-0.5.1.61-mc1.7.10.jar)      UCHIJAA    animalbikes{1.7.10} [Animal Bikes] (AnimalBikes_1.7.10.jar)      UCHIJAA    gibby_dungeons{1.7} [Arcana RPG] (Arcana+RPG+1.6.2-1.7.10.jar)      UCHIJAA    Aroma1997CoreHelper{1.0.2.16} [Aroma1997Core|Helper] (Aroma1997Core-1.7.10-1.0.2.16.jar)      UCHIJAA    Aroma1997sDimension{1.0} [Aroma1997's Dimensional World] (Aroma1997s-Dimensional-World-1.7.10-1.1.0.1.jar)      UCHIJAA    Baubles{1.0.1.10} [Baubles] (Baubles-1.7.10-1.0.1.10.jar)      UCHIJAA    baublelicious{1.7.10-1.2.2-final} [Baublelicious] (baublelicious-1.7.10-1.2.2-final.jar)      UCHIJAA    baublesstuff{2.1.2} [Baubles Stuff] (baublesstuff-2.1.2.jar)      UCHIJAA    BetterAchievements{0.1.0} [Better Achievements] (BetterAchievements-1.7.10-0.1.0.jar)      UCHIJAA    BiblioCraft{1.11.7} [BiblioCraft] (BiblioCraft[v1.11.7][MC1.7.10].jar)      UCHIJAA    malisiscore{1.7.10-0.14.3} [MalisisCore] (malisiscore-1.7.10-0.14.3.jar)      UCHIJAA    malisisdoors{1.7.10-1.13.2} [Malisis' Doors] (malisisdoors-1.7.10-1.13.2.jar)      UCHIJAA    BigDoors{1.7.10-1.1.0} [Big Doors] (BigDoors-1.7.10-1.1.0.jar)      UCHIJAA    bigtrees{0.2} [The BigTrees Mod] (bigtrees-0.2-1.7.10.jar)      UCHIJAA    Mantle{1.7.10-0.3.2.jenkins191} [Mantle] (Mantle-1.7.10-0.3.2b.jar)      UCHIJAA    Natura{2.2.0} [Natura] (natura-1.7.10-2.2.1a2.jar)      UCHIJAA    BiomesOPlenty{2.1.0} [Biomes O' Plenty] (BiomesOPlenty-1.7.10-2.1.0.2308-universal.jar)      UCHIJAA    AWWayofTime{v1.3.3} [Blood Magic: Alchemical Wizardry] (BloodMagic-1.7.10-1.3.3-17.jar)      UCHIJAA    guideapi{1.7.10-1.0.1-29} [Guide-API] (Guide-API-1.7.10-1.0.1-29.jar)      UCHIJAA    ExtraUtilities{1.2.12} [Extra Utilities] (extrautilities-1.2.12.jar)      UCHIJAA    ImmersiveEngineering{0.7.7} [Immersive Engineering] (ImmersiveEngineering-0.7.7.jar)      UCHIJAA    TConstruct{1.7.10-1.8.8.build991} [Tinkers' Construct] (TConstruct-1.7.10-1.8.8.build991.jar)      UCHIJAA    BloodArsenal{1.2-5} [Blood Arsenal] (BloodArsenal-1.7.10-1.2-5.jar)      UCHIJAA    bloodarsenalvampirepatcher{1.0} [Blood Arsenal Vampire Patcher] (bloodarsenalvampirepatcher-1.0.jar)      UCHIJAA    cannibalism{1.3.0} [Cannibalism] (Cannibalism-1.3.0-1.7.10.jar)      UCHIJAA    TwilightForest{2.4.3} [The Twilight Forest] (TwilightForest-2.4.3.jar)      UCHIJAA    chisel{2.9.5.11} [Chisel] (Chisel-2.9.5.11.jar)      UCHIJAA    ComputerCraft{1.75} [ComputerCraft] (ComputerCraft1.75.jar)      UCHIJAA    cosmeticarmorreworked{1.7.10-v7} [CosmeticArmorReworked] (CosmeticArmorReworked-1.7.10-v7.jar)      UCHIJAA    CraftHeraldry{1.1.3} [CraftHeraldry] (CraftHeraldry 1.1.3.jar)      UCHIJAA    ElecCore{1.4.294} [ElecCore] (ElecCore-1.7.10-1.4.294.jar)      UCHIJAA    CraftingTableIV{1.1Beta.93} [CraftingTableIV] (CraftingTableIV-1.7.10-1.1Beta.93.jar)      UCHIJAA    craftingtweaks{1.0.88} [Crafting Tweaks] (craftingtweaks-mc1.7.10-1.0.88.jar)      UCHIJAA    customnpcs{1.7.10d} [CustomNpcs] (CustomNPCs_1.7.10d(29oct17).jar)      UCHIJAA    dangerrpg{1.1.3.1} [DangerRPG] (DangerRPG-1.7.10-1.1.3.1.jar)      UCHIJAA    DisenchanterMod{1.6} [Disenchanter] (DisenchanterMod-[1.7.10]1.6.jar)      UCHIJAA    dmod{1.0.3.5} [D-Mod] (DMod-1.7.10-1.0.3.5.jar)      UCHIJAA    dldungeonsjdg{1.11.0.1} [Doomlike Dungeons] (DoomlikeDungeons-1.11.0.1-MC1.7.10.jar)      UCHIJAA    DragonMounts{r41-1.7.10} [Dragon Mounts] (DragonMounts_r41_1.7.10.jar)      UCHIJAA    dragonrealm{1.2a} [Dragon Realm] (DragonRealm_v1.2a.jar)      UCHIJAA    emeraldobsidianmod{1.3.1} [Emerald & Obsidian tools/armor mod] (emeraldobsidianmod-1.7.10-1.3.1.jar)      UCHIJAA    eplus{3.0.2-d} [Enchanting Plus] (EnchantingPlus-1.7.10-3.0.2-d.jar)      UCHIJAA    thebombzenapi{2.4.1} [ThebombzenAPI] (thebombzenapi_v2.4.1_mc1.7.2.jar)      UCHIJAA    enchantview{4.1.0} [EnchantView] (EnchantView-v4.1.0-mc1.7.10.jar)      UCHIJAA    enderbook{1.7.10-1.0.0} [Ender Book] (EnderBook-1.7.10-1.0.0.jar)      UCHIJAA    endercore{1.7.10-0.2.0.40_beta} [EnderCore] (EnderCore-1.7.10-0.2.0.40_beta.jar)      UCHIJAA    EnderIO{1.7.10-2.3.1.10_beta.0} [Ender IO] (EnderIO-1.7.10-2.3.1.10_beta.0.jar)      UCHIJAA    waterhooks{1.2.1} [Water Hooks] (waterhooks-1.2.1.jar)      UCHIJAA    enderioaddons{0.10.13} [Ender IO Addons] (EnderIOAddons-1.7.10-2.3.0.427_beta-0.10.13.56_beta.jar)      UCHIJAA    EnderZoo{1.7.10-1.0.15.32} [Ender Zoo] (EnderZoo-1.7.10-1.0.15.32.jar)      UCHIJAA    extraachievements{2.1.1} [Extra Achievements] (Extra Achievements 2.1.1.jar)      UCHIJAA    golems{1.20} [Extra Golems] (Extra-Golems[1.7.10]-1.20.jar)      UCHIJAA    harvestcraft{1.7.10j} [Pam's HarvestCraft] (Pam's HarvestCraft 1.7.10Lb.jar)      UCHIJAA    progressiveautomation{1.6.35} [Progressive Automation] (ProgressiveAutomation-1.7.10-1.6.35.jar)      UCHIJAA    ExtraTiC{1.4.6} [ExtraTiC] (ExtraTiC-1.7.10-1.4.6.jar)      UCHIJAA    farlands{2.0.0} [farlands] (farlands-v2.0.0-pre1-master.3+986bd286b0.jar)      UCHIJAA    fastflyblockbreaking{MC1.7.10-1.1} [FastFlyBlockBreaking] (fastflyblockbreaking-MC1.7.10-1.1.jar)      UCHIJAA    foamfix{@VERSION@} [FoamFix] (FoamFix-1.7.10-universal-1.0.4.jar)      UCHIJAA    FpsReducer{mc1.7.10-1.10.3} [FPS Reducer] (FpsReducer-mc1.7.10-1.10.3.jar)      UCHIJAA    godweapons{4.0} [Gods' Weapons] (godweapons - 1.7.10 - 4.1.jar)      UCHIJAA    gravelminer{1.0.5} [GravelMiner] (GravelMiner-mc1.7.10-1.0.5.jar)      UCHIJAA    hardcorewither{1.1.3} [Hardcore Wither] (Hardcore Wither-1.7.10-1.1.3-21-universal.jar)      UCHIJAA    HardcoreEnderExpansion{1.8.6} [Hardcore Ender Expansion] (HardcoreEnderExpansion  MC-1.7.10  v1.8.6.jar)      UCHIJAA    iChunUtil{4.2.3} [iChunUtil] (iChunUtil-4.2.3.jar)      UCHIJAA    IC2{2.2.827-experimental} [IndustrialCraft 2] (industrialcraft_2_2.2.827_ex1.7.10.jar)      UCHIJAA    ias{D7.29 :P} [In-Game Account Switcher] (InGameAccountSwitcher-Forge-1.7-8.0.1.jar)      UCHIJAA    inventorytweaks{1.59-dev-152-cf6e263} [Inventory Tweaks] (InventoryTweaks-1.59-dev-152.jar)      UCHIJAA    ironbackpacks{1.7.10-1.2.20} [Iron Backpacks] (IronBackpacks-1.7.10-1.2.20.jar)      UCHIJAA    IronChest{6.0.39.728} [Iron Chest] (ironchest-1.7.10-6.0.39.728-universal.jar)      UCHIJAA    ironfurnaces{1.2.4} [Iron Furnaces] (ironfurnaces-1.2.4R.jar)      UCHIJAA    journeymap{5.2.3} [JourneyMap] (journeymap-1.7.10-5.2.3-unlimited.jar)      UCHIJAA    liquidenchanting{1.7.10_v1} [Liquid Enchanting] (liquidenchanting-1.7.10_v1.jar)      UCHIJAA    lootbags{2.0.17} [Loot Bags] (LootBags-1.7.10-2.0.17.jar)      UCHIJAA    lucky{5.1.0} [Lucky Block] (Lucky-Block-Mod-1.7.10.jar)      UCHIJAA    lycanitesmobs{1.13.0.5 - MC 1.7.10} [Lycanites Mobs] (LycanitesMobsComplete 1.13.0.5 [1.7.10].jar)      UCHIJAA    arcticmobs{1.13.0.5 - MC 1.7.10} [Lycanites Arctic Mobs] (LycanitesMobsComplete 1.13.0.5 [1.7.10].jar)      UCHIJAA    demonmobs{1.13.0.5 - MC 1.7.10} [Lycanites Demon Mobs] (LycanitesMobsComplete 1.13.0.5 [1.7.10].jar)      UCHIJAA    desertmobs{1.13.0.5 - MC 1.7.10} [Lycanites Desert Mobs] (LycanitesMobsComplete 1.13.0.5 [1.7.10].jar)      UCHIJAA    forestmobs{1.13.0.5 - MC 1.7.10} [Lycanites Forest Mobs] (LycanitesMobsComplete 1.13.0.5 [1.7.10].jar)      UCHIJAA    freshwatermobs{1.13.0.5 - MC 1.7.10} [Lycanites Freshwater Mobs] (LycanitesMobsComplete 1.13.0.5 [1.7.10].jar)      UCHIJAA    infernomobs{1.13.0.5 - MC 1.7.10} [Lycanites Inferno Mobs] (LycanitesMobsComplete 1.13.0.5 [1.7.10].jar)      UCHIJAA    junglemobs{1.13.0.5 - MC 1.7.10} [Lycanites Jungle Mobs] (LycanitesMobsComplete 1.13.0.5 [1.7.10].jar)      UCHIJAA    mountainmobs{1.13.0.5 - MC 1.7.10} [Lycanites Mountain Mobs] (LycanitesMobsComplete 1.13.0.5 [1.7.10].jar)      UCHIJAA    plainsmobs{1.13.0.5 - MC 1.7.10} [Lycanites Plains Mobs] (LycanitesMobsComplete 1.13.0.5 [1.7.10].jar)      UCHIJAA    saltwatermobs{1.13.0.5 - MC 1.7.10} [Lycanites Saltwater Mobs] (LycanitesMobsComplete 1.13.0.5 [1.7.10].jar)      UCHIJAA    shadowmobs{1.13.0.5 - MC 1.7.10} [Lycanites Shadow Mobs] (LycanitesMobsComplete 1.13.0.5 [1.7.10].jar)      UCHIJAA    swampmobs{1.13.0.5 - MC 1.7.10} [Lycanites Swamp Mobs] (LycanitesMobsComplete 1.13.0.5 [1.7.10].jar)      UCHIJAA    testdummy{1.0} [MmmMmmMmmMmm] (MmmMmmMmmMmm-1.7.10-1.9.jar)      UCHIJAA    MouseTweaks{2.4.4} [Mouse Tweaks] (MouseTweaks-2.4.4-mc1.7.10.jar)      UCHIJAA    netheriteplus{0.9 Beta} [NetheritePlus+] (NetheritePlus_1.7.10_Beta0.9.jar)      UCHIJAA    netherlicious{3.2.8} [§6Netherlicious] (netherlicious-3.2.8.jar)      UCHIJAA    recipehandler{1.7.10} [NoMoreRecipeConflict] (NoMoreRecipeConflict-0.3(1.7.10).jar)      UCHIJAA    nonevaporation{1.0.1} [NonEvaporation] (NonEvaporation_1.7-1.0.1.jar)      UCHIJAA    notenoughIDs{1.4.3.5} [NotEnoughIDs] (NotEnoughIDs-1.4.3.5.jar)      UCHIJAA    NOVA{2016-07-21} [NOVA] (NOVA-2016-07-21-universal.jar)      UCHIJAA    numina{1.7.10} [Numina] (Numina-0.4.1.106.jar)      UCHIJAA    obscore{1.4.1} [ObsCore] (obscore-1.4.1_mc1.7.10.jar)      UCHIJAA    ObsidianBoat{v1.3.2} [Obsidian Boat] (ObsidianBoat-1.7.10-1.3.2.jar)      UCHIJAA    obsidianbuster{1.0} [Obsidian Buster] (obsidianBuster-1.0.jar)      UCHIJAA    obstrophiesaoa{1.6.0} [ObsTrophies] (obstrophies-1.6.0_mc1.7.10.jar)      UCHIJAA    OpenMods{0.10.1} [OpenMods] (OpenModsLib-1.7.10-0.10.1.jar)      UCHIJAA    OpenBlocks{1.6} [OpenBlocks] (OpenBlocks-1.7.10-1.6.jar)      UCHIJAA    OpenComputers{1.8.5} [OpenComputers] (OpenComputers-MC1.7.10-1.8.5+ad76e2a-universal.jar)      UCHIJAA    openmodularturrets{2.2.11-243} [Open Modular Turrets] (OpenModularTurrets-1.7.10-2.2.11-243.jar)      UCHIJAA    OreSpawn{1.7.10.20.3} [OreSpawn] (Ore-Spawn-Mod-1.7.10.jar)      UCHIJAA    oreexcavation{1.1.134} [OreExcavation] (OreExcavation-1.1.134.jar)      UCHIJAA    p455w0rdslib{1.0.4} [p455w0rd's Library] (p455w0rdslib-1.7.10-1.0.4.jar)      UCHIJAA    reccomplex{0.9.7.1.1} [Recurrent Complex] (RecurrentComplex-0.9.7.1.1.jar)      UCHIJAA    YukariLib{1.2.3} [YukariLib] (YukariLib-1.7.10-1.2.5.jar)      UCHIJAA    ReinforcedTools{1.0} [ReinforcedTools] (ReinforcedTools-2.0.2 - 1.7.10.jar)      UCHIJAA    libsandstone{1.0.0} [libsandstone] (Reliquary-1.7.10-1.2.1.483.jar)      UCHIJAA    xreliquary{1.2} [Reliquary] (Reliquary-1.7.10-1.2.1.483.jar)      UCHIJAA    repairgem{1.1.0} [Repair Gem] (RepairGem-1.7.10-1.1.0.jar)      UCHIJAA    Roguelike{1.5.0} [Roguelike Dungeons] (roguelike-1.7.10-1.5.0b.jar)      UCHIJAA    Sanguimancy{1.7.10-1.1.9-35} [Sanguimancy] (Sanguimancy-1.7.10-1.1.9-35.jar)      UCHIJAA    simpleores{1.6.1.4} [SimpleOres 2] (simpleores-1.7.10-1.6.1.4.jar)      UCHIJAA    soulboundench{1.0} [Soulbound Enchantment] (SoulBound-1.0.jar)      UCHIJAA    StorageDrawers{1.7.10-1.10.9} [Storage Drawers] (StorageDrawers-1.7.10-1.10.9.jar)      UCHIJAA    TiCTooltips{1.2.5} [TiC Tooltips] (TiCTooltips-mc1.7.10-1.2.5.jar)      UCHIJAA    tinker_io{release 1.5.0} [Tinker I/O] (tinker_io-1.7.10-release 1.5.0.jar)      UCHIJAA    TotemDefender{1.2.4} [Totem Defender] (TotemDefender-1.7.10-1.2.4.jar)      UCHIJAA    totemic{1.7.10-0.6.2} [Totemic] (Totemic-1.7.10-0.6.2.jar)      UCHIJAA    uncrafted{2.2.0} [Uncrafted Mod] (Uncrafted 1.7.10 (v.2.2.0).jar)      UCHIJAA    weaponmod{v1.14.3} [Balkon's WeaponMod] (weaponmod-1.14.3.jar)      UCHIJAA    witchery{0.24.1} [Witchery] (witchery-1.7.10-0.24.1.jar)      UCHIJAA    wc{2.1.0} [Wither Crown] (WitherArmor-2.1.0-mc1.7.10.jar)      UCHIJAA    zwitherring{e^Ï€i} [WitherRing] (WitherRing.jar)      UCHIJAA    ZDoctorBB{1.2} [Blood Baubles] (ZDoctorBB-1.7.10-Server.jar)      GL info: ~~ERROR~~ RuntimeException: No OpenGL context found in the current thread.     OpenModsLib class transformers: [stencil_patches:FINISHED],[movement_callback:FINISHED],[player_damage_hook:FINISHED],[map_gen_fix:FINISHED],[gl_capabilities_hook:FINISHED],[player_render_hook:FINISHED]     Class transformer null safety: found misbehaving transformers: me.guichaguri.betterfps.transformers.MathTransformer(me.guichaguri.betterfps.transformers.MathTransformer@ac1f57d) returned non-null result: 0,me.guichaguri.betterfps.transformers.EventTransformer(me.guichaguri.betterfps.transformers.EventTransformer@436401a5) returned non-null result: 0     AE2 Version: beta rv3-beta-6 for Forge 10.13.4.1448     Mantle Environment: DO NOT REPORT THIS CRASH! Unsupported mods in environment: optifine     TConstruct Environment: Environment healthy.     List of loaded APIs:          * ActuallyAdditionsAPI (3) from ActuallyAdditions-1.7.10-r21.jar         * appliedenergistics2|API (rv3) from appliedenergistics2-rv3-beta-6.jar         * BattlePlayer (0.1) from 1.7.10-MB_Battlegear2-Bullseye-1.0.8.3.jar         * Baubles|API (1.0.1.10) from Baubles-1.7.10-1.0.1.10.jar         * BetterAchievements|API (0.1.0) from BetterAchievements-1.7.10-0.1.0.jar         * BiomesOPlentyAPI (1.0.0) from BiomesOPlenty-1.7.10-2.1.0.2308-universal.jar         * BloodMagicAPI (1.3.3-13) from BloodMagic-1.7.10-1.3.3-17.jar         * BuildCraftAPI|core (1.0) from extrautilities-1.2.12.jar         * BuildCraftAPI|tools (1.0) from extrautilities-1.2.12.jar         * ChiselAPI (0.1.1) from Chisel-2.9.5.11.jar         * ChiselAPI|Carving (0.1.1) from Chisel-2.9.5.11.jar         * ChiselAPI|Rendering (0.1.1) from Chisel-2.9.5.11.jar         * CoFHAPI (1.7.10R1.0.2) from ActuallyAdditions-1.7.10-r21.jar         * CoFHAPI|block (1.7.10R1.0.13B1) from extrautilities-1.2.12.jar         * CoFHAPI|energy (1.7.10R1.0.2) from ActuallyAdditions-1.7.10-r21.jar         * CoFHAPI|inventory (1.7.10R1.0.13) from EnderIO-1.7.10-2.3.1.10_beta.0.jar         * CoFHAPI|item (1.7.10R1.0.13B1) from extrautilities-1.2.12.jar         * CoFHAPI|tileentity (1.7.10R1.1.0) from ProgressiveAutomation-1.7.10-1.6.35.jar         * CoFHAPI|transport (1.7.10R1.0.13) from EnderCore-1.7.10-0.2.0.40_beta.jar         * ComputerCraft|API (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|FileSystem (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Lua (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Media (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Peripheral (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Permissions (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Redstone (1.75) from ComputerCraft1.75.jar         * ComputerCraft|API|Turtle (1.75) from ComputerCraft1.75.jar         * CraftingTableIV-API (1.0.2) from CraftingTableIV-1.7.10-1.1Beta.93.jar         * CraftingTweaks|API (4.1) from craftingtweaks-mc1.7.10-1.0.88.jar         * DLDungeonsAPI (1.4) from DoomlikeDungeons-1.11.0.1-MC1.7.10.jar         * DualWield (0.1) from 1.7.10-MB_Battlegear2-Bullseye-1.0.8.3.jar         * ElecCore|Abilities (#API_VER#) from ElecCore-1.7.10-1.4.294.jar         * EnderIOAPI (0.0.2) from EnderIO-1.7.10-2.3.1.10_beta.0.jar         * EnderIOAPI|Redstone (0.0.2) from EnderIO-1.7.10-2.3.1.10_beta.0.jar         * EnderIOAPI|Teleport (0.0.2) from EnderIO-1.7.10-2.3.1.10_beta.0.jar         * EnderIOAPI|Tools (0.0.2) from EnderIO-1.7.10-2.3.1.10_beta.0.jar         * Guide-API|API (1.7.10-1.0.1-29) from Guide-API-1.7.10-1.0.1-29.jar         * Heraldry (alpha) from 1.7.10-MB_Battlegear2-Bullseye-1.0.8.3.jar         * IC2API (1.0) from industrialcraft_2_2.2.827_ex1.7.10.jar         * ImmersiveEngineering|API (1.0) from ImmersiveEngineering-0.7.7.jar         * McJtyLib (1.8.1) from mcjtylib-1.8.1.jar         * OpenBlocks|API (1.1) from OpenBlocks-1.7.10-1.6.jar         * OpenComputersAPI|Component (6.0.0-alpha) from OpenComputers-MC1.7.10-1.8.5+ad76e2a-universal.jar         * OpenComputersAPI|Core (6.0.0-alpha) from OpenComputers-MC1.7.10-1.8.5+ad76e2a-universal.jar         * OpenComputersAPI|Driver (6.0.0-alpha) from OpenComputers-MC1.7.10-1.8.5+ad76e2a-universal.jar         * OpenComputersAPI|Driver|Item (6.0.0-alpha) from OpenComputers-MC1.7.10-1.8.5+ad76e2a-universal.jar         * OpenComputersAPI|Event (6.0.0-alpha) from OpenComputers-MC1.7.10-1.8.5+ad76e2a-universal.jar         * OpenComputersAPI|FileSystem (6.0.0-alpha) from OpenComputers-MC1.7.10-1.8.5+ad76e2a-universal.jar         * OpenComputersAPI|Internal (6.0.0-alpha) from OpenComputers-MC1.7.10-1.8.5+ad76e2a-universal.jar         * OpenComputersAPI|Machine (6.0.0-alpha) from OpenComputers-MC1.7.10-1.8.5+ad76e2a-universal.jar         * OpenComputersAPI|Manual (6.0.0-alpha) from OpenComputers-MC1.7.10-1.8.5+ad76e2a-universal.jar         * OpenComputersAPI|Network (6.0.0-alpha) from OpenComputers-MC1.7.10-1.8.5+ad76e2a-universal.jar         * OpenComputersAPI|Prefab (6.0.0-alpha) from OpenComputers-MC1.7.10-1.8.5+ad76e2a-universal.jar         * Quiver (0.2) from 1.7.10-MB_Battlegear2-Bullseye-1.0.8.3.jar         * RailcraftAPI|crafting (1.0.0) from ImmersiveEngineering-0.7.7.jar         * Sanguimancy|API (@VERSION@) from Sanguimancy-1.7.10-1.1.9-35.jar         * SecurityCraftAPI (1.2.2) from [1.7.10]+SecurityCraft+v1.8.13.jar         * Shield (0.1) from 1.7.10-MB_Battlegear2-Bullseye-1.0.8.3.jar         * StorageDrawersAPI (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|config (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|event (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|inventory (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|pack (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|registry (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|render (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|storage (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * StorageDrawersAPI|storage-attribute (1.7.10-1.2.0) from StorageDrawers-1.7.10-1.10.9.jar         * Thaumcraft|API (4.2.2.0) from Pam's HarvestCraft 1.7.10Lb.jar         * totemic|API (1.0.0) from Totemic-1.7.10-0.6.2.jar         * waterhooks|API (1.0) from waterhooks-1.2.1.jar         * Weapons (0.1) from 1.7.10-MB_Battlegear2-Bullseye-1.0.8.3.jar     Chisel: Errors like "[FML]: Unable to lookup ..." are NOT the cause of this crash. You can safely ignore these errors. And update forge while you're at it.     EnderIO: Found the following problem(s) with your installation:                   * Optifine is installed. This is NOT supported.                   * An unknown AE2 API is installed (rv3 from appliedenergistics2-rv3-beta-6.jar).                     Ender IO was build against API version rv2 and may or may not work with a newer version.                  This may have caused the error. Try reproducing the crash WITHOUT this/these mod(s) before reporting it.     Stencil buffer state: Function set: GL30, pool: disabled, bits: 0     AE2 Integration: IC2:ON, RotaryCraft:OFF, RC:OFF, BuildCraftCore:OFF, BuildCraftTransport:OFF, BuildCraftBuilder:OFF, RF:ON, RFItem:ON, MFR:OFF, DSU:ON, FZ:OFF, FMP:OFF, RB:OFF, CLApi:OFF, Waila:OFF, InvTweaks:ON, NEI:OFF, CraftGuide:OFF, Mekanism:OFF, ImmibisMicroblocks:OFF, BetterStorage:OFF, OpenComputers:ON, PneumaticCraft:OFF     Suspected Mods: Unknown     Profiler Position: N/A (disabled)     Player Count: 0 / 8; []     Type: Integrated Server (map_client.txt)     Is Modded: Definitely; Client brand changed to 'fml,forge'
    • Well, look like now needs this, but I cannot get it how to do it as damage source, cuz it requires now Holder public static final DamageType ENTROPY = new DamageType(GrimTales.MOD_ID + "entropy_effect", DamageScaling.ALWAYS,1f, DamageEffects.HURT);  
    • Its can be done in like 20 minutes, no? Like literally, if go most basic with no like "oxidation" on tools or armor, and just use vanilla like textures for tools and armor(like iron but just copper colored) it will take a few lines of code. Like even I am can do this, in few hours.
    • Hello. My server keeps crashing everytime 4 users join. This wasn't an issue before so I can't really tell what's happening. I couldn't really understand what the error-log said. Thank you in advance! https://pastebin.com/Q7V7Z2Re
  • Topics

×
×
  • Create New...

Important Information

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