Skip to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

warjort

Members
  • Joined

  • Last visited

Everything posted by warjort

  1. You are missing context to your question, I don't really understand it. But, where are you sshing to? If it's a windows machine then you just use run.bat, otherwise use run.sh Read the comments in user_jvm_args.txt and run.bat/sh for how to modify those files to set the memory and the nogui
  2. Isn't that "view bobbing"? You can turn it off in the video settings. I don't think forge has anything to turn it off more selectively?
  3. Your log file shows 2 mods getting loaded [25ago2022 19:52:58.980] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\Júlia\Desktop\SERVER\mods\FallingTree-1.18.2-3.5.3.jar [25ago2022 19:52:59.009] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file FallingTree-1.18.2-3.5.3.jar with {fallingtree} mods - versions {3.5.3} [25ago2022 19:52:59.483] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\Júlia\Desktop\SERVER\mods\Towns-and-Towers-1.18.2-1.6.0.jar [25ago2022 19:52:59.484] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file Towns-and-Towers-1.18.2-1.6.0.jar with {t_and_t} mods - versions {1.6} If you have more than that, it is likely that the files don't end with .jar A common problem is that your browser or a browser plugin misidentifies your download and renames it to end with .jar.zip which won't work.
  4. Yes. You also need to load/save it, see the Conduit block. That's why you use the UUID, you can store that in NBT.
  5. One way would be to check if the stacks are the same (same item). Then skip the onRemove() call. You might want a different check if you have custom nbt or something that means just checking the item is not enough. if (!previous.isSame(itemStack)) { onRemoved(previous); }
  6. That's up to you. You can try it. If you think it is not a problem with the terminal, you are going to have to experiment with removing mods anyway since there is nothing in the log about the problem. What I would do is make a new forge server with no mods. Then see if you get the same problem without any mods installed. If you don't then we know it is a problem with one of your mods doing something strange.
  7. just put "powershell" in the search box of the start menu. it's not rocket science. 🙂
  8. I think it is this mod? https://elrol.dev/wiki/server-utilities/features/chest-shops/ but they have a lot of mod projects. 🙂 https://www.curseforge.com/members/arrowsendgaming/projects
  9. I still think this has something to do with your terminal. In your video the last line is at 18:12:46, but it doesn't show a similar message at 18:17.46 - 5 minutes later [25Aug2022 18:12:46.271] [pool-11-thread-1/INFO] [com.github.elrol.elrolsutilities.Main/]: [SU] Saving Shop Registries <!-- snip --> [25Aug2022 18:17:46.270] [pool-11-thread-1/INFO] [com.github.elrol.elrolsutilities.Main/]: [SU] Saving Shop Registries The debug.log stops at this point as well, but I guess you shut it down? It looks like you are using cmd.exe, you could try using powershell (I don't know if that will make a difference?) You can also look at the options for your terminal, e.g. this link shows the issue I referred to before with "quick edit" https://stackoverflow.com/questions/33883530/why-is-my-command-prompt-freezing-on-windows-10 Finally, since you say this problem occurs after 5 minutes, it is suspicious that the "saving shop registries" message occurs 5 minutes apart. I think the mod is elrolutilities but maybe it is a library mod for something else? But I don't understand how this could stop the terminal from display a log message though.
  10. Either the mods are missing are one of your mods wants a difference version to what you have.
  11. You should be able to run it as a background task. I have zero experience of doing this on windows, so I don't know what it involves, sorry.
  12. Please don't post text as images. Post the text properly using the quote button. The next time this happens, type something unique into the terminal, then we can see if it appears in the log.
  13. If you close the console that will shutdown the server. You can see in the log where you typed stuff Did you not see this on your terminal? I don't know what terminal you are using but I know there are issues with some terminals "pausing" if you click on them or press certain keys. This will actually stop the program from running when the terminal buffer gets full. It is waiting for the terminal to print data to the screen, which it doesn't do because it is paused.
  14. You only need a capability if you want to do it for other people's block entities. If its your BlockEntity, you can just store the player's UUID in your block entity You can see how ConduitBlockEntity does this to remember its "destroy target". For actually changing the data in your block entity at placement see something like: AbstractBannerBlock.setPlacedBy()
  15. There is no crash in those logs. Are you starting the server from a terminal and then closing the terminal?
  16. Note: That code above only works if the item stacks are always amount=1 like armor or tools. It doesn't take into account removing part of stacked items.
  17. Why doesn't something like this work? WARNING: This code is not tested, it just shows the idea. And see the comment in the code. @Override public void setStackInSlot(int slot, @NotNull ItemStack stack) { ItemStack previous = getStackInSlot(slot); super.setStackInSlot(slot, stack); // Probably needs some check here to see if "previous" and "stack" are the same item? // i.e. item swap of two different amulets onRemoved(previous); } @Override public @NotNull ItemStack extractItem(int slot, int amount, boolean simulate) { ItemStack extracted = super.extractItem(slot, amount, simulate); if (!simulate) { onRemoved(extracted); } return extracted; } protected void onRemoved(ItemStack itemStack) { // Your code here }
  18. Click "show all versions", then hover over the "i" next to the installer you want. It will show a direct download link.
  19. You would have to downgrade create and all its related mods. Good luck determining which old versions work together. 🙂
  20. Show your hosts file: %windir%\system32\drivers\etc\hosts where %windir% is probably c:\windows
  21. Not your computer as such, something is misconfigured. Show your hosts file: %windir%\system32\drivers\etc\hosts where %windir% is probably c:\windows
  22. @Mod.EventBusSubscriber(modid = ALMTS.MOD_ID) // ** ADD THIS ** public class ModWorldEventsAlt { -- snip -- @SubscribeEvent public static void biomeLoadingEvent(final BiomeLoadingEvent event) { You don't have a subscriber annotation. See the comment above. I assume you don't have other (not shown) code registering that event handler?
  23. ava.lang.NoSuchFieldError: f_13131_ at com.firecontroller1847.levelhearts.gui.IngameGui.redrawAir(IngameGui.java:108) ~[levelhearts-1.18.2-2.4.0.jar%2373!:?] {re:classloading} You are trying to use a mod for 1.18.2 with minecraft 1.18, this won't work. You need to download the 1.18 version (see "Game Version") of that mod: https://www.curseforge.com/minecraft/mc-mods/levelhearts/files/all?filter-game-version=1738749986%3a73250
  24. That 51.68.172.243 is not the mojang download site. When I connect to it, it doesn't even support https and the response to http is "forbidden". As administrator edit your hosts file and remove that line. Then reboot windows and try the installer again.
  25. Can you connect to this: https://launchermeta.mojang.com/mc/game/version_manifest.json On the command line type and post the output here. java --version

Important Information

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

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.