• 0

    posted a message on People Can't Join My Server

    Hello MC Forums, I have been faced with a problem where my friends can't join my server. It is a U-Torrent server, where the port is 25565. I tried Dinnerbone's blog, and used his Server Status Query tool, and it said the server wasn't online. It seems that only I can join. Can someone help asap? I'm using Vanilla 1.8.

    Posted in: Server Support and Administration
  • 0

    posted a message on Texture Errors

    I did the following:


    C:\Minecraft Modding\1.7.10\mod\src\main\java\assets\dragonitemod\textures\blocks

    C:\Minecraft Modding\1.7.10\mod\src\main\java\assets\dragonitemod\textures\items

    Posted in: Modification Development
  • 0

    posted a message on Texture Errors

    I checked those and still didn't work


    EDIT: It now works! It was something in my assets folder :P


    EDIT: Actually, nvm :P

    Posted in: Modification Development
  • 0

    posted a message on Texture Errors

    Yes, let me get it m8.


    package com.chewybacca.blocks;
    import com.chewybacca.lib.RefStrings;
    
    import cpw.mods.fml.common.registry.GameRegistry;
    import net.minecraft.block.Block;
    import net.minecraft.block.material.Material;
    import net.minecraft.creativetab.CreativeTabs;
    public class DragoniteMineral
    {
    	public static void mainRegistry()
    	{
    		InitializeBlock();
    		RegisterItem();
    	}
    	
    	public static Block Dragore;
    	public static void InitializeBlock()
    	{
    		Dragore = new Dragore(Material.rock).setBlockName("DragoniteMineral").setCreativeTab(CreativeTabs.tabBlock).setBlockTextureName(RefStrings.MODID + ":dragore");
    	}
    	
    	public static void RegisterItem()
    	{
    		GameRegistry.registerBlock(Dragore, Dragore.getUnlocalizedName());
    	}
    
    }
    Posted in: Modification Development
  • 0

    posted a message on Texture Errors

    So, when I am putting the texture, and I am always getting this error:


    [15:05:39] [Client thread/ERROR] [TEXTURE ERRORS]:   domain dragonitemod is missing 1 texture
    [15:05:39] [Client thread/ERROR] [TEXTURE ERRORS]:     domain dragonitemod is missing a resource manager - it is probably a side-effect of automatic texture processing
    [15:05:39] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
    [15:05:39] [Client thread/ERROR] [TEXTURE ERRORS]:     The missing resources for domain dragonitemod are:
    [15:05:39] [Client thread/ERROR] [TEXTURE ERRORS]:       textures/blocks/dragore.png
    [15:05:39] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------
    [15:05:39] [Client thread/ERROR] [TEXTURE ERRORS]:     No other errors exist for domain dragonitemod
    [15:05:39] [Client thread/ERROR] [TEXTURE ERRORS]: ==================================================
    [15:05:39] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=

    I am not using any type of IntelliJ, and I am using Forge version :: forge-1.7.10-10.13.4.1558

    Posted in: Modification Development
  • 0

    posted a message on Using C4D for making item models in forge?

    By any chance, do you know how any tutorials on AdvanceModelLoader?

    Posted in: Modification Development
  • 0

    posted a message on Crash File, Welp?

    Alright, just clicked the green-arrow button, thanks!

    Posted in: Modification Development
  • 0

    posted a message on Crash File, Welp?

    Also, this is my Main class

    https://gyazo.com/9494d1fe7a3961a38ac63d66942b3057

    Posted in: Modification Development
  • 0

    posted a message on Crash File, Welp?

    What do you mean by that?


    These are my proxies::


    https://gyazo.com/13b36ee1c805b4cdd7c400fa2b8f7583


    and


    https://gyazo.com/6b682ff3135e1bfb32d16ba82b1f13a0

    Posted in: Modification Development
  • 0

    posted a message on Crash File, Welp?

    Sorry, the problem is actually, "Caused by: cpw.mods.fml.common.LoaderException: Attempted to load a proxy type com.chewybacca.dragonite.ClientProxy into com.chewybacca.dragonite.MainRegistry.proxy, but the types don't match." I don't know how to fix this. This is my code : https://gyazo.com/6ea99f21c30fb732aced8fadb2fd88c9

    Posted in: Modification Development
  • 0

    posted a message on Crash File, Welp?

    ---- Minecraft Crash Report ----
    // Everything's going to plan. No, really, that was supposed to happen.

    Time: 12/7/15 4:26 PM
    Description: There was a severe problem during mod loading that has caused the game to fail

    cpw.mods.fml.common.LoaderException: cpw.mods.fml.common.LoaderException: Attempted to load a proxy type com.chewybacca.dragonite.ClientProxy into com.chewybacca.dragonite.MainRegistry.proxy, but the types don't match
    at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:76)
    at cpw.mods.fml.common.FMLModContainer.constructMod(FMLModContainer.java:512)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:497)
    at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)
    at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
    at com.google.common.eventbus.EventBus.post(EventBus.java:275)
    at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:212)
    at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:190)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:497)
    at com.google.common.eventbus.EventSubscriber.handleEvent(EventSubscriber.java:74)
    at com.google.common.eventbus.SynchronizedEventSubscriber.handleEvent(SynchronizedEventSubscriber.java:47)
    at com.google.common.eventbus.EventBus.dispatch(EventBus.java:322)
    at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:304)
    at com.google.common.eventbus.EventBus.post(EventBus.java:275)
    at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:119)
    at cpw.mods.fml.common.Loader.loadMods(Loader.java:513)
    at cpw.mods.fml.client.FMLClientHandler.beginMinecraftLoading(FMLClientHandler.java:208)
    at net.minecraft.client.Minecraft.startGame(Minecraft.java:522)
    at net.minecraft.client.Minecraft.run(Minecraft.java:942)
    at net.minecraft.client.main.Main.main(Main.java:164)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:497)
    at net.minecraft.launchwrapper.Launch.launch(Launch.java:135)
    at net.minecraft.launchwrapper.Launch.main(Launch.java:28)
    at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source)
    at GradleStart.main(Unknown Source)
    Caused by: cpw.mods.fml.common.LoaderException: Attempted to load a proxy type com.chewybacca.dragonite.ClientProxy into com.chewybacca.dragonite.MainRegistry.proxy, but the types don't match
    at cpw.mods.fml.common.ProxyInjector.inject(ProxyInjector.java:69)
    ... 35 more

    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 7 (amd64) version 6.1
    Java Version: 1.8.0_45, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
    Memory: 851282800 bytes (811 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: 0, tcache: 0, allocated: 0, tallocated: 0
    FML: MCP v9.05 FML v7.10.99.99 Minecraft Forge 10.13.4.1558 4 mods loaded, 4 mods active
    States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored
    UC mcp{9.05} [Minecraft Coder Pack] (minecraft.jar)
    UC FML{7.10.99.99} [Forge Mod Loader] (forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar)
    UC Forge{10.13.4.1558} [Minecraft Forge] (forgeSrc-1.7.10-10.13.4.1558-1.7.10.jar)
    UE dragonitemod{v.01} [Dragonite Mod] (bin)
    GL info: ' Vendor: 'NVIDIA Corporation' Version: '3.3.0' Renderer: 'NVS 3100M/PCIe/SSE2'

    Posted in: Modification Development
  • 0

    posted a message on Using C4D for making item models in forge?

    Thanks! How do I put it in my mod? I have a 3D model that is a .obj, and I am a beginner modder.

    Posted in: Modification Development
  • 0

    posted a message on Using C4D for making item models in forge?

    By the way, I am using 1.7.10 :)
    Posted in: Modification Development
  • 0

    posted a message on Using C4D for making item models in forge?

    Is there a way to use Cinema 4D to make item models for mods? I do have Techne, but I have more experience in using Cinema 4D.


    Please reply ASAP!


    ~


    Zambi4

    Posted in: Modification Development
  • To post a comment, please .