Jump to content

Jacky2611

Members
  • Posts

    499
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Jacky2611

  1. What version of forge are you using? Are you even using forge? What OS? gradle/not gradle What Minecraft version ... And have you ever used java before?
  2. What? Do you want to know what a fingerprint scanner is or how to code one?
  3. So i am not the only one with a door piston problem. Has someone already found a fix for this?
  4. so you checked for isOpaqueBlock and placed pistons, toches... after normal blocks? Should have came up with this on my own...
  5. So item and block ids are auto created and dimensionIds are not??? And is there any way (without external save file) to load the new dimensions in the init at a reboot?
  6. nextaAvailableDim sounds good... But the last time i coded a dimension (was before i learned java, version 1.3 or 1.4) i had to register something like a dimension id. Do i still have to register that?
  7. Have you managed to teleport doors (my function only teleports 50% the rest is dropped 3-4x) and torches? And how do you teleport entities? Do they keep their effects (potions...)?
  8. Basically i want to add a item that players can use to create their own dimensions, like in mystcraft.
  9. Is there anywhere a tutorial on how to create a dimension after the init? (Like mystcraft age books)
  10. lol... I managed it with a lot of help from the_clyde to copy metadata and entities. How do you move the blocks? can u think of somezhing thats faster than a simple get block and set block loop? (Speeded it up by using a thread and a 1ms pause after every block, but it still takes a few seconds until everything is moved.)
  11. SOLVED IT ON MY OWN
  12. The problem is that i can't find the sky...
  13. Sounds like a good idea. Isn't it possible to make something like the sky/sun does? what i basically want to create is a sun-block...
  14. Guess the title says everything. I want to have a sunlight generator with a range of around 80 blocks. Is something like this possible? And where can i find the sun/sky class?
  15. Yeah.... Downloaded a new build gradle after posting and just tried to delete this... SOLVED
  16. I just tried to publish the first version of my mod and got this error: Can someone help pls me?
  17. Hi! Im trying to set up the new gradle forge 1.7.2 (latest stable build) on my mac (10.9) and java version "1.6.0_65" with eclipse. First i downloaded the latest version of eclipse and then i installed gradle(it said something about an IDE that couldn't be installed, but according to the gradle forums this extra IDE is unused, i have the gradle IDE and the Spring UAA installed) Then I executed ./gradlew setupDecompWorkspace --refresh-dependencies ./gradlew eclipse . works. Back in Eclipse i switched workspace to the eclipse folder inside my forge folder. (also tried to create a workspace somewhere else and to import the forge folder as a project) And now the trouble starts. I get these two errors: Illegal entry in Gradle Dependencies: /Users/***/Desktop/modding/eclipse/Eclipse.app/Contents/MacOS/unresolved dependency - forgeSrc 1.7.2-10.12.0.1024 Minecraft Unknown org.springsource.ide.eclipse.gradle.core.classpathcontainer and: Project 'Minecraft' is missing required library: '/Users/***/Desktop/modding/eclipse/Eclipse.app/Contents/MacOS/unresolved dependency - forgeSrc 1.7.2-10.12.0.1024' Minecraft Build path Build Path Problem Also it seems like eclipse doesn't recognize the build.gradle file (as already said, i have the gradle IDE and the Spring UAA installed), it is displayed like an ordinary text file, and i can't even see the minecraft source code. The last time i tried to swith to gradle around 2 months ago i got the same errors and finally gave up. Can someone give me a hint where exactly my error is? Im trying to get everything running for around 4 hours now D:
  18. I'm just tying to add smoke that will appear if the player presses a button. Right now i have this: Packet Handler and my particle class: This code .. works. I have ~1 sec lag when i press the button and my smoke doesn't really look like a "cloud" (and it disappears after 2 secs, guess i have to make my own smoke...). Can someone tell me if there is another way to spawn particles that is faster and doesn't produce this much lag? Would really be great if someone could show me a better method to create my smoke.
  19. It depends on which one helps with FPS and helps it load quicker. but I think you method worked. but not 100% sure because my game just crashed because it is a really big model EDIT: When I Export the Model as OBJ I use Cinema 4D what measurement should I use? For me (c4d 14) 1m = 1block.
  20. I haven't played around with mobs yet, but have you already looked at the dog/cat code? I think they attack chickens...
  21. Thx, this is exactly what i want. But how can i send a packet without the player? if i understood the code on the wiki correct i need the player object to send the packet. Is there any other way to send a packet?
  22. I think (i am no expert) that you will need a second mob, that is spawned when you breed two birds, with a smaller modell. Colours... Have you tried using a random (int 0-10?) tileentity that is created on spawn? And if its bigger than x you use texture y, if its bigger.... I use something like this for my blocks, but i am not sure if it works with mobs too.
  23. But how should i send the packet if i don't have the player? player.sendQueue.addToSendQueue(packet); Or should i send the packet inside my tickhandler? (Would like to get rid of it since i don't need it for anything else.)
  24. Oh... Then one problem is solved. But how do i geht the player inside my keybinding Class to send the packet?
×
×
  • Create New...

Important Information

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