Jump to content

aligator123456

Members
  • Posts

    14
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

aligator123456's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. OK, now I get the VertexData. But how do I have to interpret this values? Edit: I think I got it now. This is the data I get from a block: 1065353216 1065353216 1065353216 -1 1054868505 1040189489 127 1065353216 855638016 1065353216 -1 1054868505 1042282447 127 1065353216 855638016 855638016 -1 1055914983 1042282447 127 1065353216 1065353216 855638016 -1 1055914983 1040189489 127
  2. I am creating a mod, which exports parts of the world for 3D-Printing. (I know there are already programs for this, but they do not have all options I need.) And if there is any possibility to get the models of the blocks ingame, I could also print modded blocks. The other way would be to create own models for all known blocks. But this is much work and I cannot support all mods. Thank you for the link. Maybe this helps me already.
  3. Hi is it possible to get the 3d-Model data from Blocks (like stair, torch, etc.). If I understand it correctly, the models are set with the json-files (for most blocks). Is there any way to load these files?
  4. I have no idea how packages work. is there any tutorial for 1.7.2?
  5. this doesn't work. I think because one is serverside and the other one is clientside. If I do it, it doesn't work, because if I later want to use the incremented value (for example saving it to nbt) it is not changed
  6. hi I need to send data from my Container to the TileEntity (only a signal to increment something) and then I want to send an Icon back to update the appearence of the GUI. How can I do this? With Network Packages? aligator123456
  7. Thank you! But in this thread is written, that this problem is fixed. But I use the newest library, so it must be a new error... (and this thread is from 2011) Am I the only one who has this problem?
  8. OK, I tried to use the 64-bit-libs (I used the librarys of http://lwjgl.org/ and of minecraft). It did not work. tomorrow I will try to use a 32-bit java, eclipse and lwjgl. I hope this works. edit: now I tried to use the 64-bit eclipse, but I set in the propertys to use a 32-bit java. Now I get this error:
  9. I use a 64-bit eclipse, and I use a 64bit java. I have no 32 bit java installed. I really don't understand why this happens...
  10. I have done this already. edit: I tried 32-bit java, but it doesn't work, too . :'(
  11. hmm it is a fresh copy. do you think I should use a 32-bit -java jdk?
  12. hi I downloaded the newest source, and installed it. I tried to start it with the green "run"-button in eclipse. At first it works, but then an error occours: 2013-04-05 18:16:41 [iNFO] [ForgeModLoader] Forge Mod Loader version 5.1.15.637 for Minecraft 1.5.1 loading 2013-04-05 18:16:41 [iNFO] [ForgeModLoader] Java is Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_17, running on Linux:amd64:3.5.0-26-generic, installed at /opt/Oracle_Java/jre1.7.0_17 2013-04-05 18:16:41 [iNFO] [ForgeModLoader] Managed to load a deobfuscated Minecraft name- we are in a deobfuscated environment. Skipping runtime deobfuscation 2013-04-05 18:16:42 [iNFO] [sTDERR] java.lang.reflect.InvocationTargetException 2013-04-05 18:16:42 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 2013-04-05 18:16:42 [iNFO] [sTDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 2013-04-05 18:16:42 [iNFO] [sTDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 2013-04-05 18:16:42 [iNFO] [sTDERR] at java.lang.reflect.Method.invoke(Unknown Source) 2013-04-05 18:16:42 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.relaunchClient(FMLRelauncher.java:123) 2013-04-05 18:16:42 [iNFO] [sTDERR] at cpw.mods.fml.relauncher.FMLRelauncher.handleClientRelaunch(FMLRelauncher.java:38) 2013-04-05 18:16:42 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.main(Minecraft.java:2228) 2013-04-05 18:16:42 [iNFO] [sTDERR] at Start.main(Start.java:29) 2013-04-05 18:16:42 [iNFO] [sTDERR] Caused by: java.lang.UnsatisfiedLinkError: /home/johannes/Dropbox/Programming/Java/Minecraft/Forge/forge/mcp/jars/bin/natives/liblwjgl.so: /home/johannes/Dropbox/Programming/Java/Minecraft/Forge/forge/mcp/jars/bin/natives/liblwjgl.so: falsche ELF-Klasse: ELFCLASS32 (Possible cause: architecture word width mismatch) 2013-04-05 18:16:42 [iNFO] [sTDERR] at java.lang.ClassLoader$NativeLibrary.load(Native Method) 2013-04-05 18:16:42 [iNFO] [sTDERR] at java.lang.ClassLoader.loadLibrary1(Unknown Source) 2013-04-05 18:16:42 [iNFO] [sTDERR] at java.lang.ClassLoader.loadLibrary0(Unknown Source) 2013-04-05 18:16:42 [iNFO] [sTDERR] at java.lang.ClassLoader.loadLibrary(Unknown Source) 2013-04-05 18:16:42 [iNFO] [sTDERR] at java.lang.Runtime.loadLibrary0(Unknown Source) 2013-04-05 18:16:42 [iNFO] [sTDERR] at java.lang.System.loadLibrary(Unknown Source) 2013-04-05 18:16:42 [iNFO] [sTDERR] at org.lwjgl.Sys$1.run(Sys.java:72) 2013-04-05 18:16:42 [iNFO] [sTDERR] at java.security.AccessController.doPrivileged(Native Method) 2013-04-05 18:16:42 [iNFO] [sTDERR] at org.lwjgl.Sys.doLoadLibrary(Sys.java:65) 2013-04-05 18:16:42 [iNFO] [sTDERR] at org.lwjgl.Sys.loadLibrary(Sys.java:81) 2013-04-05 18:16:42 [iNFO] [sTDERR] at org.lwjgl.Sys.<clinit>(Sys.java:98) 2013-04-05 18:16:42 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.getSystemTime(Minecraft.java:2559) 2013-04-05 18:16:42 [iNFO] [sTDERR] at net.minecraft.client.Minecraft.fmlReentry(Minecraft.java:2238) 2013-04-05 18:16:42 [iNFO] [sTDERR] ... 8 more Is this a forge bug or is it a bug of Linux? (I use Kubuntu 12.10) aligator123456
  13. hi I installed a new forge-environment with the install.sh (I'm using Linux) If I open it with eclipse, and start it (with the green Run-Button), an error occours: How can I fix this? I couldn't find anything helpfull with google. aligator123456
×
×
  • Create New...

Important Information

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