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

DaemonUmbra

Forum Team
 View Profile  See their activity
  • Content Count

    10340
  • Joined

    July 23, 2017
  • Last visited

    Yesterday at 01:47 AM
  • Days Won

    62

 Content Type 

  • All Activity

Profiles

  • Status Updates
  • Status Replies

Forums

  • Topics
  • Posts

Calendar

  • Events

Everything posted by DaemonUmbra

  • Prev
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • Next
  • Page 401 of 409  
  1. DaemonUmbra

    trouble running mods on a server

    DaemonUmbra replied to SilverD4C's topic in Support & Bug Reports

    Are you opped on the server? If not then that is likely to be spawn protection preventing you from building or breaking blocks too close to spawn.
    • May 31, 2018
    • 49 replies
  2. DaemonUmbra

    trouble running mods on a server

    DaemonUmbra replied to SilverD4C's topic in Support & Bug Reports

    Can i get a fresh log?
    • May 31, 2018
    • 49 replies
  3. DaemonUmbra

    Item model doesn't work

    DaemonUmbra replied to kroist's topic in Modder Support

    Problematic code #1: (this includes the ModelRegistry)
    • May 31, 2018
    • 2 replies
  4. DaemonUmbra

    [Solved] [1.12.2] My mod doesn't work at all after exporting it.

    DaemonUmbra replied to SeanOMik's topic in Modder Support

    sourceSets { main { java {srcDirs = ["$projectDir/common"]} resources {srcDirs = ["$projectDir/resources"]} } } should be sourceSets { main { java {srcDirs = ["$projectDir/src/main/java"]} resources {srcDirs = ["$projectDir/src/main/resources"]} } } Gradle seemed to cache this when I corrected it, built, then removed the sourceSets group entirely, and I believe this is the default if not overridden as you did.
    • May 31, 2018
    • 17 replies
  5. DaemonUmbra

    'decompWorkspace' not found in root project

    DaemonUmbra replied to thetwistytie's topic in ForgeGradle

    What are you trying to run decompworkspace for, what are you trying to do?
    • May 31, 2018
    • 4 replies
  6. DaemonUmbra

    Building failed

    DaemonUmbra replied to Rumaruka's topic in ForgeGradle

    • May 31, 2018
    • 3 replies
  7. DaemonUmbra

    trouble running mods on a server

    DaemonUmbra replied to SilverD4C's topic in Support & Bug Reports

    It starts it but it doesn't mean it's launched with the correct options, create a file called launch.bat and put this in it: java -jar forge.jar -Xmx3G -Xms3G pause Note that you will need to replace forge.jar with the name of the forge universal jar. Double click the launch.bat and it will start the server with more RAM, which might make things a bit clearer.
    • May 31, 2018
    • 49 replies
  8. DaemonUmbra

    trouble running mods on a server

    DaemonUmbra replied to SilverD4C's topic in Support & Bug Reports

    Are you starting your server through the command line or are you just double clicking it?
    • May 31, 2018
    • 49 replies
  9. DaemonUmbra

    trouble running mods on a server

    DaemonUmbra replied to SilverD4C's topic in Support & Bug Reports

    Where are you getting your mods?
    • May 31, 2018
    • 49 replies
  10. DaemonUmbra

    trouble running mods on a server

    DaemonUmbra replied to SilverD4C's topic in Support & Bug Reports

    NEI is almost entirely clientside, it shows you the items that your client can use, not necessarily what's on the server. What server jar are you launching, the forge one or the minecraft_server.1.12.2.jar? Edit: I'm stupid and forgot there are no forge info messages in latest.log
    • May 31, 2018
    • 49 replies
  11. DaemonUmbra

    trouble running mods on a server

    DaemonUmbra replied to SilverD4C's topic in Support & Bug Reports

    That log is from a server that is trying to start up when another server(Or another program) is already running using the same port. From the sound of it you have a vanilla server running when your forge server tries to start, so you are joining the vanilla server thinking it's the forge server. Edit: It actually looks like you're starting a vanilla server rather than a forge one anyway
    • May 31, 2018
    • 49 replies
  12. DaemonUmbra

    Unable to launch forge-xx-universal.jar, log+cmd error+java versions included

    DaemonUmbra replied to GojiraCZ's topic in Support & Bug Reports

    You are very welcome
    • May 30, 2018
    • 13 replies
  13. DaemonUmbra

    Unable to launch forge-xx-universal.jar, log+cmd error+java versions included

    DaemonUmbra replied to GojiraCZ's topic in Support & Bug Reports

    In the launch command instead of just using "java"
    • May 30, 2018
    • 13 replies
      • 1
      • Like
  14. DaemonUmbra

    What does this mean?!

    DaemonUmbra replied to MasterComlud's topic in Modder Support

    If you mean the func_##### stuff, that's an obfuscated name from Minecraft itself, it gets changed into a more human-readable name by Forge during development environment setup, provided there is a mapping for it, it gets turned back into the obfuscated name when the mod is compiled so that it correctly references the function in Minecraft's jar file during runtime. Other than that I'm not quite clear on what you're asking. Edit: If you're seeing it in a mod's source (i.e. on GitHub) it means that mod was developed with a version of Forge that did not have a "mapping" to a more readable name for that function.
    • May 30, 2018
    • 2 replies
  15. DaemonUmbra

    Unable to launch forge-xx-universal.jar, log+cmd error+java versions included

    DaemonUmbra replied to GojiraCZ's topic in Support & Bug Reports

    Reading the EAQ helps too, you need to launch forge with Java 8, your PC will try to use the latest installed version (in this case 10) unless you specify by using the full path of the Java executable (Java.exe) of the version you want.
    • May 30, 2018
    • 13 replies
  16. DaemonUmbra

    Extension for language file inside Resource Pack

    DaemonUmbra replied to DTaylorMedia's topic in Texture Packs

    For anyone else finding this through google, it's mentioned in williewillus' 1.13 update primer which also has a link to another modder's lang-to-json conversion utility.
    • May 29, 2018
    • 2 replies
  17. DaemonUmbra

    Server Mods & Plugins

    DaemonUmbra replied to breaddotexe's topic in Support & Bug Reports

    I just tweeted him about it, his site has the wrong version listed as latest, you want 4.1.3 from the "Old Versions" dropdown.
    • May 29, 2018
    • 10 replies
  18. DaemonUmbra

    Server Mods & Plugins

    DaemonUmbra replied to breaddotexe's topic in Support & Bug Reports

    MrCrayfish's furniture mod is broken, trying to access client-only code on a server... in what appears to be a side-check? Edit: This was fixed already! In this commit. Where are you getting the mod?
    • May 29, 2018
    • 10 replies
  19. DaemonUmbra

    Server Download

    DaemonUmbra replied to GabrielGamer66's topic in Support & Bug Reports

    That minecraft server jar is way too small, if that is the one being provided by forge's installer then something is going wrong with the download. Try getting the server from Mojang's official site and replace yours with that one Note: Link will start the download from Mojang's servers and you will need to rename it to match what forge is expecting.
    • May 28, 2018
    • 30 replies
  20. DaemonUmbra

    Server Download

    DaemonUmbra replied to GabrielGamer66's topic in Support & Bug Reports

    Is this on your own computer or are you using a hosting company? Are both the minecraft and forge jar files in the same folder?
    • May 28, 2018
    • 30 replies
  21. DaemonUmbra

    Server Download

    DaemonUmbra replied to GabrielGamer66's topic in Support & Bug Reports

    You are not modifying your minecraft server jar in any way, correct?
    • May 28, 2018
    • 30 replies
  22. DaemonUmbra

    Server Download

    DaemonUmbra replied to GabrielGamer66's topic in Support & Bug Reports

    Just looked a few posts back, try putting the server in a place on your computer that doesn't have accent marks in the path. Maybe rename "Área de Trabalho" to "Area de Trabalho" Nevermind, I assumed this was an issue when I had forgotten one other thing in my test.
    • May 28, 2018
    • 30 replies
  23. DaemonUmbra

    Server Download

    DaemonUmbra replied to GabrielGamer66's topic in Support & Bug Reports

    Hold on a sec, just to verify are we running a server or a client? OCT's instructions are for a client, not a server.
    • May 28, 2018
    • 30 replies
  24. DaemonUmbra

    Server Download

    DaemonUmbra replied to GabrielGamer66's topic in Support & Bug Reports

    You're not renaming the minecraft server jar are you?
    • May 28, 2018
    • 30 replies
  25. DaemonUmbra

    Game Chrashing.

    DaemonUmbra replied to ZambieSlayer182's topic in Support & Bug Reports

    Well you're not far from it, see the "files" button at the top of the forums? That's it.
    • May 28, 2018
    • 12 replies
  • Prev
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • Next
  • Page 401 of 409  
  • All Activity
  • Home
  • DaemonUmbra
  • Theme

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