Jump to content

Creepmander

Members
  • Posts

    37
  • Joined

  • Last visited

Everything posted by Creepmander

  1. Hi! So, how I can get the server address (which I connected) by the client? I had searched, but I couldnt found it.
  2. Hi! Well.. I'm not really good at English, so i'll write an example. I placed my block, and it makes random ticks. It check the block in the near by every ticks. If a block placed next to my "ticker" block, my ticker block gets an other texture. The paced block's texture for example. So i need: - How I can make random ticks into my block? - How I can check the blocks near to my block? - How I can change the texture by a Tick? Sorry for these ratard questions.
  3. Hi! I wanna ask it, what do you think about it? It is possible? If it is, how? :? They are the main questions I tryed to find it, but i couldn't. [Harder Description] For example: I have gota GuiScreen...mmm like the MainMenu, and i wanna make a button which connect to the "localhost:25565" server by a click. I cant describe more easy.
  4. Everbody have got his/her own opinion.
  5. I dont like the "New Minecraft". I think the original minecraft sandbox feeling was lost after the patch 1.3.2. EDIT: MineMaarten, thanks, it works! (and im a retard 'couse i didnt see that )
  6. Hi! I made a Gui screen for MC1.3.2, I think I write it good, but only the textfield dont want to work. You need to travel to the past if you want to help me. Here's the GuiScreen file: @SideOnly(Side.CLIENT) public class GuiLogin extends GuiScreen { private final GuiScreen parentScreen; private GuiTextField username; public void initGui() { super.initGui(); username = new GuiTextField(this.fontRenderer, this.width / 2, this.height / 2, 100, 20); this.username.setTextColor(-1); this.username.setMaxStringLength(10); this.username.setEnableBackgroundDrawing(true); this.username.setVisible(true); } public GuiLogin(GuiScreen par1GuiScreen) { this.parentScreen = par1GuiScreen; } @Override public void drawScreen(int x, int y, float f) { this.initGui(); this.username.drawTextBox(); this.BackGround(); super.drawScreen(x, y, f); } private void BackGround() { final int xSizeOfTexture = 176; final int ySizeOfTexture = 88; drawDefaultBackground(); int var4 = this.mc.renderEngine.getTexture("/mmod/media/default.png"); GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F); this.mc.renderEngine.bindTexture(var4); int posX = (this.width - xSizeOfTexture) / 2; int posY = (this.height - ySizeOfTexture) / 2; drawTexturedModalRect(posX, posY, 0, 0, xSizeOfTexture, ySizeOfTexture); } } Please help me!
  7. You can make a TickHandler for replace the GuiIngame, but this is the "Dirty" way.
  8. I haven't see anything like that. I dont know how I can do it
  9. Yes I use it.
  10. GotoLink This isn't work, I think 'couse the GuiIngame isn't a GuiScreen it is a simple Gui, but I dont know.
  11. I searched for it on Google. But it isnt works When I pressed the key, the gui appeared and disappeared and repeated this thing so fast, when i press the key again nothing happend.
  12. Okay, I asked it.^^
  13. Okay, I have just solved it. Thanks diesieben07!
  14. Sorry, but Im 16 Years old and I now learning Java Have you ever played RaiderZ? I need to make a "GuiIngame" system like that. So, this is a big project with my friends..
  15. I know what I do when I replace the GuiIngame, and I know I need it. But, I dont uderstand Can you show me an example or make?
  16. Hi! I made a Keybinded gui. (If i press the button the Gui appears.) Well, I want to make a toggle into this keybind. (I press the key, the Gui comes up and if I press the key again the Gui disappears.) The KeyHandler: public class GuiKeyHandler extends KeyHandler { private EnumSet tickTypes = EnumSet.of(TickType.CLIENT); public static boolean keyPressed = false; public GuiKeyHandler(KeyBinding[] keyBindings, boolean[] repeatings) { super(keyBindings, repeatings); } @Override public String getLabel() { return "GuiSwitch"; } @Override public void keyDown(EnumSet<TickType> types, KeyBinding kb, boolean tickEnd, boolean isRepeat) { keyPressed = true; final Minecraft mc = Minecraft.getMinecraft(); mc.ingameGUI = new GuiIngameNew(mc); } @Override public void keyUp(EnumSet<TickType> types, KeyBinding kb, boolean tickEnd) { keyPressed = false; } @Override public EnumSet<TickType> ticks() { return tickTypes; } } I show the other files if it needs.
  17. Ohh im searching for "IExtendedEntityProperties" Thanks is it works!
  18. Hi! I want to write ito the EntityPlayer, But I dont know, how What I need to use? TickHandler or what?
  19. Ahh Thanks! Im stupid
  20. Hi I've got this Error 2013-09-20 17:17:38 [iNFO] [ForgeModLoader] Forge Mod Loader version 5.2.23.737 for Minecraft 1.5.2 loading 2013-09-20 17:17:38 [iNFO] [ForgeModLoader] Java is Java HotSpot(TM) Client VM, version 1.7.0_40, running on Windows 7:x86:6.1, installed at C:\Program Files\Java\jre7 2013-09-20 17:17:38 [iNFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation 2013-09-20 17:17:40 [iNFO] [sTDOUT] 229 recipes 2013-09-20 17:17:40 [iNFO] [sTDOUT] 27 achievements 2013-09-20 17:17:40 [iNFO] [Minecraft-Client] Setting user: Player471 2013-09-20 17:17:40 [iNFO] [sTDOUT] (Session ID is -) 2013-09-20 17:17:40 [iNFO] [sTDERR] Client asked for parameter: server 2013-09-20 17:17:40 [iNFO] [Minecraft-Client] LWJGL Version: 2.4.2 2013-09-20 17:17:41 [iNFO] [MinecraftForge] Attempting early MinecraftForge initialization 2013-09-20 17:17:41 [iNFO] [sTDOUT] MinecraftForge v7.8.1.737 Initialized 2013-09-20 17:17:41 [iNFO] [ForgeModLoader] MinecraftForge v7.8.1.737 Initialized 2013-09-20 17:17:41 [iNFO] [sTDOUT] Replaced 85 ore recipies 2013-09-20 17:17:41 [iNFO] [MinecraftForge] Completed early MinecraftForge initialization 2013-09-20 17:17:41 [iNFO] [ForgeModLoader] Reading custom logging properties from G:\MCModding\forge2\mcp\jars\config\logging.properties 2013-09-20 17:17:41 [OFF] [ForgeModLoader] Logging level for ForgeModLoader logging is set to ALL 2013-09-20 17:17:41 [iNFO] [ForgeModLoader] Searching G:\MCModding\forge2\mcp\jars\mods for mods 2013-09-20 17:17:42 [iNFO] [ForgeModLoader] Forge Mod Loader has identified 4 mods to load 2013-09-20 17:17:42 [iNFO] [mcp] Activating mod mcp 2013-09-20 17:17:42 [iNFO] [FML] Activating mod FML 2013-09-20 17:17:42 [iNFO] [Forge] Activating mod Forge 2013-09-20 17:17:42 [iNFO] [creepian] Activating mod creepian 2013-09-20 17:17:42 [iNFO] [ForgeModLoader] Registering Forge Packet Handler 2013-09-20 17:17:42 [iNFO] [ForgeModLoader] Succeeded registering Forge Packet Handler 2013-09-20 17:17:42 [iNFO] [ForgeModLoader] Configured a dormant chunk cache size of 0 2013-09-20 17:17:42 [iNFO] [sTDOUT] 2013-09-20 17:17:42 [iNFO] [sTDOUT] Starting up SoundSystem... 2013-09-20 17:17:43 [iNFO] [sTDOUT] Initializing LWJGL OpenAL 2013-09-20 17:17:43 [iNFO] [sTDOUT] (The LWJGL binding of OpenAL. For more information, see http://www.lwjgl.org) 2013-09-20 17:17:43 [iNFO] [sTDOUT] OpenAL initialized. 2013-09-20 17:17:43 [iNFO] [sTDOUT] 2013-09-20 17:17:43 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/blocks/Target.png, but that file does not exist. Ignoring. 2013-09-20 17:17:43 [iNFO] [ForgeModLoader] Forge Mod Loader has detected an older LWJGL version, new advanced texture animation features are disabled 2013-09-20 17:17:43 [iNFO] [ForgeModLoader] Not using advanced OpenGL 4.3 advanced capability for animations : OpenGL 4.3 is not available 2013-09-20 17:17:43 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava_flow.txt 2013-09-20 17:17:43 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water_flow.txt 2013-09-20 17:17:43 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_0.txt 2013-09-20 17:17:43 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/fire_1.txt 2013-09-20 17:17:43 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/lava.txt 2013-09-20 17:17:43 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/portal.txt 2013-09-20 17:17:43 [iNFO] [Minecraft-Client] Found animation info for: textures/blocks/water.txt 2013-09-20 17:17:43 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file textures/items/ItemTarget.png, but that file does not exist. Ignoring. 2013-09-20 17:17:43 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/creepian/textures/items/item.goldCoin.png, but that file does not exist. Ignoring. 2013-09-20 17:17:43 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/creepian/textures/items/item.silverCoin.png, but that file does not exist. Ignoring. 2013-09-20 17:17:43 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/creepian/textures/items/item.bronzeCoin.png, but that file does not exist. Ignoring. 2013-09-20 17:17:43 [WARNING] [Minecraft-Client] TextureManager.createTexture called for file mods/creepian/textures/items/item.goldIgnots.png, but that file does not exist. Ignoring. 2013-09-20 17:17:43 [iNFO] [Minecraft-Client] Found animation info for: textures/items/clock.txt 2013-09-20 17:17:43 [iNFO] [Minecraft-Client] Found animation info for: textures/items/compass.txt 2013-09-20 17:17:43 [sEVERE] [ForgeModLoader] The mod creepian has attempted to register an entity ID 1 which is already reserved. This could cause severe problems 2013-09-20 17:17:43 [sEVERE] [ForgeModLoader] Fatal errors were detected during the transition from INITIALIZATION to POSTINITIALIZATION. Loading cannot continue 2013-09-20 17:17:43 [sEVERE] [ForgeModLoader] mcp{7.51} [Minecraft Coder Pack] (minecraft.jar) Unloaded->Constructed->Pre-initialized->Initialized FML{5.2.23.737} [Forge Mod Loader] (coremods) Unloaded->Constructed->Pre-initialized->Initialized Forge{7.8.1.737} [Minecraft Forge] (coremods) Unloaded->Constructed->Pre-initialized->Initialized creepian{1.0} [Creepian] (bin) Unloaded->Constructed->Pre-initialized->Errored 2013-09-20 17:17:43 [sEVERE] [ForgeModLoader] The following problems were captured during this phase 2013-09-20 17:17:43 [sEVERE] [ForgeModLoader] Caught exception from creepian java.lang.ClassCastException: net.minecraft.block.BlockDirt cannot be cast to java.lang.Character at net.minecraft.item.crafting.CraftingManager.addRecipe(CraftingManager.java:186) at cpw.mods.fml.common.registry.GameRegistry.addShapedRecipe(GameRegistry.java:244) at cpw.mods.fml.common.registry.GameRegistry.addRecipe(GameRegistry.java:239) at creepian.creepian.load(creepian.java:114) 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 cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:494) 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 com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) at com.google.common.eventbus.EventBus.post(EventBus.java:267) at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:192) at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:172) 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 com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314) at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) at com.google.common.eventbus.EventBus.post(EventBus.java:267) at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:103) at cpw.mods.fml.common.Loader.initializeMods(Loader.java:691) at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:213) at net.minecraft.client.Minecraft.startGame(Minecraft.java:448) at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44) at net.minecraft.client.Minecraft.run(Minecraft.java:733) at java.lang.Thread.run(Unknown Source) 2013-09-20 17:17:43 [iNFO] [sTDERR] java.lang.ClassCastException: net.minecraft.block.BlockDirt cannot be cast to java.lang.Character 2013-09-20 17:17:43 [iNFO] [sTDERR] at net.minecraft.item.crafting.CraftingManager.addRecipe(CraftingManager.java:186) 2013-09-20 17:17:43 [iNFO] [sTDERR] at cpw.mods.fml.common.registry.GameRegistry.addShapedRecipe(GameRegistry.java:244) 2013-09-20 17:17:43 [iNFO] [sTDERR] at cpw.mods.fml.common.registry.GameRegistry.addRecipe(GameRegistry.java:239) 2013-09-20 17:17:43 [iNFO] [sTDERR] at creepian.creepian.load(creepian.java:114) 2013-09-20 17:17:43 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-09-20 17:17:43 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-09-20 17:17:43 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-09-20 17:17:43 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2013-09-20 17:17:43 [iNFO] [sTDERR] at cpw.mods.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:494) 2013-09-20 17:17:43 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-09-20 17:17:43 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-09-20 17:17:43 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-09-20 17:17:43 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2013-09-20 17:17:43 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) 2013-09-20 17:17:43 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2013-09-20 17:17:43 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314) 2013-09-20 17:17:43 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) 2013-09-20 17:17:43 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267) 2013-09-20 17:17:43 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.sendEventToModContainer(LoadController.java:192) 2013-09-20 17:17:43 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.propogateStateMessage(LoadController.java:172) 2013-09-20 17:17:43 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-09-20 17:17:43 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-09-20 17:17:43 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-09-20 17:17:43 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2013-09-20 17:17:43 [iNFO] [sTDERR] at com.google.common.eventbus.EventHandler.handleEvent(EventHandler.java:74) 2013-09-20 17:17:43 [iNFO] [sTDERR] at com.google.common.eventbus.SynchronizedEventHandler.handleEvent(SynchronizedEventHandler.java:45) 2013-09-20 17:17:43 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatch(EventBus.java:314) 2013-09-20 17:17:43 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.dispatchQueuedEvents(EventBus.java:296) 2013-09-20 17:17:43 [iNFO] [sTDERR] at com.google.common.eventbus.EventBus.post(EventBus.java:267) 2013-09-20 17:17:43 [iNFO] [sTDERR] at cpw.mods.fml.common.LoadController.distributeStateMessage(LoadController.java:103) 2013-09-20 17:17:43 [iNFO] [sTDERR] at cpw.mods.fml.common.Loader.initializeMods(Loader.java:691) 2013-09-20 17:17:43 [iNFO] [sTDERR] at cpw.mods.fml.client.FMLClientHandler.finishMinecraftLoading(FMLClientHandler.java:213) 2013-09-20 17:17:43 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.startGame(Minecraft.java:448) 2013-09-20 17:17:43 [iNFO] [sTDERR] at net.minecraft.client.MinecraftAppletImpl.startGame(MinecraftAppletImpl.java:44) 2013-09-20 17:17:43 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.run(Minecraft.java:733) 2013-09-20 17:17:43 [iNFO] [sTDERR] at java.lang.Thread.run(Unknown Source) I can send the other files, but write it if you want to help me
  21. I really hope, I dont need to do that
  22. Hi all, i need a guide or a tutorial, or an example of it. I know the first, is the Block seaching in a sphere, and the second is the seting it as target path, but i dont know how i can do it.. . Please help me.
  23. Can you tell me, how i can do it?
×
×
  • Create New...

Important Information

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