Jump to content

Link_

Forge Modder
  • Posts

    10
  • Joined

  • Last visited

Converted

  • Gender
    Male
  • URL
    http://defence.ddns.net
  • Location
    Hiding behind your computer screen
  • Personal Text
    0101001011101001

Link_'s Achievements

Tree Puncher

Tree Puncher (2/8)

1

Reputation

  1. Tried some more, still doesn't work D: It just doesn't realise the texture is there
  2. Minecraft.getMinecraft().theWorld. Duh //EDIT: MniencraftServer.getServer().worldServers for the server
  3. Well take a look at net.minecraft.block.BlockFurnace, it may help you out. Basicly if the fuel burn time isnt 0 then increase cook timer, if cook timer == 300 then reset cook timer and delete one item from the "to be cooked" slot and add x of the result items to the "already cooked" slot
  4. Hmm.. I've made that it creates jar file on preInit, puts it into the mod list of Forge. The directories of the files in the .jar are /assets/simpleblockadder/textures/blocks/*.png. That SHOULD work right? What have I done wrong? Code is here: https://github.com/MRebhan/SimpleBlockAdder/blob/master/java/defence/mc/sba/SimpleBlockAdder.java at ~line 50
  5. That puts it into the jar on compile. I want that you can dl the mod with no textures at all and you can put textures and block definitions into the sba/ directory.
  6. I am currently making a mod that reads a text file, creates blocks specified in it and uses the aproppriate texture. The first part is done, but I can't get to make it load the texture. I tried copying the texture file at load into .minecraft/assets/SimpleBlockAdder/textures/blocks/.... but it will not work.How can I make Block.setBlockTextureName() take an absolute/realitve path/a File object? BTW: Code is here https://github.com/MRebhan/SimpleBlockAdder/ -Link_
  7. Thank you! It works *goes to code his GUI D:*
  8. So , well my onTick(TickEvent) function doens't work, I don't know why, the other 2 events in the same class work just fine. Code: EventHandler: Main Class Please help! -Link
  9. ok *runs away and hides* Thanks anyway
  10. So I downloaded latest 1.7.2 Forge build (1.7.2.10.12.2.1161) yesterday, installed the server aaaaaand this: [mr@server 172-server-1]$ java -jar forge-1.7.2-10.12.2.1161-mc172-universal.jar [08:00:29] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLServerTweaker [08:00:29] [main/INFO] [LaunchWrapper]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLServerTweaker [08:00:29] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLServerTweaker [08:00:29] [main/INFO] [FML]: Forge Mod Loader version 7.2.217.1161 for Minecraft 1.7.2 loading [08:00:30] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.9.0-ea, running on Linux:amd64:3.15.1-1-ARCH, installed at /home/mr/bin/jdk1.9.0/jre [08:00:30] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [08:00:30] [main/INFO] [LaunchWrapper]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker [08:00:30] [main/INFO] [LaunchWrapper]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker [08:00:30] [main/ERROR] [LaunchWrapper]: Unable to launch java.util.ConcurrentModificationException at java.util.ArrayList$Itr.checkForComodification(ArrayList.java:913) ~[?:1.9.0-ea] at java.util.ArrayList$Itr.remove(ArrayList.java:877) ~[?:1.9.0-ea] at net.minecraft.launchwrapper.Launch.launch(Launch.java:117) [launchwrapper-1.9.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.9.jar:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.9.0-ea] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.9.0-ea] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.9.0-ea] at java.lang.reflect.Method.invoke(Method.java:484) ~[?:1.9.0-ea] at cpw.mods.fml.relauncher.ServerLaunchWrapper.run(ServerLaunchWrapper.java:43) [forge-1.7.2-10.12.2.1161-mc172-universal.jar:?] at cpw.mods.fml.relauncher.ServerLaunchWrapper.main(ServerLaunchWrapper.java:12) [forge-1.7.2-10.12.2.1161-mc172-universal.jar:?] [mr@server 172-server-1]$ OS: Arch Linux kernel 3.15.1-1 Java: 1.9.0-ea Please help! EDIT: NO mods.
×
×
  • Create New...

Important Information

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