Jump to content

Recommended Posts

Posted

Hey guys as the title says i need help with a custom crop. Specifically a crop like wheat. So far i have managed to make my seeds drop from grass when broken but that's as far as i have gotten. So right now i am trying to make it so when i right click on tilled dirt only it places my crop (i have it setup as a block because that's what all other tutorials say to do) so i guess i just want it so when i right click with my seeds they plant this block into the ground just like normal wheat. All tutorials i have looked at seem to be out dated for 1.5 or something lower like that.

 

Any help is welcomed and thank you for reading :D

 

PS if you NEED to see my classes that i have setup for my crop block or seeds please let me know and i will put them into a spoiler.

Posted

Ok i did as you said and i immediately found this bit of code which i am guessing i will be needing?

 

 

  /**

    * Callback for item usage. If the item does something special on right clicking, he will have one of those. Return

    * True if something happen and false if it don't. This is for ITEMS, not BLOCKS

    */

    public boolean onItemUse(ItemStack p_77648_1_, EntityPlayer p_77648_2_, World p_77648_3_, int p_77648_4_, int p_77648_5_, int p_77648_6_, int p_77648_7_, float p_77648_8_, float p_77648_9_, float p_77648_10_)

    {

        if (p_77648_7_ != 1)

        {

            return false;

        }

        else if (p_77648_2_.canPlayerEdit(p_77648_4_, p_77648_5_, p_77648_6_, p_77648_7_, p_77648_1_) && p_77648_2_.canPlayerEdit(p_77648_4_, p_77648_5_ + 1, p_77648_6_, p_77648_7_, p_77648_1_))

        {

            if (p_77648_3_.getBlock(p_77648_4_, p_77648_5_, p_77648_6_).canSustainPlant(p_77648_3_, p_77648_4_, p_77648_5_, p_77648_6_, ForgeDirection.UP, this) && p_77648_3_.isAirBlock(p_77648_4_, p_77648_5_ + 1, p_77648_6_))

            {

                p_77648_3_.setBlock(p_77648_4_, p_77648_5_ + 1, p_77648_6_, this.field_150925_a);

                --p_77648_1_.stackSize;

                return true;

            }

            else

            {

                return false;

            }

        }

        else

        {

            return false;

        }

    }

 

 

So what i have done i have copied it over to my custom seeds (hope that's the correct place for it) but i need a bit of help editing it.

Posted

Possibly easier to just show my seeds class and explain what is going wrong so here it is

 

 

package com.SirRoyGbiv.magicores.item;

 

import net.minecraft.block.Block;

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.item.ItemSeeds;

import net.minecraft.item.ItemStack;

import net.minecraft.world.IBlockAccess;

import net.minecraft.world.World;

import net.minecraftforge.common.EnumPlantType;

import net.minecraftforge.common.IPlantable;

import net.minecraftforge.common.util.ForgeDirection;

 

import com.SirRoyGbiv.magicores.init.ModBlocks;

 

public class ItemMagicSeeds extends MagicOresItem implements IPlantable

{

 

private Block field_150925_a;

    private Block soilBlockID;

    private static final String __OBFID = "CL_00000061";

   

public ItemMagicSeeds()

{

super();

this.setUnlocalizedName("magicSeeds");

}

 

public ItemSeeds getIconIndex(int i) {

return null;

}

 

  public boolean onItemUse(ItemStack p_77648_1_, EntityPlayer p_77648_2_, World p_77648_3_, int p_77648_4_, int p_77648_5_, int p_77648_6_, int p_77648_7_, float p_77648_8_, float p_77648_9_, float p_77648_10_)

    {

        if (p_77648_7_ != 1)

        {

            return false;

        }

        else if (p_77648_2_.canPlayerEdit(p_77648_4_, p_77648_5_, p_77648_6_, p_77648_7_, p_77648_1_) && p_77648_2_.canPlayerEdit(p_77648_4_, p_77648_5_ + 1, p_77648_6_, p_77648_7_, p_77648_1_))

        {

            if (p_77648_3_.getBlock(p_77648_4_, p_77648_5_, p_77648_6_).canSustainPlant(p_77648_3_, p_77648_4_, p_77648_5_, p_77648_6_, ForgeDirection.UP, this) && p_77648_3_.isAirBlock(p_77648_4_, p_77648_5_ + 1, p_77648_6_))

            {

                p_77648_3_.setBlock(p_77648_4_, p_77648_5_ + 1, p_77648_6_, this.field_150925_a);

                --p_77648_1_.stackSize;

                return true;

            }

            else

            {

                return false;

            }

        }

        else

        {

            return false;

        }

    }

 

public EnumPlantType getPlantType(IBlockAccess world, int x, int y, int z)

{

return EnumPlantType.Crop;

}

 

public Block getPlant(IBlockAccess world, int x, int y, int z)

{

return ModBlocks.blockMagicEssenceCrop;

}

 

public int getPlantMetadata(IBlockAccess world, int x, int y, int z)

{

return 0;

}

}

 

 

 

So you can see where i copied it and well i go into test it and well when i right click on tilled earth with my seeds i just crash, i don't have any errors and am not sure if i need to do something else within my custom crop class (the block one that actually grows)

Posted

Oh yes the crash report, sorry about not posting that, here it is then.

 

 

[21:33:32] [main/INFO] [GradleStart]: No arguments specified, assuming client.

[21:33:32] [main/INFO] [GradleStart]: Extra: []

[21:33:32] [main/INFO] [GradleStart]: Running with arguments: [--userProperties, {}, --tweakClass, cpw.mods.fml.common.launcher.FMLTweaker, --accessToken, {REDACTED}, --assetIndex, 1.7.10, --assetsDir, C:/Users/Jourdan/.gradle/caches/minecraft/assets, --version, 1.7.10]

[21:33:32] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLTweaker

[21:33:32] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLTweaker

[21:33:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLTweaker

[21:33:32] [main/INFO] [FML]: Forge Mod Loader version 7.10.85.1230 for Minecraft 1.7.10 loading

[21:33:32] [main/INFO] [FML]: Java is Java HotSpot 64-Bit Server VM, version 1.7.0_71, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre7

[21:33:32] [main/INFO] [FML]: Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation

[21:33:32] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[21:33:32] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker

[21:33:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[21:33:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[21:33:32] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[21:33:32] [main/ERROR] [FML]: The binary patch set is missing. Either you are in a development environment, or things are not going to work!

[21:33:33] [main/ERROR] [FML]: FML appears to be missing any signature data. This is not a good thing

[21:33:33] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[21:33:33] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker

[21:33:34] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker

[21:33:34] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker

[21:33:34] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.client.main.Main}

[21:33:35] [main/INFO]: Setting user: Player71

[21:33:36] [Client thread/INFO]: LWJGL Version: 2.9.1

[21:33:36] [Client thread/INFO] [MinecraftForge]: Attempting early MinecraftForge initialization

[21:33:36] [Client thread/INFO] [FML]: MinecraftForge v10.13.2.1230 Initialized

[21:33:36] [Client thread/INFO] [FML]: Replaced 182 ore recipies

[21:33:36] [Client thread/INFO] [MinecraftForge]: Completed early MinecraftForge initialization

[21:33:37] [Client thread/INFO] [FML]: Searching F:\Projects\Minecraft\1.7\MagicCrops\eclipse\mods for mods

[21:33:39] [Client thread/INFO] [FML]: Forge Mod Loader has identified 4 mods to load

[21:33:39] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, MagicOres] at CLIENT

[21:33:39] [Client thread/INFO] [FML]: Attempting connection with missing mods [mcp, FML, Forge, MagicOres] at SERVER

[21:33:39] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Magic Ores

[21:33:39] [Client thread/INFO] [FML]: Processing ObjectHolder annotations

[21:33:39] [Client thread/INFO] [FML]: Found 344 ObjectHolder annotations

[21:33:39] [Client thread/INFO] [FML]: Configured a dormant chunk cache size of 0

[21:33:39] [Client thread/INFO] [Magic Ores]: Pre Initialization Complete!

[21:33:39] [Client thread/INFO] [FML]: Applying holder lookups

[21:33:39] [Client thread/INFO] [FML]: Holder lookups applied

[21:33:40] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

[21:33:40] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...

[21:33:40] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL

[21:33:40] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:    (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

[21:33:40] [Thread-6/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.

[21:33:40] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

[21:33:40] [sound Library Loader/INFO]: Sound engine started

[21:33:41] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas

[21:33:41] [Client thread/ERROR]: Using missing texture, unable to load magicores:textures/items/pettyEssence.png

java.io.FileNotFoundException: magicores:textures/items/pettyEssence.png

at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?]

at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]

at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]

at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]

at net.minecraft.client.renderer.texture.TextureManager.loadTickableTexture(TextureManager.java:71) [TextureManager.class:?]

at net.minecraft.client.renderer.texture.TextureManager.loadTextureMap(TextureManager.java:58) [TextureManager.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:583) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

at GradleStart.bounce(GradleStart.java:107) [start/:?]

at GradleStart.startClient(GradleStart.java:100) [start/:?]

at GradleStart.main(GradleStart.java:55) [start/:?]

[21:33:41] [Client thread/INFO]: Created: 256x256 textures/items-atlas

[21:33:41] [Client thread/INFO] [Magic Ores]: Initialization Complete!

[21:33:41] [Client thread/INFO] [Magic Ores]: Post Initialization Complete!

[21:33:41] [Client thread/INFO] [FML]: Forge Mod Loader has successfully loaded 4 mods

[21:33:41] [Client thread/INFO]: Reloading ResourceManager: Default, FMLFileResourcePack:Forge Mod Loader, FMLFileResourcePack:Minecraft Forge, FMLFileResourcePack:Magic Ores

[21:33:41] [Client thread/ERROR]: Using missing texture, unable to load magicores:textures/items/pettyEssence.png

java.io.FileNotFoundException: magicores:textures/items/pettyEssence.png

at net.minecraft.client.resources.FallbackResourceManager.getResource(FallbackResourceManager.java:65) ~[FallbackResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.getResource(SimpleReloadableResourceManager.java:67) ~[simpleReloadableResourceManager.class:?]

at net.minecraft.client.renderer.texture.TextureMap.loadTextureAtlas(TextureMap.java:126) [TextureMap.class:?]

at net.minecraft.client.renderer.texture.TextureMap.loadTexture(TextureMap.java:91) [TextureMap.class:?]

at net.minecraft.client.renderer.texture.TextureManager.loadTexture(TextureManager.java:89) [TextureManager.class:?]

at net.minecraft.client.renderer.texture.TextureManager.onResourceManagerReload(TextureManager.java:170) [TextureManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.notifyReloadListeners(SimpleReloadableResourceManager.java:134) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.resources.SimpleReloadableResourceManager.reloadResources(SimpleReloadableResourceManager.java:118) [simpleReloadableResourceManager.class:?]

at net.minecraft.client.Minecraft.refreshResources(Minecraft.java:643) [Minecraft.class:?]

at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:303) [FMLClientHandler.class:?]

at net.minecraft.client.Minecraft.startGame(Minecraft.java:586) [Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:931) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

at GradleStart.bounce(GradleStart.java:107) [start/:?]

at GradleStart.startClient(GradleStart.java:100) [start/:?]

at GradleStart.main(GradleStart.java:55) [start/:?]

[21:33:41] [Client thread/INFO]: Created: 256x256 textures/items-atlas

[21:33:42] [Client thread/INFO]: Created: 512x256 textures/blocks-atlas

[21:33:42] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

[21:33:42] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: SoundSystem shutting down...

[21:33:42] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:importantMessage:90]:    Author: Paul Lamb, www.paulscode.com

[21:33:42] [Client thread/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

[21:33:42] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

[21:33:42] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Starting up SoundSystem...

[21:33:42] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: Initializing LWJGL OpenAL

[21:33:42] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:    (The LWJGL binding of OpenAL.  For more information, see http://www.lwjgl.org)

[21:33:42] [Thread-8/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]: OpenAL initialized.

[21:33:42] [sound Library Loader/INFO] [sTDOUT]: [paulscode.sound.SoundSystemLogger:message:69]:

[21:33:42] [sound Library Loader/INFO]: Sound engine started

[21:33:58] [server thread/INFO]: Starting integrated minecraft server version 1.7.10

[21:33:58] [server thread/INFO]: Generating keypair

[21:33:58] [server thread/INFO] [FML]: Injecting existing block and item data into this server instance

[21:33:58] [server thread/INFO] [FML]: Applying holder lookups

[21:33:58] [server thread/INFO] [FML]: Holder lookups applied

[21:33:58] [server thread/INFO] [FML]: Loading dimension 0 (Test) (net.minecraft.server.integrated.IntegratedServer@340353ac)

[21:33:58] [server thread/INFO] [FML]: Loading dimension 1 (Test) (net.minecraft.server.integrated.IntegratedServer@340353ac)

[21:33:58] [server thread/INFO] [FML]: Loading dimension -1 (Test) (net.minecraft.server.integrated.IntegratedServer@340353ac)

[21:33:58] [server thread/INFO]: Preparing start region for level 0

[21:33:59] [server thread/INFO]: Changing view distance to 12, from 10

[21:33:59] [Netty Client IO #0/INFO] [FML]: Server protocol version 1

[21:33:59] [Netty IO #1/INFO] [FML]: Client protocol version 1

[21:33:59] [Netty IO #1/INFO] [FML]: Client attempting to join with 4 mods : [email protected],[email protected],[email protected],[email protected]

[21:33:59] [Netty IO #1/INFO] [FML]: Attempting connection with missing mods [] at CLIENT

[21:33:59] [Netty Client IO #0/INFO] [FML]: Attempting connection with missing mods [] at SERVER

[21:33:59] [Client thread/INFO] [FML]: [Client thread] Client side modded connection established

[21:33:59] [server thread/INFO] [FML]: [server thread] Server side modded connection established

[21:34:00] [server thread/INFO]: Player71[local:E:cf431933] logged in with entity id 516 at (-133.85866468426113, 65.16610926093821, 74.5869647467216)

[21:34:00] [server thread/INFO]: Player71 joined the game

[21:34:00] [server thread/INFO]: Saving and pausing game...

[21:34:00] [server thread/INFO]: Saving chunks for level 'Test'/Overworld

[21:34:00] [server thread/INFO]: Saving chunks for level 'Test'/Nether

[21:34:00] [server thread/INFO]: Saving chunks for level 'Test'/The End

[21:34:06] [server thread/INFO]: [Player71: Set own game mode to Survival Mode]

[21:34:06] [Client thread/INFO]: [CHAT] Your game mode has been updated

[21:34:14] [server thread/ERROR]: Encountered an unexpected exception

net.minecraft.util.ReportedException: Ticking memory connection

at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:198) ~[NetworkSystem.class:?]

at net.minecraft.server.MinecraftServer.updateTimeLightAndEntities(MinecraftServer.java:726) ~[MinecraftServer.class:?]

at net.minecraft.server.MinecraftServer.tick(MinecraftServer.java:614) ~[MinecraftServer.class:?]

at net.minecraft.server.integrated.IntegratedServer.tick(IntegratedServer.java:118) ~[integratedServer.class:?]

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:485) [MinecraftServer.class:?]

at net.minecraft.server.MinecraftServer$2.run(MinecraftServer.java:752) [MinecraftServer$2.class:?]

Caused by: java.lang.NullPointerException

at net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150818_a(ExtendedBlockStorage.java:86) ~[ExtendedBlockStorage.class:?]

at net.minecraft.world.chunk.Chunk.func_150807_a(Chunk.java:653) ~[Chunk.class:?]

at net.minecraft.world.World.setBlock(World.java:519) ~[World.class:?]

at net.minecraft.world.World.setBlock(World.java:681) ~[World.class:?]

at com.SirRoyGbiv.magicores.item.ItemMagicSeeds.onItemUse(ItemMagicSeeds.java:42) ~[itemMagicSeeds.class:?]

at net.minecraftforge.common.ForgeHooks.onPlaceItemIntoWorld(ForgeHooks.java:456) ~[ForgeHooks.class:?]

at net.minecraft.item.ItemStack.tryPlaceItemIntoWorld(ItemStack.java:142) ~[itemStack.class:?]

at net.minecraft.server.management.ItemInWorldManager.activateBlockOrUseItem(ItemInWorldManager.java:422) ~[itemInWorldManager.class:?]

at net.minecraft.network.NetHandlerPlayServer.processPlayerBlockPlacement(NetHandlerPlayServer.java:593) ~[NetHandlerPlayServer.class:?]

at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:74) ~[C08PacketPlayerBlockPlacement.class:?]

at net.minecraft.network.play.client.C08PacketPlayerBlockPlacement.processPacket(C08PacketPlayerBlockPlacement.java:122) ~[C08PacketPlayerBlockPlacement.class:?]

at net.minecraft.network.NetworkManager.processReceivedPackets(NetworkManager.java:241) ~[NetworkManager.class:?]

at net.minecraft.network.NetworkSystem.networkTick(NetworkSystem.java:182) ~[NetworkSystem.class:?]

... 5 more

[21:34:14] [server thread/ERROR]: This crash report has been saved to: F:\Projects\Minecraft\1.7\MagicCrops\eclipse\.\crash-reports\crash-2014-10-19_21.34.14-server.txt

[21:34:14] [server thread/INFO]: Stopping server

[21:34:14] [server thread/INFO]: Saving players

[21:34:14] [server thread/INFO]: Saving worlds

[21:34:14] [server thread/INFO]: Saving chunks for level 'Test'/Overworld

[21:34:14] [server thread/INFO]: Saving chunks for level 'Test'/Nether

[21:34:14] [server thread/INFO]: Saving chunks for level 'Test'/The End

[21:34:15] [server thread/INFO] [FML]: Unloading dimension 0

[21:34:15] [server thread/INFO] [FML]: Unloading dimension -1

[21:34:15] [server thread/INFO] [FML]: Unloading dimension 1

[21:34:15] [server thread/INFO] [FML]: Applying holder lookups

[21:34:15] [server thread/INFO] [FML]: Holder lookups applied

[21:34:15] [server thread/INFO] [FML]: The state engine was in incorrect state SERVER_STOPPING and forced into state SERVER_STOPPED. Errors may have been discarded.

[21:34:15] [Client thread/FATAL]: Unreported exception thrown!

java.lang.NullPointerException

at net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150818_a(ExtendedBlockStorage.java:86) ~[ExtendedBlockStorage.class:?]

at net.minecraft.world.chunk.Chunk.func_150807_a(Chunk.java:653) ~[Chunk.class:?]

at net.minecraft.world.World.setBlock(World.java:519) ~[World.class:?]

at net.minecraft.world.World.setBlock(World.java:681) ~[World.class:?]

at com.SirRoyGbiv.magicores.item.ItemMagicSeeds.onItemUse(ItemMagicSeeds.java:42) ~[itemMagicSeeds.class:?]

at net.minecraft.item.ItemStack.tryPlaceItemIntoWorld(ItemStack.java:143) ~[itemStack.class:?]

at net.minecraft.client.multiplayer.PlayerControllerMP.onPlayerRightClick(PlayerControllerMP.java:410) ~[PlayerControllerMP.class:?]

at net.minecraft.client.Minecraft.func_147121_ag(Minecraft.java:1518) ~[Minecraft.class:?]

at net.minecraft.client.Minecraft.runTick(Minecraft.java:2033) ~[Minecraft.class:?]

at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1028) ~[Minecraft.class:?]

at net.minecraft.client.Minecraft.run(Minecraft.java:951) [Minecraft.class:?]

at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.11.jar:?]

at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.11.jar:?]

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.7.0_71]

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.7.0_71]

at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.7.0_71]

at GradleStart.bounce(GradleStart.java:107) [start/:?]

at GradleStart.startClient(GradleStart.java:100) [start/:?]

at GradleStart.main(GradleStart.java:55) [start/:?]

[21:34:15] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:388]: ---- Minecraft Crash Report ----

// Daisy, daisy...

 

Time: 10/19/14 9:34 PM

Description: Unexpected error

 

java.lang.NullPointerException: Unexpected error

at net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150818_a(ExtendedBlockStorage.java:86)

at net.minecraft.world.chunk.Chunk.func_150807_a(Chunk.java:653)

at net.minecraft.world.World.setBlock(World.java:519)

at net.minecraft.world.World.setBlock(World.java:681)

at com.SirRoyGbiv.magicores.item.ItemMagicSeeds.onItemUse(ItemMagicSeeds.java:42)

at net.minecraft.item.ItemStack.tryPlaceItemIntoWorld(ItemStack.java:143)

at net.minecraft.client.multiplayer.PlayerControllerMP.onPlayerRightClick(PlayerControllerMP.java:410)

at net.minecraft.client.Minecraft.func_147121_ag(Minecraft.java:1518)

at net.minecraft.client.Minecraft.runTick(Minecraft.java:2033)

at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1028)

at net.minecraft.client.Minecraft.run(Minecraft.java:951)

at net.minecraft.client.main.Main.main(Main.java:164)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at GradleStart.bounce(GradleStart.java:107)

at GradleStart.startClient(GradleStart.java:100)

at GradleStart.main(GradleStart.java:55)

 

 

A detailed walkthrough of the error, its code path and all known details is as follows:

---------------------------------------------------------------------------------------

 

-- Head --

Stacktrace:

at net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150818_a(ExtendedBlockStorage.java:86)

at net.minecraft.world.chunk.Chunk.func_150807_a(Chunk.java:653)

at net.minecraft.world.World.setBlock(World.java:519)

at net.minecraft.world.World.setBlock(World.java:681)

at com.SirRoyGbiv.magicores.item.ItemMagicSeeds.onItemUse(ItemMagicSeeds.java:42)

at net.minecraft.item.ItemStack.tryPlaceItemIntoWorld(ItemStack.java:143)

at net.minecraft.client.multiplayer.PlayerControllerMP.onPlayerRightClick(PlayerControllerMP.java:410)

at net.minecraft.client.Minecraft.func_147121_ag(Minecraft.java:1518)

 

-- Affected level --

Details:

Level name: MpServer

All players: 1 total; [EntityClientPlayerMP['Player71'/516, l='MpServer', x=-137.98, y=67.62, z=75.26]]

Chunk stats: MultiplayerChunkCache: 614, 614

Level seed: 0

Level generator: ID 00 - default, ver 1. Features enabled: false

Level generator options:

Level spawn location: World: (-84,64,252), Chunk: (at 12,4,12 in -6,15; contains blocks -96,0,240 to -81,255,255), Region: (-1,0; contains chunks -32,0 to -1,31, blocks -512,0,0 to -1,255,511)

Level time: 26319 game time, 6000 day time

Level dimension: 0

Level storage version: 0x00000 - Unknown?

Level weather: Rain time: 0 (now: false), thunder time: 0 (now: false)

Level game mode: Game mode: creative (ID 1). Hardcore: false. Cheats: false

Forced entities: 101 total; [EntitySkeleton['Skeleton'/275, l='MpServer', x=-68.06, y=37.00, z=65.44], EntityZombie['Zombie'/274, l='MpServer', x=-75.38, y=34.00, z=64.88], EntityZombie['Zombie'/273, l='MpServer', x=-72.97, y=24.00, z=53.41], EntityCreeper['Creeper'/279, l='MpServer', x=-77.56, y=12.00, z=81.16], EntityZombie['Zombie'/278, l='MpServer', x=-76.44, y=12.00, z=82.59], EntityCreeper['Creeper'/277, l='MpServer', x=-79.09, y=12.00, z=81.84], EntityZombie['Zombie'/276, l='MpServer', x=-76.31, y=12.23, z=84.31], EntityChicken['Chicken'/282, l='MpServer', x=-68.47, y=64.00, z=148.56], EntityChicken['Chicken'/281, l='MpServer', x=-64.41, y=65.00, z=120.63], EntitySkeleton['Skeleton'/280, l='MpServer', x=-77.56, y=38.00, z=120.61], EntitySkeleton['Skeleton'/553, l='MpServer', x=-80.50, y=36.00, z=52.50], EntityCreeper['Creeper'/258, l='MpServer', x=-96.25, y=19.00, z=126.91], EntitySkeleton['Skeleton'/565, l='MpServer', x=-213.50, y=29.00, z=20.88], EntitySkeleton['Skeleton'/256, l='MpServer', x=-91.75, y=12.00, z=101.31], EntityCreeper['Creeper'/257, l='MpServer', x=-94.97, y=21.00, z=124.50], EntityChicken['Chicken'/574, l='MpServer', x=-113.53, y=71.00, z=-1.22], EntityChicken['Chicken'/305, l='MpServer', x=-63.41, y=64.00, z=129.56], EntityChicken['Chicken'/517, l='MpServer', x=-142.53, y=68.00, z=37.78], EntityChicken['Chicken'/518, l='MpServer', x=-157.59, y=77.00, z=34.44], EntityCreeper['Creeper'/519, l='MpServer', x=-112.44, y=39.00, z=46.97], EntityEnderman['Enderman'/524, l='MpServer', x=-202.72, y=57.00, z=47.16], EntityChicken['Chicken'/520, l='MpServer', x=-141.50, y=74.00, z=17.56], EntityChicken['Chicken'/521, l='MpServer', x=-151.22, y=76.00, z=19.28], EntityBat['Bat'/522, l='MpServer', x=-194.25, y=14.10, z=37.25], EntityBat['Bat'/523, l='MpServer', x=-193.75, y=24.10, z=39.38], EntitySkeleton['Skeleton'/295, l='MpServer', x=-63.50, y=29.00, z=55.91], EntityCreeper['Creeper'/543, l='MpServer', x=-213.59, y=58.00, z=48.00], EntityCreeper['Creeper'/303, l='MpServer', x=-58.66, y=40.00, z=138.94], EntityChicken['Chicken'/578, l='MpServer', x=-79.44, y=71.00, z=-5.53], EntityClientPlayerMP['Player71'/516, l='MpServer', x=-137.98, y=67.62, z=75.26], EntitySpider['Spider'/597, l='MpServer', x=-66.00, y=32.00, z=20.47], EntitySpider['Spider'/596, l='MpServer', x=-76.75, y=33.00, z=26.28], EntityChicken['Chicken'/113, l='MpServer', x=-209.53, y=66.00, z=130.53], EntitySkeleton['Skeleton'/598, l='MpServer', x=-64.16, y=32.00, z=18.41], EntityCow['Cow'/139, l='MpServer', x=-192.06, y=68.00, z=76.16], EntityBat['Bat'/138, l='MpServer', x=-196.69, y=24.36, z=61.94], EntitySkeleton['Skeleton'/141, l='MpServer', x=-193.97, y=26.00, z=110.50], EntityZombie['Zombie'/140, l='MpServer', x=-195.50, y=12.00, z=90.03], EntityBat['Bat'/152, l='MpServer', x=-179.31, y=31.10, z=108.75], EntityZombie['Zombie'/153, l='MpServer', x=-183.50, y=30.00, z=104.25], EntityBat['Bat'/154, l='MpServer', x=-188.25, y=32.10, z=97.75], EntityZombie['Zombie'/155, l='MpServer', x=-184.91, y=35.00, z=100.59], EntityVillager['Villager'/156, l='MpServer', x=-179.31, y=72.00, z=100.50], EntityZombie['Zombie'/157, l='MpServer', x=-166.78, y=41.00, z=123.69], EntityBat['Bat'/149, l='MpServer', x=-183.31, y=15.05, z=59.60], EntityBat['Bat'/150, l='MpServer', x=-187.83, y=20.00, z=45.81], EntityCow['Cow'/151, l='MpServer', x=-187.53, y=64.00, z=87.31], EntityChicken['Chicken'/171, l='MpServer', x=-168.53, y=64.00, z=105.22], EntityChicken['Chicken'/170, l='MpServer', x=-160.56, y=64.00, z=110.56], EntityItem['item.item.seeds'/924, l='MpServer', x=-137.25, y=66.41, z=77.61], EntityVillager['Villager'/169, l='MpServer', x=-169.22, y=64.00, z=105.22], EntityVillager['Villager'/168, l='MpServer', x=-168.31, y=64.00, z=106.06], EntityItem['item.item.wheat'/923, l='MpServer', x=-137.46, y=66.69, z=77.62], EntityZombie['Zombie'/173, l='MpServer', x=-166.01, y=41.00, z=123.08], EntityVillager['Villager'/172, l='MpServer', x=-160.16, y=65.00, z=104.53], EntityVillager['Villager'/163, l='MpServer', x=-160.53, y=65.00, z=92.75], EntityChicken['Chicken'/162, l='MpServer', x=-174.81, y=69.00, z=81.47], EntityVillager['Villager'/161, l='MpServer', x=-162.68, y=65.00, z=92.48], EntityCreeper['Creeper'/160, l='MpServer', x=-163.44, y=15.00, z=79.59], EntityVillager['Villager'/167, l='MpServer', x=-168.03, y=64.00, z=103.31], EntityCow['Cow'/166, l='MpServer', x=-167.94, y=64.00, z=97.97], EntityChicken['Chicken'/165, l='MpServer', x=-165.53, y=64.00, z=101.19], EntityCreeper['Creeper'/164, l='MpServer', x=-162.03, y=20.00, z=103.44], EntityChicken['Chicken'/187, l='MpServer', x=-145.38, y=66.00, z=76.53], EntityCreeper['Creeper'/190, l='MpServer', x=-157.50, y=35.00, z=129.50], EntityCreeper['Creeper'/188, l='MpServer', x=-155.00, y=13.00, z=124.50], EntityVillager['Villager'/189, l='MpServer', x=-158.41, y=64.00, z=112.34], EntityCreeper['Creeper'/205, l='MpServer', x=-140.94, y=18.00, z=75.59], EntityCreeper['Creeper'/204, l='MpServer', x=-130.59, y=18.00, z=76.00], EntityBat['Bat'/207, l='MpServer', x=-139.97, y=36.10, z=113.88], EntityChicken['Chicken'/206, l='MpServer', x=-134.41, y=64.00, z=72.41], EntitySkeleton['Skeleton'/203, l='MpServer', x=-142.09, y=19.00, z=74.56], EntityCow['Cow'/202, l='MpServer', x=-140.58, y=66.00, z=51.57], EntityZombie['Zombie'/220, l='MpServer', x=-116.41, y=16.00, z=85.53], EntityChicken['Chicken'/221, l='MpServer', x=-115.44, y=69.00, z=122.47], EntityZombie['Zombie'/216, l='MpServer', x=-127.53, y=43.00, z=65.00], EntityItem['item.item.seeds'/217, l='MpServer', x=-118.44, y=63.13, z=66.69], EntityItem['item.item.seeds'/218, l='MpServer', x=-120.47, y=64.13, z=68.09], EntityZombie['Zombie'/219, l='MpServer', x=-124.84, y=12.00, z=88.53], EntitySkeleton['Skeleton'/215, l='MpServer', x=-118.41, y=15.00, z=79.03], EntitySkeleton['Skeleton'/208, l='MpServer', x=-138.30, y=34.66, z=114.70], EntitySkeleton['Skeleton'/209, l='MpServer', x=-136.30, y=34.00, z=113.00], EntitySkeleton['Skeleton'/239, l='MpServer', x=-104.13, y=24.00, z=110.44], EntityChicken['Chicken'/238, l='MpServer', x=-111.63, y=66.00, z=88.47], EntitySpider['Spider'/509, l='MpServer', x=-87.41, y=41.72, z=31.72], EntityCreeper['Creeper'/237, l='MpServer', x=-98.00, y=20.00, z=89.41], EntityZombie['Zombie'/510, l='MpServer', x=-74.56, y=28.00, z=45.91], EntitySkeleton['Skeleton'/236, l='MpServer', x=-104.44, y=35.00, z=51.53], EntitySkeleton['Skeleton'/511, l='MpServer', x=-68.53, y=24.00, z=43.94], EntitySkeleton['Skeleton'/235, l='MpServer', x=-96.72, y=35.00, z=57.53], EntityCreeper['Creeper'/234, l='MpServer', x=-101.13, y=35.00, z=56.25], EntitySkeleton['Skeleton'/233, l='MpServer', x=-104.53, y=35.00, z=52.50], EntityChicken['Chicken'/254, l='MpServer', x=-84.84, y=62.44, z=69.25], EntityBat['Bat'/255, l='MpServer', x=-85.56, y=22.10, z=91.50], EntityEnderman['Enderman'/253, l='MpServer', x=-86.84, y=35.00, z=47.56], EntityChicken['Chicken'/244, l='MpServer', x=-96.38, y=65.00, z=149.59], EntityChicken['Chicken'/245, l='MpServer', x=-111.34, y=71.00, z=141.56], EntitySpider['Spider'/242, l='MpServer', x=-96.56, y=20.00, z=125.16], EntityChicken['Chicken'/243, l='MpServer', x=-106.47, y=65.00, z=153.66], EntityChicken['Chicken'/240, l='MpServer', x=-111.44, y=64.00, z=110.53], EntityChicken['Chicken'/241, l='MpServer', x=-103.44, y=64.00, z=111.56]]

Retry entities: 0 total; []

Server brand: fml,forge

Server type: Integrated singleplayer server

Stacktrace:

at net.minecraft.client.multiplayer.WorldClient.addWorldInfoToCrashReport(WorldClient.java:415)

at net.minecraft.client.Minecraft.addGraphicsAndWorldToCrashReport(Minecraft.java:2555)

at net.minecraft.client.Minecraft.run(Minecraft.java:980)

at net.minecraft.client.main.Main.main(Main.java:164)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)

at net.minecraft.launchwrapper.Launch.main(Launch.java:28)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)

at java.lang.reflect.Method.invoke(Unknown Source)

at GradleStart.bounce(GradleStart.java:107)

at GradleStart.startClient(GradleStart.java:100)

at GradleStart.main(GradleStart.java:55)

 

-- System Details --

Details:

Minecraft Version: 1.7.10

Operating System: Windows 7 (amd64) version 6.1

Java Version: 1.7.0_71, Oracle Corporation

Java VM Version: Java HotSpot 64-Bit Server VM (mixed mode), Oracle Corporation

Memory: 643368168 bytes (613 MB) / 1038876672 bytes (990 MB) up to 1038876672 bytes (990 MB)

JVM Flags: 3 total; -Xincgc -Xmx1024M -Xms1024M

AABB Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used

IntCache: cache: 9, tcache: 0, allocated: 13, tallocated: 95

FML: MCP v9.05 FML v7.10.85.1230 Minecraft Forge 10.13.2.1230 4 mods loaded, 4 mods active

mcp{9.05} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

FML{7.10.85.1230} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

Forge{10.13.2.1230} [Minecraft Forge] (forgeSrc-1.7.10-10.13.2.1230.jar) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

MagicOres{1.7.10-1.0} [Magic Ores] (bin) Unloaded->Constructed->Pre-initialized->Initialized->Post-initialized->Available->Available->Available->Available

Launched Version: 1.7.10

LWJGL: 2.9.1

OpenGL: GeForce GTX 660 Ti/PCIe/SSE2 GL version 4.4.0 NVIDIA 344.11, NVIDIA Corporation

GL Caps: Using GL 1.3 multitexturing.

Using framebuffer objects because OpenGL 3.0 is supported and separate blending is supported.

Anisotropic filtering is supported and maximum anisotropy is 16.

Shaders are available because OpenGL 2.1 is supported.

 

Is Modded: Definitely; Client brand changed to 'fml,forge'

Type: Client (map_client.txt)

Resource Packs: []

Current Language: English (US)

Profiler Position: N/A (disabled)

Vec3 Pool Size: 0 (0 bytes; 0 MB) allocated, 0 (0 bytes; 0 MB) used

Anisotropic Filtering: Off (1)

[21:34:15] [Client thread/INFO] [sTDOUT]: [net.minecraft.client.Minecraft:displayCrashReport:398]: #@!@# Game crashed! Crash report saved to: #@!@# F:\Projects\Minecraft\1.7\MagicCrops\eclipse\.\crash-reports\crash-2014-10-19_21.34.15-client.txt

AL lib: (EE) alc_cleanup: 1 device not closed

 

 

 

as for the variable names i am working on it right now

Posted

I added the @Override annotations where needed and the crash report changed slightly, when reading through i found this line

at com.SirRoyGbiv.magicores.item.ItemMagicSeeds.onItemUse(ItemMagicSeeds.java:42)

 

and when clicked on it brings me to this part of the code.

                p_77648_3_.setBlock(p_77648_4_, p_77648_5_ + 1, p_77648_6_, this.field_150925_a);

 

What is it trying to tell me here?

Posted

Well i edited that line so now it looks like:

p_77648_3_.setBlock(p_77648_7_, p_77648_7_, p_77648_7_, ModBlocks.blockMagicEssenceCrop);

 

This has stopped the crashing but it still does not plant, it does do the right click animation with the players hand just does not put anything on the tilled dirt

 

Posted

Alright here it is

 

package com.SirRoyGbiv.magicores.block;

 

import net.minecraft.entity.player.EntityPlayer;

import net.minecraft.item.Item;

import net.minecraft.util.AxisAlignedBB;

import net.minecraft.world.World;

 

import com.SirRoyGbiv.magicores.init.ModItems;

import com.SirRoyGbiv.magicores.item.ItemPettyEssence;

 

public class BlockMagicEssenceCrop extends MagicOresBlock

{

public BlockMagicEssenceCrop()

{

super();

this.setBlockName("blockMagicEssenceCrop");

this.setBlockBounds(0.0F, 0.0F, 0.0F, 1.0F , 1.5F, 1.0F);

}

 

  public AxisAlignedBB getCollisionBoundingBoxFromPool(World world, int x, int y, int z) {

        return null;

    }

       

    public int getRenderType() {

        return 6; // Magic number.

    }

   

    public boolean isOpaqueCube() {

        return false;

    }

   

    public int getBlockTextureFromSideAndMetadata (int side, int metadata) {

        return 32 + metadata;

    }

}

 

 

 

Posted

Just as a note every tutorial i have looked up for this part all tend to be for lower versions where the itemID matters and so when i copied it into my own code i didn't exactly know how to edit it so it was suitable for minecraft 1.7.10

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



×
×
  • Create New...

Important Information

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