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
  • PacketNarc

PacketNarc

Members
 View Profile  See their activity
  • Content Count

    8
  • Joined

    January 27
  • Last visited

    February 16

Community Reputation

0 Neutral

About PacketNarc

  • Rank
    Tree Puncher
  • Birthday 02/14/1975

Converted

  • Gender
    Male
  • URL
    https://www.fbi.gov
  • Location
    Texas
  • Personal Text
    I'm not a bad guy; I'm just scripted that way.

Recent Profile Visitors

395 profile views
  • diesieben07

    diesieben07

    January 30

  • DaemonUmbra

    DaemonUmbra

    January 29

  • LexManos

    LexManos

    January 28

  • Mikai

    Mikai

    January 27

  • DavidM

    DavidM

    January 27

  1. PacketNarc

    PacketNarc

    Dear moderators and “forum team”. Chill out policing my posts. 
     

    You’d think since we don’t exactly have a surplus of people rushing in to help users learn how to Solve their issues and become more knowledgeable; you’d welcome the help. 
     

    You seem super focused on calling me out “in thread”. 
     

    If you have a problem with something I posted or the posture, I have a PM inbox. 
     

    Calling  me out or criticism of my posts in-thread is abusive and unethical. It sets a negative precedent. 

    • January 29
  2. PacketNarc

    my 1.16.5 modded game crashes after a while of playing

    PacketNarc replied to matthyit's topic in Support & Bug Reports

    I am absolutely here to help and make the community and Forge better. Interestingly enough, the mod authors themselves, tell people to take exactly this approach when solving conflicts between mods. “Remove what you added, and add them back slowly until it breaks”. From the OPs own words::: problem 1.) “I kinda installed a bunch of mods....” Let’s dig in, ok ? That’s not so much of an issue; IF the user verified compatibility or did even cursory compatibility testing. Clearly that isn’t the case here. Problem. 2.) “I’m not really savvy about this...” This generally predicts failure. It’s cool to be new. That’s what this forums for. Helping new people. My suggestion to the user to remove the mods, and put them back in 1 at a time will accomplish 2 things immediately. 1.) it will allow them to discover dependencies, because the GUI will tell them “Blah blah.mod” requires “libraries.mod” to work. It will even give them a button that opens the mods folder. **That way they can systematically get the pack working, and as soon as they hit a boot error that cannot be resolved by adding back a dependency they can come here with specific problem statements in order to get prescriptive help, and not “maybe try this”. This doesn’t require any skill other than being able to read, and it teaches the user at a high level ; how interaction between different mods can create issues. Now to your comment about it not being helpful, I’ve been in the field going on 25 years, so I’m exceptionally qualified to propose this as a solution. If your authority as a Mod has motivated you to come in here and slap me with a ruler, that’s your prerogative. My post(s) or suggestions have been neither counterproductive nor trolling. If the poster takes my approach they will not only come out the other side with a working pack, but they’ll also learn a heck of a lot more about how this stuff works, in the process. This makes them more self-sufficient. A better community member.
    • January 29
    • 15 replies
  3. PacketNarc

    my 1.16.5 modded game crashes after a while of playing

    PacketNarc replied to matthyit's topic in Support & Bug Reports

    The best recommendation is to Remove all mods, add them back one at a time, play for a bit; until you discover what’s crashing your game. simply dumping a bunch of mods into your folder without knowing how they interact usually ends up like this. You also need to look at your latest.log while the game is loading and spot any errors or incompatibilities that occur during load.
    • January 28
    • 15 replies
  4. PacketNarc

    PacketNarc

    @LexManos Hey bud, ya think maybe I can get a do-over on the Warn-o-matic ?

     

    That bright red bubble is cramping the feng shue on my user profile page :D

     

    I followed and retweeted you if that helps seal the deal !!

    • January 28
  5. PacketNarc

    1.15.2 Forge Error when initializing

    PacketNarc replied to cruelgoblin's topic in Support & Bug Reports

    OP - Check your launch script. You have a syntax error I believe. 1.) Can you please go into your Mods folder and disable optifine ? Just temporarily rename it and add -disable to the filename after .jar. (that way it doesn't load up when Forge starts) That way we can eliminate that as a possible issue. 2.) Your Launch flags are shown in the dump : <// JVM Flags: 10 total; -Xmn128M -Xmx8500M -XX:Heap//> Q: Did you mean to Set Nursery heap and not initial heap ?Initial Heap is -Xms, not -Xmn..... Also default initial heap is 1G, (1024M). Java requires you set these in intervals of 1024K or use the G suffix which is for "gigs" where 1G = 1024M. Java Options Doc I would leave it default unless you have a specific reason to change initial heap. (you can just remove the -Xms / -Xmn flag altogether, which will allow Java to use the 1G initial, or you can manually set it to 2GB which I recommend for your initial Heap since you're running a Mods. Also, you have manually set your Max Heap to 8500Megs or 8.5Gig. This is not a supported config and can cause issues. ::From the Java Doc:: Excerpt "-Xmxsize // This value must be a multiple of 1024 and greater than 2 MB!! e.g. 8500 is not a multiple of 1024. This should be changed to -Xmx8G If you are tuning GC you can mess with -Xmn, but I don't recommend it while troubleshooting it just adds more stuff going on in the JVM and right now we're trying to troubleshoot why you aren't loading. So leave it off while we're testing. Try that change to your startup bat, and see if you get a different outcome.
    • January 27
    • 5 replies
  6. PacketNarc PacketNarc changed their profile photo January 27
  7. PacketNarc

    PacketNarc

    I got warned by #Lex on my first day, for replying with thick sarcasm. So, you could say things are getting pretty serious.

     

    Srsly, If you want personalized, specific help you can PM / DM me.

    • January 27
  8. PacketNarc

    Mods as Microservices

    PacketNarc replied to tuskiomi's topic in General Discussion

    You can’t access the main thread from external to the Java heap. Today anyway. There’s no feasible way to apply Web 2.0 type micro service user interaction concepts, with Minecraft. What you’re describing are just plug-ins external to the server runtime, which is like side loading hooks the same way that was done with vanilla plugins on those other modded servers. This behavior is somewhat successfully accomplished in platforms like Unity with a C# / dotNet API that runs an xml watchdog looking for calls. You can push modification to the running code to some degree, by updating the xml with CRUD processes. This opens the door to the possibility of modifying environmental and player centric behaviors inside the realm. That are isolated to specific entity’s or voxels. There is no provision for being able to do this in Minecraft because those knobs are loaded and registered at launch. Coincidently it’s also why well written Java mods are harder to exploit than the RESTful mods are. less exposure to the runtime / user space. This is why we can’t just push all mods to the client when they log in, and why we have to bounce the server when we add objects. cuz, Java...
    • January 27
    • 1 reply
  9. PacketNarc

    My forge server wont make a mods folder

    PacketNarc replied to blubb's topic in General Discussion

    First things first, You’re running a 5 year old version of Java on the latest bleeding edge Minecraft release. it’s very easy to see you’re on 8u92. Upgrade to at LEAST 8u151. second. There are approximately 2,000 writtten and video tutorials on how to get a simple forge server spun up in under 3-5 minutes. Please go make yourself familiar with how it’s supposed to look when it works right, so that you can better formulate a question or request for help. upgrade your Java and good luck.
    • January 27
    • 45 replies
  • All Activity
  • Home
  • PacketNarc
  • Theme

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