Jump to content

Recommended Posts

Posted

Give us all of your server files, this has only been reported when people are using modifed servers that are not under forge's control and are doing this stupid.

Never able to reproduce it using vanilla or pure forge servers.

 

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

only 50% of people invisible, You have to enter to play /join

 

Because only then you can see that people are invisible

 

I do not have this error with modloader

 

------------------------------------------------------------------------

 

Java build version: Java 7 Update 15

OS: Windows 8 Professional with Media Center

OS Architecture: 64-bit

 

Test 1- No Forge, No Mods

 

Results: Game runs fine, using /kill doesn't turn the mobs invisible as they constantly keep updating their position. Sometimes they pause, but they quickly catch up.

 

Test 2- Forge 6.6.1.530 (Latest version at time of testing), No Mods.

 

Results: Using /kill turns mobs invisible and they don't update position. When you respond, they show up.

 

Test 3-  Forge 6.6.2.533 , No Mods.

 

Results: Same as Test 2.

 

Conclusion: The problem must be with forge. Maybe it is compiled with java 6 and it conflicting with java 7. I don't think I could downgrade java, so I cannot test java conflicts. Nevertheless, I will not use modloader.

 

You copied and edit my post! And you didn't even give me credit! How dare you!  >:(

 

Link To Post: http://www.minecraftforum.net/topic/1688539-147-cjb-mods-rebirth-quickcraft-update-19-02-2013/page__st__140__gopid__21105169#entry21105169

 

Anyway, here is my ForgeModLoader-client-0 log.

 

http://gw.minecraftforge.net/DvQ8

 

And my Magic Launcher log.

 

http://gw.minecraftforge.net/UTzt

 

Note: I removed the end of my email for privacy reasons. I also have nothing to do with this fixerror1's server.

 

 

Posted

Getting tired of this, one more post in this thread without fulfilling my request and that person earns a suspension.

As i said, THIS IS NOT REPRODUCIBLE ON ANY OF OUR ENVIRONMENTS, and it has specifically to do with how your server is setup.

We cannot fix it unless you provide us with what we need to do so. If it is indeed on our end, which I doubt it is.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

User was banned for 7 days for failure to follow directions and produce server files.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Posted

User was banned for 7 days for failure to follow directions and produce server files.

 

And post removed for being a ranting bitchfest.

 

Unless you provide the files that I requested, we can not reproduce the bug, and track it down.

It is a interaction bug with SOMETHING you have on your server {if indeed the bug exists}, we are not mind readers we cannot GUESS what you have and what versions and how they work.

So unless you're a little cooperative, you are not going to get help.

I do Forge for free, however the servers to run it arn't free, so anything is appreciated.
Consider supporting the team on Patreon

Guest
This topic is now closed to further replies.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • I’m working on a Manta Ray entity in MCreator using GeckoLib animations, and my goal is to have a looping (flip) animation that ends at −360°, then transitions seamlessly into a swim animation starting at 0°. However, every method I’ve tried—like quickly interpolating the angle, inserting a brief keyframe at 0°, or using a micro “bridge” animation—still causes a visible “flash” https://imgur.com/a/5ucjUb9 or "jump" when the rotation resets. I want a perfectly smooth motion from the flip’s final rotation to the swim’s initial rotation. If anyone has solved this in MCreator/GeckoLib, or found a better trick for handling the −360° →0° gap without a snap, I’d appreciate some advice ! P.S.- I cannot set swim to start at -360 because I would have the same issue but in reverse. Here's the custom LoopingAnimationGoal :   class LoopingAnimationGoal extends Goal { private final MantaRayEntity entity; private final int cooldownTime; private int animationTimer; private int cooldownTimer; // New boolean to prevent double calls private boolean isLoopingActive = false; public LoopingAnimationGoal(MantaRayEntity entity, int cooldownTime) { this.entity = entity; this.cooldownTime = cooldownTime; this.animationTimer = 0; this.cooldownTimer = 0; this.setFlags(EnumSet.of(Flag.MOVE, Flag.LOOK)); } @Override public boolean canUse() { System.out.println("[DEBUG] LoopingGoal canUse => cooldownTimer=" + cooldownTimer); if (cooldownTimer > 0) { cooldownTimer--; return false; } BlockPos entityPos = entity.blockPosition(); boolean canUse = entity.isWaterAbove(entityPos, 4); System.out.println("[DEBUG] LoopingGoal canUse => WATER " + (canUse ? "DETECTED" : "NOT DETECTED") + " at " + entityPos + ", returning " + canUse); return canUse; } @Override public void start() { entity.setAnimation("looping"); animationTimer = 63; isLoopingActive = true; System.out.println("[DEBUG] Looping animation STARTED. Timer=" + animationTimer + ", gameTime=" + entity.level().getGameTime()); } @Override public boolean canContinueToUse() { System.out.println("[DEBUG] LoopingGoal canContinueToUse => animationTimer=" + animationTimer); return animationTimer > 0; } @Override public void tick() { animationTimer--; System.out.println("[DEBUG] LoopingGoal TICK => animationTimer=" + animationTimer); // We stop ONLY if we are still looping if (animationTimer <= 0 && isLoopingActive) { System.out.println("[DEBUG] condition => animationTimer <= 0 && isLoopingActive"); stop(); } } @Override public void stop() { // Check if already stopped if (!isLoopingActive) { System.out.println("[DEBUG] stop() called again, but isLoopingActive = false. Doing nothing."); return; } System.out.println("[DEBUG] Looping STOP at tick=" + entity.level().getGameTime() + ", last known rotation=" + entity.getXRot() + "/" + entity.getYRot() + ", animationTimer=" + animationTimer); // Immediately switch to "swim" entity.setAnimation("swim"); // Reset cooldown cooldownTimer = cooldownTime; // Disable looping to prevent a second stop isLoopingActive = false; System.out.println("[DEBUG] Looping STOP => setAnimation('swim'), cooldownTimer=" + cooldownTimer); } }  
    • So is the intention of the crusher for ores meant to be used with a silk touch pickaxe or something? Cause that seems like too much effort just to profit off of the machine, when everything drops as raw materials now. Am I just missing something? 
    • Update your AMD/ATI drivers - get the drivers from their website - do not update via system  
  • Topics

  • Who's Online (See full list)

×
×
  • Create New...

Important Information

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