Jump to content
  • Home
  • Files
  • Docs
Status Updates
  • All Content

  • Advanced Search
  • Existing user? Sign In  

    Sign In



    • Not recommended on shared computers


    • Forgot your password?

  • Sign Up
  • All Activity
  • Home
  • saxon564

saxon564

Forge Modder
 View Profile  See their activity
  • Content Count

    486
  • Joined

    April 6, 2013
  • Last visited

    April 6, 2020

Community Reputation

20 Excellent

About saxon564

  • Rank
    Diamond Finder

Converted

  • Gender
    Undisclosed
  • Personal Text
    I don't like taking 'Not possible' for an answer!

Recent Profile Visitors

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

  1. saxon564 started following [1.14.4] [UNSOLVED] Server Thread Freezes After Entity Explodes and ForgeSrc Direct download December 23, 2019
  2. saxon564

    ForgeSrc Direct download

    saxon564 replied to iamatnhony's topic in Modder Support

    What do you mean by "Forgesrc still doesnt show"? Are you actually looking for a folder in your project src that is the forge source? What are you expecting to be seeing and where are you looking?
    • December 23, 2019
    • 4 replies
  3. saxon564

    [1.12.2] plugin with id 'net.minecraftforge.gradle.forge' not found

    saxon564 replied to vMystic's topic in Modder Support

    Are you using eclipse of intellij?
    • December 13, 2019
    • 9 replies
  4. saxon564

    [1.12.2] plugin with id 'net.minecraftforge.gradle.forge' not found

    saxon564 replied to vMystic's topic in Modder Support

    Could you show a screenshot of the contents of the folder 'ye'?
    • December 12, 2019
    • 9 replies
  5. saxon564

    [1.14.4] [UNSOLVED] Server Thread Freezes After Entity Explodes

    saxon564 replied to saxon564's topic in Modder Support

    I just had a break through. It seems it is an issue with the world itself. I went to a new fresh world and it works with no issues.
    • December 10, 2019
    • 14 replies
  6. saxon564

    [1.14.4] [UNSOLVED] Server Thread Freezes After Entity Explodes

    saxon564 replied to saxon564's topic in Modder Support

    So I have found that the cause seems to be the createExplosion method, which tells me I must be passing some sort of bad information to it, or calling it improperly. But as far as I can tell, I am doing everything right with it.
    • December 10, 2019
    • 14 replies
  7. saxon564

    [1.14.4] [UNSOLVED] Server Thread Freezes After Entity Explodes

    saxon564 replied to saxon564's topic in Modder Support

    Does anyone else have any thoughts as to what might be causing this issue?
    • December 9, 2019
    • 14 replies
  8. saxon564

    Problem with not finding json files [1.14.4]

    saxon564 replied to Guy123's topic in Modder Support

    Do you have json for the item model of your block? Nevermind me, I should have refreshed the page before responding.
    • December 8, 2019
    • 11 replies
  9. saxon564

    Problem with not finding json files [1.14.4]

    saxon564 replied to Guy123's topic in Modder Support

    The error is a resource pack error, which I can safely say I have never seen from any of the screwed up jsons I have made. It makes me think there is a resource pack installed for a previous version of Minecraft. If you don't have a resource pack installed, it could be.
    • December 8, 2019
    • 11 replies
  10. saxon564

    [1.14] moving item assignment to a separate function

    saxon564 replied to JetCobblestone's topic in Modder Support

    Lex has a lot of haters. He is blunt and tells it how it is, which most people don't like. Everyone has a run-in with him thats makes them hate him, just some hold that hatred, others let that hatred go and learn that he was helping but is tired of people who don't know what they are doing and refusing to do what they really need to do, usually learning basic java and basic coding in general. The class you have there is as simple as it can get. For a single item the helper method isn"t really needed, but it becomes a more important resource when you start getting many more items since it will make updating the resource locations a lot quicker if something chages. Aside from that, I don't think there is anything anyone will say you can do to make that class any simpler or efficent.
    • December 8, 2019
    • 13 replies
  11. saxon564

    [1.14.4] [UNSOLVED] Server Thread Freezes After Entity Explodes

    saxon564 replied to saxon564's topic in Modder Support

    Since I first built this in 1.5.2 I do not remember the reason I did not extend the vanilla chiclen. I would guess that at the time, it was because of spawning issues or issues with making the chickens hostile. As for why code isn"t split between each individual chicken, that is because I have made the chickens highly configurable, so any chicken can do anything. So to put the "respective" code in each chicken class, I would have 21 classes that would be almost 100% identical. Which would also mean loads more time would have to go into updating since I would have to update 21 classes instead of just a single class. I will admit, when I was first building the mod, I did copy and paste a lot of vanilla code, but I have also made several changes to get the code to work the way I wanted/needes it to.
    • December 8, 2019
    • 14 replies
  12. saxon564

    [1.14.4] [UNSOLVED] Server Thread Freezes After Entity Explodes

    saxon564 replied to saxon564's topic in Modder Support

    Unfortunately that was not the case, there was no change in the result at all.
    • December 8, 2019
    • 14 replies
  13. saxon564

    [1.14.4] [UNSOLVED] Server Thread Freezes After Entity Explodes

    saxon564 replied to saxon564's topic in Modder Support

    I feel like I've done that before with no positive results, but that may have been for a different issue, so I will give it a shot tonight and see if that works.
    • December 7, 2019
    • 14 replies
  14. saxon564

    [1.14.4] [UNSOLVED] Server Thread Freezes After Entity Explodes

    saxon564 replied to saxon564's topic in Modder Support

    I have condensed my code down so the link in my first post is off by several lines. So here is the correct link. I also commented out all the code using the Minecraft instance since none of that is important right now. I still can't figure out what is causing the hang. Putting in debug code between each line and even overriding the remove methods and all the debug lines do get called. So it seems to me it is something after the my entity is removed, which makes no sense since if the entity dies in any other way, this is not an issue.
    • December 7, 2019
    • 14 replies
  15. saxon564

    [1.14.4] [UNSOLVED] Server Thread Freezes After Entity Explodes

    saxon564 replied to saxon564's topic in Modder Support

    OK, I will add that to my list of things to address. For now though, can we focus on the issue I made the post for?
    • December 6, 2019
    • 14 replies
  16. saxon564

    [1.14.4] [UNSOLVED] Server Thread Freezes After Entity Explodes

    saxon564 replied to saxon564's topic in Modder Support

    The value only ever gets used on the client side for sending chat messages when the tamed entity dies. Are you saying you believe that is what is causing the hang though?
    • December 6, 2019
    • 14 replies
  • All Activity
  • Home
  • saxon564
  • Theme

Copyright © 2019 ForgeDevelopment LLC · Ads by Longitude Ads LLC Powered by Invision Community