Jump to content

EmeraldJelly

Members
  • Posts

    57
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

EmeraldJelly's Achievements

Stone Miner

Stone Miner (3/8)

2

Reputation

  1. I figured as much, do you think you can point me to where I can find the changes between 1.16.5 and 1.17? A lot of the methods used in 1.16 aren't in 1.17 so if there's any place to view info about that, I would appreciate it.
  2. Bump.. Anyone know how to resolve this issue? It works perfectly fine for forge 1.17.1 but for whatever reason 1.16.5 doesn't work.
  3. Why is this happening when trying to run client, forge latest recommended for 1.16.5. Here's my console error: https://pastebin.com/ttMXgpmJ
  4. Hello! I was wondering how I would go around achieving an effect such as the Tesseract from Thermal Expansion 1.7.10, in forge 1.15.2. is there a specific method I need to follow to do something like that. A pointer in the right direction would be appreciated
  5. How would I do that , not sure how to Check in a radius
  6. Hi so im using forge version 1.12.2. Trying to work on a pretty interesting mod with good knowledge of java and how it works, just not the Forge API and i have trouble sometimes finding where to properly learn the entire API and how it works, there should be a forge school or something. Anyways, i'm trying to create a Multiblock structure. Basically i'm making a sacrifice bowl, that needs to be surrounded by 3 1x1 shrine blocks 2 blocks spaced out from each other. I want the shrines to spawn particles to move toward the bowl then eventually transforming the contents of the bowl (just a container with a inventory of 4 **3 ingredients, 1 output**) into an item and ejecting it out of the inventory as an item spawn. I'm not sure if i need to use multiblocks to do this, but it does require multiple blocks to work (all be it not connected). It's more of a crafting altar i suppose, similar to thaumcraft if that is a good reference point. Any assistance would be much appreciated, thanks!
  7. You are literally amazing, i'll try this when I get back to my code later tonight, thanks!
  8. Hi there! I'm trying to figure out how to make particles move around in specific ways, the only problem being is that I am very bad at math. (As in I have a major problems learning when it comes to specifically mathematics) I understand Java and know how to program, got a 4 on an AP Comp Sci A test (no idea if that means anything). I just seem to struggle with the Math side of things no matter how hard I try to understand it. I suppose i'll try to explain what i'm trying to do with the particles and perhaps someone could explain to me exactly what to do / understand how to do it so I can apply the knowledge in the future. List of Effects i'm trying to accomplish for my mod: - Vacuum Effect (Particles spawning in random locations in a spherical radius, and moving towards a center point starting slow and rapidly picking up speed as it gets closer to the center point) - Orbit Effect (Particles moving around in an ring like orbit, would like to cover how to rotate the axis' to make the ring turn) - Wave Effect (Particles moving in a wavy line from Point A to point B just picture a squiggly line in 3D) I know this is a lot to ask for, just please don't go tell me to study math or something because I'm already trying and struggle with it everyday. Thanks! - EmeraldJelly P.S. I already know how to physically spawn particles at specific locations I just don't know the math / functions to manipulate them. I.E. Make them move.
  9. Wow. You are very helpful! i'll give that a try, thanks for not just posting a link to a stackoverflow
  10. Yes, the particles are spawning, though they aren't moving in a circle like intended.
  11. I have ellipse math already, check the hastebin link. And that link isn't very helpful to me, sorry.
  12. Hi! I'm trying to figure out how to make a ring of particles around a specific location. Can someone please help me with that, thanks! <3 Here is the code I have so far, math I believe is right but it simply isn't working. https://hastebin.com/etizajuhoj.cpp The spawnParticleGlow code is as followed. public static void spawnParticleGlow(World world, float x, float y, float z, float vx, float vy, float vz, float r, float g, float b, float a, float scale, int lifetime) { if (MysticalLib.proxy instanceof ClientProxy) { counter += random.nextInt(3); if (counter % (Minecraft.getMinecraft().gameSettings.particleSetting == 0 ? 1 : 2 * Minecraft.getMinecraft().gameSettings.particleSetting) == 0) { ClientProxy.particleRenderer.spawnParticle(world, LibRegistry.PARTICLE_GLOW, x, y, z, vx, vy, vz, lifetime, r, g, b, a, scale); } } } Thanks! :)
×
×
  • Create New...

Important Information

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