#better-mc-fabric
1 messages · Page 43 of 1
you cant use plugins on modded servers
its a feature of the Frostiful mod
you can easily disable it, via the gamerule or the config file
/gamerule frostiful.doPassiveFreezing false
i mean you technically can, on 1.16.5 at least, and it HAS to be forge.. it's hella buggy though with some mods.
how do you configure the crosshair? I would like to tweak it to make it more see through or just remove the extra bit to the default.
resourcepacks folder
extract the staytrue resourcepack
edit the crosshair image
re-zip it
if the texture doesn't work then add that texture file to whatever is at the top of the resourcepack load order instead
Alright, Ill do that. Thank you
Is colosseum loot worth the trouble of fighting those dumb phantom riding skeletons?
yes
btw pterodactyl is fine. I also use it for all my servers without problems
The Desert Temples generated by additional structures. Does anyone know how to clear them so the mining fatigue goes away?
does max tier spawners from spirit work on forceloaded chunks?
can u add me when you know an answer like to know this aswell but not home currently
it doesnt work @craggy creek
Are there any items that can extract enchantments into books? Or is it only possible to grindstone items?
is there a special way to disable spawners or do you still just have to place torches
wat structure is this
can somebody tell me the name of this structure
and where can u find this usually though
cuz i got protection VIII leather armour from a zombie in here
then im planning to find more
can someone give me answers? i gladly appreciate it ❤️ : )
Is there anyone that can walk me through how to code an auto-restart function into my server?
I'm not around whenever it crashes and my down times are growing frustrating to deal with
you could modify the script
the start.ps1
near the very bottom to have a loop
that just keeps restarting the server when the java executable goes down
I'm not so good with the coding... I had it all worked out on my start.bat before we switched over to start.ps1
is there an example code / placement somewhere I could copy paste?
would be something like
while($true) {
the java run command thing at the bottom of the script idk what it is exactly
}
something to that effect
youll see the java run command at the bottom of the script
just want to wrap that into a while ttue
true*
do note this means the server is gonna infinitely keep starting up
which is probably exactly what you want
so it'll infinitely start up, but only after crashing?
not quite itll also startup after a normal stop
could probably make it so it could check error codes
Oh that's fine too. I try to have 100% uptime
but atm i don’t know the code for that since i dont use powershell to that extent, could whip something up later in the day if youre still interested
gotcha
that should work fine then
Where in the script do I put it? I'm gonna be honest I switched back to a .bat file and deleted my powershell but since the restart command stopped working I figured I might as well learn powershell
how can i get potion of healing 3 ?
all the way at the bottom of the script where it says RunJavaCommand “${ServerRunCommand}”
just wrap that statement into the while true loop
so
while($true) {
RunJavaCommand “…”
}
like so
CheckJavaBitness
Minecraft
Eula
""
"Starting server..."
""
"Minecraft version: ${MinecraftVersion}"
"Modloader: ${ModLoader}"
"Modloader version: ${ModLoaderVersion}"
if (!("${LauncherJarLocation}" -eq "do_not_manually_edit"))
{
"Launcher JAR: ${LauncherJarLocation}"
}
""
"Java args: ${JavaArgs}"
"Java path: ${Java}"
"Run Command: ${Java} ${ServerRunCommand}"
"Java version:"
RunJavaCommand "-version"
""
RunJavaCommand "${ServerRunCommand}"
""
"Exiting..."
PauseScript
That's the last 20 lines in my script
So am I just adding the "while($true){ line before the Run Java command?
yeah
and a closing brace after it
while($true) {
RunJavaCommand blah blah
}
like so
should I do it before the "-version" or the "$[serverRunCommand}"
there's two RunJavaCommand lines at the bottom
okay
testing
so to test it, I should just type /stop and if it doesn't restart it's not working?
-_- the server wouldn't even start I got an exception
oh shit
hold on
it didn't start b/c I didn't stop my actual server so 25565 was locked up
ah
Is there any benefit to using Powershell vice a .bat file?
It definitely looks cooler in the blue and all but I was curious why we made the switch w/ 1.19.2
i think powershell has a lot more capabilities
its easier to create a script in
from the end user’s perspective it really makes no difference
its just for us the coders, much easier to work with and program and add functionality into
makes sense
so I was able to STOP the server after start up... it didn't restart
but, when I hit the X in the top right, it just restarted

now that doesnt sound right unless the server was hung up
on the stop process
you sure it fully fully stopped
hmmm
what's the final line in the stop command?
I got "Stopped IO worker!"
is that not the end?
when it ends it should fully restart in the loop
hmmmmmhmmm
it could be mc hanging on the stop process
/stop
[12:37:00] [Server thread/INFO]: Stopping the server
[12:37:00] [Server thread/INFO]: [STDOUT]: Saving server results
[12:37:00] [Server thread/INFO]: [STDOUT]: Saving config results
[12:37:00] [Server thread/INFO]: Stopping server
[12:37:00] [Server thread/INFO]: Saving players
[12:37:00] [Server thread/INFO]: Saving worlds
[12:37:01] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[12:37:01] [Server thread/INFO]: Saving grave backup data
[12:37:02] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_end
[12:37:02] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/twilightforest:twilight_forest
[12:37:02] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/voidz:void
[12:37:02] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/edenring:edenring
[12:37:02] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/paradise_lost:paradise_lost
[12:37:02] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:the_nether
[12:37:02] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/deeperdarker:otherside
[12:37:02] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/the_bumblezone:the_bumblezone
[12:37:02] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[12:37:02] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[12:37:02] [Server thread/INFO]: ThreadedAnvilChunkStorage (twilight_forest): All chunks are saved
[12:37:02] [Server thread/INFO]: ThreadedAnvilChunkStorage (void): All chunks are saved
[12:37:02] [Server thread/INFO]: ThreadedAnvilChunkStorage (edenring): All chunks are saved
[12:37:02] [Server thread/INFO]: ThreadedAnvilChunkStorage (paradise_lost): All chunks are saved
[12:37:02] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[12:37:02] [Server thread/INFO]: ThreadedAnvilChunkStorage (otherside): All chunks are saved
[12:37:02] [Server thread/INFO]: ThreadedAnvilChunkStorage (the_bumblezone): All chunks are saved
[12:37:02] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[12:37:02] [Server thread/INFO]: closing rrp woof:arrp
[12:37:02] [Server thread/INFO]: Stopping IO worker...
[12:37:02] [Server thread/INFO]: Stopped IO worker!
and not fully ending the java run
hm it does seem the server has closed
this could be that issue of the server being saved but not gracefully stopping
guh
this would require a bit more work
I'm running this on a fresh ps1 w/ no world save or anything for testing
youd have to add a check to manually kill the java app to force it to run again
after its saved i think
well... is there a way to trigger a crash at least? to test that? i'm fine with being able to stop the server
/crash doesn't seem to do anything -_-
i cant think of anything off the top of my head that can cause a server crash
maybe lag it super hard
give it one gb of ram and start spamming entities
itll definitely crash it
oh that should work
gah the RAM is buried in there but I think I found it
ffs
I just spawned 450 chickens
blew them all up with tnt at the same time
not even a lag spike
should I be updating the start.sh file too?
hmm

kinda bummed that I can't crash my own server in my crash test...
I just need "stopped IO worker" to trigger a reset
in which biome does rubby generate ?
Hi guys, does anyone know how i can fix this?
Can you do something against the cold?
having black bars on the horse health
mainly the horse health bar is Black
anyone encounter this?
does anyone know a mod like building gadget for this modpack? I guess its forge not fabric
fur coated chainmail armor or there's a cloak of something something
mod is called frostiful just look it up
yeah ive had it since i started playing not sure why
@oblique sedge yeah it's annoying, and un pleasant. I'm thinking if I can install a gui resource pack it might fix it
Will have to try tmr
yeah ima be honest the freezing damage was an awful addition
what a deal
I've just been setting time to the first day of spring every time winter hits lmao
its cool just maybe a bit much for bettermc, glad to hear its being disabled
sometimes we desync from the server and after 10-20 seconds it fast forwards entire time. I guess a mod is causing this desync, any network mods installed?
its not desync
the server is just laggy
why if i break a tree with a axe it does not automaticalle collect but with pickaxe it does?
Is there a wiki or documentation for BetterMC that walks through all the mods and capabilities?
nop
Hi. Just to confirm, Shaman is active in this pack right? Or was it disabled?
active
automaticalle collect?
the ingame questbook
how to make runed flavolite ?
any tips so get the rented server running better? we have 30 gb now and still loads super slow, its the servers just a scam or what?
to what item can I apply the aerial affinity enchantment?
i just found a weird looking blue thiong that made wither sounds and it dissaperread and reappered and made soulsand particles wth is that
Who are you using?
!tps
Please click this link and follow the guide. If you are using a server host such as Bisect, you may be limited in your options and instead have a checkbox to use Aikar's Flags, which will also work:
https://github.com/etil2jz/etil-minecraft-flags
If you can not launch your server/game after using these flags, then remove the word java from the start. Also, make sure you are using Java 18 on 1.18.2 / 1.19.2 and Java 11 on 1.16.5. These should be downloaded from Adoptium's website.
If lag persists, do the following command ingame:
/spark profiler start --only-ticks-over 50
Then, send the link in this channel.
thanks
does anyone know if any of the added campfires do more damage?
Bump
within the structure theres a husk thats propagating the effect
you must kill him
hes at the lower levels in the throne room
gotta go through a few puzzles or can just tnt the way through
Thank you!
is it possible to tame bears?
from what mod
any idea why torches are freezing during day time in the spring ?
biome maybe ? maple tyga ?
hello, im playing in a LAN World, with a friend and cant breed villigers anyone having the same problem?
!lan
LAN is untested and unreliable, we suggest you set up a Local Hosted Server with the Server Pack of that Modpack and Version.
look i only asked a question
i dont need this !lan stuff, just a reasonable answer ok,
._.
our answer is that LAN doesn't work
🙂
We suggest renting a server from Bisect Hosting:
Approx. $10 - $25 a month depending on what plan you choose. You can also get 25% off with Code LunaPixel.
Go to https://www.bisecthosting.com/LunaPixel and order a plan which fits you. We suggest 1GB per player but nothing lower than 4GB as the server needs at least 3GB to run.
Go to #server-hosting for more Info!
Free Method: (This is hosting on your own PC and it can come with issues that's why we suggest Bisect Hosting)
- Download the serverpack from Curseforge's website
- Right click the start.ps1 file and click Run with Powershell
To join your own server, typelocalhostinto Direct Connect.
This video explains the process https://www.youtube.com/watch?v=wuGUbVbLsDc
The server IP address is your Public IP Address, which can be found by googling my ip address
If other players are unable to join, find a portforwarding guide online.
Why say it hundreds of times when there's a command for it
only two ways to play with friends
lan doesnt work on some modpacks , bettermc does
I don't care
and im playing in lan rn buddy
we offer no support for lan
you're having issues with it so it clearly doesn't work
and villeger problem was mob greifing setting
Ok
you need to selfhost a server for free or buy one from bisect
yeah i wasnt having problems with lan i was just specifying how i was playying
not our problem when your world corrupts then
@meager yacht we had this convo last time please dont get me started i dont want to treat people in a rude manor
look its not corrupt i had mob greifing settings changed which also stops mobs from pickup up items up bruh
exactly

bad vibes ngl
had no choice but to timeout for 24 hours 💯
we are gonna say the same things every time you ask 
💯
any way to teleport to teammates?
/tp
you need cheats enabled
how
op yourself in console
I've looked for 2 hours now is there anywhere else I can find a desert rhino
figured it out
what mod adds the cold and freezing affect?
/gamerule frostiful.doPassiveFreezing false
is the only way to get cheese by trading villagers?
Sorry if this was said somewhere in another channel, but is it possible to use bisect server hosting on an already existing world?
yes
Awesome! Thx!
are the gofish fishing rods have better odds than vanilla?
diamond reinforced rod gives higher chance of fishing crates
someone made a wiki for it on reddit
how do i craft bumblebee chestplate?
check rei
rei?
the list of items to the right when you open your inventory
ooh, it doesnt stand how to craft it there only how to trans it
So, I was wondering, there are 2 files to download from curseforge.. The one which is 75mb is the one clients are supposed to download right?
not quite
clients are supposed to use a launcher
designed to import curseforge modpacks
at launcher or gd launcher
I can't manually copy the mods from the zip?
nope, that's now how it works for modpacks
what about the server though? I use crafty controller...
serverpack is only for the server
you use the serverpack for serverside installation
client side must be done via a launcher
you use a modded launcher for clientside installation
alright, got it.
Just to be clear, for server side, can I manually copy the mods and config folder or do I need to also run that using the scripts..
because I already have a crafty installation setup that manages servers for me
becuz I tried doing this but I got the incompatible modset error
idk what crafty is
if youre getting incompatible modset that means you aren't loading the mods serverside or youre installing something wrong
its basically a front-end wrapper for minecraft server management...
she wrap on my front end

the only change I made to the modset was to add fabric-api
why wouldnt it be..? lol
I'll download the modset again, my computer might be a little quirky today
the serverpack has everything the mods need
all you need to do is either run the start.ps1, or if youre using some custom stuff just make sure you have the fabric-loader
looks like there were some issues with permissions on my server. Everything seems to be working now.
Thanks a lot!
hey
ich wollte fragen ob jemand weiß wie mann kraben züchten kann
is there a config where i can make hoppers faster?
I don't think so
I wanted to ask if anyone knows how to breed crabs
Im trying to manually install the server as power shell doesnt work for me i noticed the files were slightly different in the server pack comopared to the manual installion. I wasnt able to locate a default configs file. Is there a guide specific for the manual server installation of this modpack?
do you have windows 11 by chance?
Ye i do
!windows11
An update to windows introduced a new security feature that prevents powershell files from running on your PC. This is great for your security, but not so great for our server start scripts, which require powershell to run them. Fortunately there is a quick fix for this!
Run powershell as administrator, then run Set-ExecutionPolicy RemoteSigned. Read the prompt and press accept. This will allow us to run scripts.
Next, navigate to your server directory using cd path/to/directory (for example: cd C:\Users\Username\Documents\Minecraft\Server)
You can now run the server by double-clicking the start.ps1 file, or typing .\start.ps1 into the command line while in the directory.
IF THE ABOVE DOES NOT WORK, TRY THIS
Run the command Unblock-File -Path .\start.ps1 in the same powershell window. This will allow the start script to not be blocked by windows, and run freely.
If all else fails, a manual installation should work:
FORGE 1.16.5: https://www.youtube.com/watch?v=bIjisWyxU-8
FORGE 1.18.2: https://www.youtube.com/watch?v=R610M102X0U
FORGE 1.19.2: https://www.youtube.com/watch?v=3HD0ibIpO-A
FABRIC: https://www.youtube.com/watch?v=b2W1Xb7nLKo
Make sure to Install the Server in our ServerPacks so it can use the correct files.
have to use powershell, there's a fix ^
Oh thanks for that
frostiful
Are there any mods that cause level loss btw? I randomly lost 28 levels when i was ordering a chest.
they are stuck like this any ideas how can I fix this?
something to attack in the middle maybe?
hmm they focus on me and don't go down. I tested on creative and it works fine
can anyone help me with the horse health bar bug plssss
its just black bars.. i tried to install another GUI and its still doesnt work
is it resource pack mod order problem? or a resource pack i need to enable?
im using the regular BMC1 v15 if that helps
has anyone else encountered it and managed to fix it?
I need some help setting up my fabric server on a host, I'm trying to run BMC1 1.19.2 and it requires to be ran on poweshell but i cant rly open powershell on a host website
Hey. so i keep crashing after like 2 minutes in my world. it just suddenly starts lagging and then freezes completely and then crashes. anyone know of this?
I posted this in #medieval-mc-fabric as well but does anyone know how to fix the “failed to connect to server internal exception: net.minecraft.class_148: Loading NBT data” error?
is your modpack using latest version?
what do i do when I've died with the fame effect?
bc i havent hatched the dragon yet
Nope, just figured that out haha
Thanks
are you supposed to find naturally generated desert rhinos or is it broken like the shamans?
Hey, after running the windows powershell my fabric loader gets an error message saying "uncaught exception in thread main" and a bunch of RuntimeException errors
Anyone know of an ocean-based game crash?
I have a player that crashes the server every time they log in and they're in the middle of the ocean. Curious if one of the new monuments is bugged or something
wrong version of java
download java 18
okay thank you i'll try it out now :)
!server
We suggest renting a server from Bisect Hosting:
Approx. $10 - $25 a month depending on what plan you choose. You can also get 25% off with Code LunaPixel.
Go to https://www.bisecthosting.com/LunaPixel and order a plan which fits you. We suggest 1GB per player but nothing lower than 4GB as the server needs at least 3GB to run.
Go to #server-hosting for more Info!
Free Method: (This is hosting on your own PC and it can come with issues that's why we suggest Bisect Hosting)
- Download the serverpack from Curseforge's website
- Right click the start.ps1 file and click Run with Powershell
To join your own server, typelocalhostinto Direct Connect.
This video explains the process https://www.youtube.com/watch?v=wuGUbVbLsDc
The server IP address is your Public IP Address, which can be found by googling my ip address
If other players are unable to join, find a portforwarding guide online.
Read quests
you need to hold the ~ key
already got it
!moreinfo
Hello! For us to properly help you with your issue, you will need to answer all 8 questions below. Post the answers in this channel:
1. Have you modified the modpack in any way? If so, what did you do? (Updating/adding/removing mods, changing configs)
2. What launcher, or program, are you using to launch the game? (CurseForge, ATLauncher, etc)
3. What Minecraft version are you playing? (1.18.2, 1.16.5, 1.19.2)
4. What version of the modpack are you playing? (v11, v9, etc)
5. What steps are necessary to reproduce the crash? (Launching the game, exploring the world, etc)
6. Have you ever gotten past the point where the crash happens?
7. Send the crash report file into this channel. Right click the modpack, Open Folder, and navigate to the Crash Reports folder. Drag the newest one here. If there is no crash reports folder, do the same thing with the latest.log file in the logs folder.
8. Did you follow the Performance guide linked in #faq?
hi, for people who makes both modpack, you prefer which, Better MC forge 1.16 or fabric 1.19 (or 1.18 idk which is better) ? (sorry for english im french^^)
my backpack just dissapeared in my inventory
Any idea why this doesn't even work? https://www.youtube.com/watch?v=USL0h4-nul4
Minecraft EASIEST MOB XP FARM Tutorial! 1.19 (Improved Version)
Hey guys, in this video I show you how to make a very easy mob farm without which gives a lot of XP and loot!
This tutorial shows you how to make an EASY XP FARM in Minecraft 1.19, but it works on older versions as well! with this farm you can get tons of xp in Minecraft. This is ...
I get like 1 mob every 2min
Entity limit because of server or something? 🤔
how can I keep a chunk always loaded so the advanced wireless terminal works on other dimensions?
tip just do soul cages with soul crystals
whats the best mob for soul cage for getting xp?
will fabric get dragons?
yes it does
im in creative and cant see it
that doesn't mean they don't exist lmfao
so how do i get them
What mod gives the custom title screen I'm trying to use another mod but I think it's hidden because of the custom title screen
Chorb my bad, 1.19.2 V15 better minecraft fabric. Unsure what's causing the crash the only info I have is "person that crashes server is stuck in the middle of an ocean somewhere" but I'm never on when they're on so it's hard to get more details... just curious if there's a known ocean monument issue or something similar
What quest gives dragons?
what mod
Minecraft essential
We suggest renting a server from Bisect Hosting:
Approx. $10 - $25 a month depending on what plan you choose. You can also get 25% off with Code LunaPixel.
Go to https://www.bisecthosting.com/LunaPixel and order a plan which fits you. We suggest 1GB per player but nothing lower than 4GB as the server needs at least 3GB to run.
Go to #server-hosting for more Info!
Free Method: (This is hosting on your own PC and it can come with issues that's why we suggest Bisect Hosting)
- Download the serverpack from Curseforge's website
- Right click the start.ps1 file and click Run with Powershell
To join your own server, typelocalhostinto Direct Connect.
This video explains the process https://www.youtube.com/watch?v=wuGUbVbLsDc
The server IP address is your Public IP Address, which can be found by googling my ip address
If other players are unable to join, find a portforwarding guide online.
only 2 approved methods of hosting
Oh the mod disables it or something
I've use essenital before for other modpacks and it worked but alright thanks anyways
Damn no need to be a asshole bro I'm just saying I've gotten to work so it not working is news to me
What quest unlocks dragons?
thank you
Hello! not sure if anyone is having the same or is it reported already, anyone server's crashes when entering the nether? 1.9.2 running bettermc v15 & fabric loader 14.14
!moreinfo
Hello! For us to properly help you with your issue, you will need to answer all 8 questions below. Post the answers in this channel:
1. Have you modified the modpack in any way? If so, what did you do? (Updating/adding/removing mods, changing configs)
2. What launcher, or program, are you using to launch the game? (CurseForge, ATLauncher, etc)
3. What Minecraft version are you playing? (1.18.2, 1.16.5, 1.19.2)
4. What version of the modpack are you playing? (v11, v9, etc)
5. What steps are necessary to reproduce the crash? (Launching the game, exploring the world, etc)
6. Have you ever gotten past the point where the crash happens?
7. Send the crash report file into this channel. Right click the modpack, Open Folder, and navigate to the Crash Reports folder. Drag the newest one here. If there is no crash reports folder, do the same thing with the latest.log file in the logs folder.
8. Did you follow the Performance guide linked in #faq?
1: no
2: Curseforge but server is hosted on a linux machine throught docker
3: 1.9.2
4: v15
5: Make a nether portal and enter throught it
6: no
7: attached
8: yes, applied
no sign of crashing
just the server stopped
yes, i saw that too, but i dunno whats causing it throught, i have the max_time: -1 on the flags to avoid watchdog stopping the server
tried to reproduce it again and got this
[21:14:51] [Server thread/ERROR]: Attempting to insert point outside of OctTree boundary
[21:15:13] [Server thread/ERROR]: Attempting to insert point outside of OctTree boundary
[21:16:44] [Server thread/ERROR]: Attempting to insert point outside of OctTree boundary
[21:17:09] [Server thread/ERROR]: Attempting to insert point outside of OctTree boundary
[21:17:09] [Server thread/ERROR]: Attempting to insert point outside of OctTree boundary
[21:17:38] [Server thread/INFO]: Saving grave backup data
[21:20:54] [Server thread/ERROR]: Attempting to insert point outside of OctTree boundary
[21:21:23] [spark-asyncsampler-worker-thread/WARN]: Timed out waiting for world statistics
after this, it stops the server
anyone get 'create optimised' workgin wtih better mc and got a pack or config setup for it.. (trying nto to have to fish through each mod in the packs and remove duplicating things liek jet/vs/rei and so on and use better mc as the base jsut want create in there and server optimisations
all of our modpacks are fully optimized
but . i want create and not sure if tis compatable.. 🙂
just add it
was running atm8 but its a lag machine .
and doesnt rei conflit with jei
this one specifically "https://beta.curseforge.com/minecraft/modpacks/create-optimized-fabric/files/4400048"
yep
just add the create mod + addons
thats it
create is jsut awesome and shoudl be std in mc imo lol
was hoping not to have to sort through allthe addons in that pack to find what doenst work with this pack lol
and setup a proper itzg/docker setup and figure the right memory requirements
the problem is pushign updates becomes a pain unless it sutoupdates with itzj
how much memory should it need fora 10 player or less server
10gb
Holey crap
ATM8 only needed 6
it had 360 mods and forge absed
is there a chunk pregenerator installed ? so server can pregen world when no one is on ?)
you need to add the Chunky mod yourself
never heard of that one
ok
sorry i can manage a docker container but am trying to make it as much hands free as possible .. im still in shock as 10gb is more than my nas has to spare for a mc server (meadia server is the other bit) but maching together modpacks always ends badly for me
so im trying to learn new tricks and rules
services:
mc:
image: ${IMAGE:-itzg/minecraft-server}
environment:
EULA: true
TYPE: FABRIC
OVERRIDE_SERVER_PROPERTIES: true
MAX_TICK_TIME: 120000
MAX_WORLD_SIZE: 29999984
SPAWN_PROTECTION: 16
SYNC_CHUNK_WRITES: true
ALLOW_FLIGHT: TRUE
VIEW_DISTANCE: 12
MAX_PLAYERS: 10
PVP: TRUE
GUI: FALSE
USE_AKIR_FLAGS: TRUE
TZ: America/Vancouver
TUNE_VIRTUALIZED: TRUE
INIT_MEMORY: 4G
MAX_MEMORY: 8G
# JVM_XX_OPTS: -XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=20 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=70 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1
OPS: ####
RCON_PASSWORD: ####
RCON_PORT: 25575
VANILLATWEAKS_SHARECODE : 0VZdIj # one player sleep, co-ordshud, no enderman grief ,and more heads, and cauldronconcrete , and nether co-ords
REMOVE_OLD_VANILLATWEAKS: "TRUE"
LEVEL_NAME: Fabric1
LEVEL_SEED: ####
MOTD: Fabric1 Bettermc+createopt- Family and Friends Create things
DIFFICULTY: HARD
ports:
- 25565:25565
volumes:
- /Volume1/public/DockerStuff/Minecraft/MCFabric1: /data
- /etc/timezone: /etc/timezone
restart: unless-stopped
thats wehre i am at now
however it sdoesnt ahve the start. sh script bit and doesnt seem to ahve auto update
also i copied files from both modpacks over and deleeted the ones that were the same ' but older' duplicates apparently they both use rei so should be good
https://gist.github.com/dselans/f318d69817898b30c3dba03994c42680 this might be of help, i used to have problems while working with modpaks using docker and i got it sorted out mounting the directory modpaks (while placing the bettermc-serverpack in it) and then running the compose, it should pull everything and work without issues
as reference
so 6g is enough not 10 g .. and i am trying to combine 2 packs not jsut one .. can i jsut add a second pack name ?
Yes, I don't think you should have a problem, you can also check the original post about this container and look for the line generic_pack, it should explain everything you could do with this environment flag
would be nice if people uploaded their config yaml files for their mc installs as a option on that itzg github .. some do .. i am nto sure how .
problem is that the create one im trying to stuff in . has a diff zip structure and things. so trying to figure hwo to add it properly
There's a folder called example in the original post, it has a bunch of docker compose examples for different modpaks or setups, helped me alot
LEVEL_NAME: Fabric1
LEVEL_SEED: -2599912812
MOTD: Fabric1 Bettermc+createopt- Family and Friends Create things
DIFFICULTY: HARD
VERSION: "1.19"
FABRIC_LOADER_VERSION: 0.14.14
GENERIC_PACKS: "Better+MC+FABRIC+Server+Pack+1.19.2+v15,Create+Optimized+[Fabric]-v0.5.0i"
GENERIC_PACKS_PREFIX=/modpacks/
GENERIC_PACKS_SUFFIX:.zip
REMOVE_OLD_MODS: TRUE
# GENERIC_PACK: "/packs/bmc-v5.zip"
VANILLATWEAKS_SHARECODE : 0VZdIj # one player sleep, co-ordshud, no enderman grief ,and more heads, and cauldronconcrete , and nether co-ords
REMOVE_OLD_VANILLATWEAKS: "TRUE"
ports:
- 25565:25565 #game
- 25575:25575 #rcon for backups
volumes:
- /Volume1/public/DockerStuff/Minecraft/MCFabric1: /data:rw
- /Volume1/public/DockerStuff/Minecraft/Fabricpacks : /modpacks:ro
- /etc/timezone: /etc/timezone
restart: unless-stopped
just setting up a better mc fabric server, any good recommendations for chunk pregeneration?
Chunky mod
and i think bette rmc has a vein miner
Farmer Villagers are not working. How can I fix them?
also couldn't figure out how to set min and max RAM requirements anywhere, where could I configure those?
!ramargs
- Double click the start.ps1 instead of opening with Powershell
- On line 16, where it says $JavaArgs, you can add your args there.
-Xmx8G will set your maximum memory usage to 8 gigabytes.
Update the modpack
you are on a very old version
I have the latest version
send a screenshot from curseforge
im on linux
i just got it on ATLauncher
same thing with start.sh
ok in what way are they "not working"
Well they dont crop or harvest
Ok
is there anything to do in the aether?
no
xd
elytra, I dont suggest exploring that dimension without elytra
ran the server a couple times no issues, changed server.properties port and motd and now I get this on every launch
not sure whats unstable, the log file isn't much help either
just before that I also get
[main/WARN]: Error loading class: org/spongepowered/asm/synthetic/args/Args$4 (java.lang.ClassNotFoundException: org/spongepowered/asm/synthetic/args/Args$4)
org.objectweb.asm.tree.analysis.AnalyzerException: Error at instruction 114: Cannot invoke "org.spongepowered.asm.mixin.transformer.ClassInfo.hasSuperClass(org.spongepowered.asm.mixin.transformer.ClassInfo)" because the return value of "org.spongepowered.asm.mixin.transformer.ClassInfo.forType(org.objectweb.asm.Type, org.spongepowered.asm.mixin.transformer.ClassInfo$TypeLookup)" is null
[mc-image-helper] 15:56:29.351 ERROR : 'get' command failed. Version is 1.25.3
java.net.UnknownHostException: launchermeta.mojang.com: Temporary failure in name resolution```
this mean mojang is down ?
were spawners tuned in v15 ?
made a triple vindicator spawner in v13, had zero issues.
in v15 its causing insane server lag, so ive lit up 2 of the spawners for the time being to prevent it.
Curious ! :)
Where do i find "gilded netherite fragments"?
can i take the enchantments of an item?
Yes, but not without destroying said item.
can anyone help me with the horse health bar bug plssss its just black bars.. i tried to install another GUI and its still doesnt work
is it resource pack mod order problem? or a resource pack i need to enable? im using the regular BMC1 v15 if that helps
has anyone else encountered it and managed to fix it?
Can someone please help me the mount HP bar is black
it only occurs when im in HC mode
how did you install the modpack step by step
legit, just installed the BMC3 v14.5 and press play
how did you install the modpack step by step
v14.5 is old
you need to actually answer my question or its impossible for me to help you
i even tried it on v15
how did you install the modpack step by step
installed it using the curseforge, sorry im a bit out of my depth when it comes to mod install and stuff ;/
curseforge launcher?
!alternates
We suggest using one of these two launchers for several reasons. They are considered far better than any other launcher. When installing a modpack on either launcher, do it through the Curseforge tab within GDLauncher/ATLauncher. You can transfer your Curseforge save to GDL/ATL. Because you are downloading the exact same files, you'll still be able to join the same servers and worlds.
ATLauncher - Slightly harder to use, works offline, fast and efficient, has more features. Can be downloaded from https://atlauncher.com/downloads
GDLauncher - Easy to use, works offline, does all the work for you, very simplistic and sleek design but it feels bloated to make it look nice and people do have issues with it. Can be downloaded from https://gdlauncher.com/en/download/
copy the saves folder
alright
thanks for helping me out:) was pulling my hair out trying to figure it
hope a diff launcher will solve it
thank you
does anyone know how i can turn the colour of cloud or sky back to normal? or is it a biome thing?
im using complementary shaders, i always used this shader but never encountered this
remove the nicer skies mod
man your a lifesaver
How can i decrease the amount of structures that spawn on my server?
errors on booting my better mc server that bother my ocd... what happend here
allso ther is a box when i launch top right that is made of all boxes instead of text.. has red stuff so might be important.. have reinstalled twice. still aslo trying to get optimised create for fabric workgin with this. but its not auto installed yet
whats the issue
i figured out what was happening with the black bar, there is a compatibility with armour and the health bar with mounts or horses this might be a bug for something in the next patch
i have this bug too, its so annoying
yeah when ur not wearing armour the health bar for horses is ok but when u equip it its bugs out
try removing the better mount hud mod
does it only affect horses or does it affect mounts for you?
all mounts
ohhh noo
try removing the better mount hud mod
yeah ill give it a try
i have donkeys and mules in my world and the black bar is there for them too
will do
is it something to do with the mod or the connection between other mods im curious
lemme know if it works
[19/02/2023 13:10:16 PM] [Render thread/ERROR] Error from mod 'extended_armor_bars'
think it this mod @meager yacht
report it on their github
alright
can i get some assistance here
i added some mods (origins, origins++, pehkui, playerex) to my shockbyte better mc server and this is what it comes up with
dawg just play #medieval-mc-fabric
I really need some help 
you need the modpack installed clientside too
not just on the server
thank u!
We suggest using one of these two launchers for several reasons. They are considered far better than any other launcher. When installing a modpack on either launcher, do it through the Curseforge tab within GDLauncher/ATLauncher. You can transfer your Curseforge save to GDL/ATL. Because you are downloading the exact same files, you'll still be able to join the same servers and worlds.
ATLauncher - Slightly harder to use, works offline, fast and efficient, has more features. Can be downloaded from https://atlauncher.com/downloads
GDLauncher - Easy to use, works offline, does all the work for you, very simplistic and sleek design but it feels bloated to make it look nice and people do have issues with it. Can be downloaded from https://gdlauncher.com/en/download/
I tried it now and now it says this 
trying to install better mc mod on atl...
if thats happenign on the server too . then that would be why some stuff is broken
always my server crash when I stay or in voidZ's portal. also never load void dimension, and after that I can't join my server until delete my own player data.
【enviroment】
bmc 1.19.2 v15
openJDK 17.0.4
【log】
[15:11:19] [Server thread/INFO]: [bclib] Checking class_2339{x=544, y=74, z=801} for Portal
[15:11:20] [Server thread/ERROR]: Encountered an unexpected exception
net.minecraft.class_148: Colliding entity with block
at net.minecraft.server.MinecraftServer.method_3813(MinecraftServer.java:879) ~[server-intermediary.jar:?]
at net.minecraft.class_3176.method_3813(class_3176.java:289) ~[server-intermediary.jar:?]
at net.minecraft.server.MinecraftServer.method_3748(MinecraftServer.java:819) ~[server-intermediary.jar:?]
at net.minecraft.server.MinecraftServer.method_29741(MinecraftServer.java:665) ~[server-intermediary.jar:?]
at net.minecraft.server.MinecraftServer.method_29739(MinecraftServer.java:257) ~[server-intermediary.jar:?]
at java.lang.Thread.run(Thread.java:833) [?:?]
Caused by: java.lang.NoSuchMethodError: 'java.util.Optional org.betterx.bclib.api.v2.poi.BCLPoiType.findClosest(net.minecraft.class_3218, net.minecraft.class_2338, int)'
at org.betterx.betterend.rituals.EternalRitual.findClosestPoi(EternalRitual.java:783) ~[better-end-2.1.3.jar:?]
at org.betterx.betterend.rituals.EternalRitual.findBlockPos(EternalRitual.java:733) ~[better-end-2.1.3.jar:?]
at org.betterx.betterend.blocks.EndPortalBlock.findExitPos(EndPortalBlock.java:169) ~[better-end-2.1.3.jar:?]
at org.betterx.betterend.blocks.EndPortalBlock.method_9548(EndPortalBlock.java:115) ~[better-end-2.1.3.jar:?]
at net.minecraft.class_4970$class_4971.method_26178(class_4970.java:952) ~[server-intermediary.jar:?]
at net.minecraft.class_1297.method_5852(class_1297.java:1059) ~[server-intermediary.jar:?]
at net.minecraft.class_1297.method_36974(class_1297.java:783) ~[server-intermediary.jar:?]
at net.minecraft.class_1297.method_5784(class_1297.java:752) ~[server-intermediary.jar:?]
at net.minecraft.class_1309.method_26318(class_1309.java:2282) ~[server-intermediary.jar:?]
at net.minecraft.class_1309.method_6091(class_1309.java:2227) ~[server-intermediary.jar:?]
at net.minecraft.class_1309.method_6007(class_1309.java:2680) ~[server-intermediary.jar:?]
at net.minecraft.class_1308.method_6007(class_1308.java:553) ~[server-intermediary.jar:?]
at net.minecraft.class_1588.method_6007(class_1588.java:44) ~[server-intermediary.jar:?]
at net.minecraft.class_1560.method_6007(class_1560.java:257) ~[server-intermediary.jar:?]
at net.minecraft.class_1309.method_5773(class_1309.java:2385) ~[server-intermediary.jar:?]
at net.minecraft.class_1308.method_5773(class_1308.java:353) ~[server-intermediary.jar:?]
at net.minecraft.class_3218.method_18762(class_3218.java:712) ~[server-intermediary.jar:?]
at net.minecraft.class_1937.method_18472(class_1937.java:466) ~[server-intermediary.jar:?]
at net.minecraft.class_3218.method_31420(class_3218.java:371) ~[server-intermediary.jar:?]
at net.minecraft.class_5574.method_31791(class_5574.java:54) ~[server-intermediary.jar:?]
at net.minecraft.class_3218.method_18765(class_3218.java:339) ~[server-intermediary.jar:?]
at net.minecraft.server.MinecraftServer.method_3813(MinecraftServer.java:875) ~[server-intermediary.jar:?]
... 5 more
[15:11:20] [Server thread/ERROR]: This crash report has been saved to: E:\BMC1.19.2_15_F\.\crash-reports\crash-2023-02-19_15.11.20-server.txt
[15:11:20] [Server thread/INFO]: [STDOUT]: Saving server results
[15:11:20] [Server thread/INFO]: [STDOUT]: Saving config results
[15:11:20] [Server thread/INFO]: Stopping server
[15:11:20] [Server thread/INFO]: Saving players```
you need to install ATLauncher
packs tab
curseforge tab on the left
search BMC1 Fabric
install
click ok on opted out mods
open all
then instances tab, launch bmc1
!moreinfo
Hello! For us to properly help you with your issue, you will need to answer all 8 questions below. Post the answers in this channel:
1. Have you modified the modpack in any way? If so, what did you do? (Updating/adding/removing mods, changing configs)
2. What launcher, or program, are you using to launch the game? (CurseForge, ATLauncher, etc)
3. What Minecraft version are you playing? (1.18.2, 1.16.5, 1.19.2)
4. What version of the modpack are you playing? (v11, v9, etc)
5. What steps are necessary to reproduce the crash? (Launching the game, exploring the world, etc)
6. Have you ever gotten past the point where the crash happens?
7. Send the crash report file into this channel. Right click the modpack, Open Folder, and navigate to the Crash Reports folder. Drag the newest one here. If there is no crash reports folder, do the same thing with the latest.log file in the logs folder.
8. Did you follow the Performance guide linked in #faq?
- changed config, but its seems small (e.x. turn on blackboard color mode in supplementaries)
- only curseforge
- bmc 1.19.2
- v15
- stay voidZ's portal (see screenshot) or into it
- no. always crash especially when I go into portal
7.here - yes.
thats not a voidZ portal
thats a ruined flavolite portal from End Remastered
this appears to be a Sodium / Indium issue
It has the same error despite opting out
and did manually
'despite opting out'?
uh sorry. I confused.
so, what should I do?
just avoid that area of the end
you meaning it can't work at now version?
Runs really well compared to forge im getting like 100 more fps 👍
But I didn’t know the backpack mod from forge was removed so I might’ve lost stuff but I’m not sure.
the top row is the version of the mod pack the server is running on, the middle image is the version of mod pack that i believe matches it, the bottom is the error i’m getting when i try to connect to the server 😓
"backpack mod from forge..."?
Jesus Christ why are you on v6
that is extremely old and unstable
you need to be on the latest version of the modpack
Is there not a backpack mod on the forge install? I’m confused what the issue is with my statement.
that was just one of the preloaded options from the hosting site
they don’t let you choose the version
there's a backpack mod in all of our modpacks
then use a different host
or bother their support team
it is impossible for me to offer support for a 6 month old version of the modpack
you are about 20 versions behind including minor versions, for example "v12.5"
Ohh well I had the backpack from my save in forge install but it was gone when I transferred the save to fabric install but I’m not really concerned
transferring a world between mod loaders is a bad idea
there will be large areas missing thousands of blocks in already generated chunks
Is there another way
another way to..?
Well I made significant progress when using forge but I enjoy the added performance boost using fabric. You said it isn’t a good idea to transfer so I’m asking if theres a way that isn’t going to pose a risk.
the way that doesn't pose a risk is making a new world ^_^
So, I have a question. Is there a way to adjust the automatic backup timer on a Fabric minecraft server running the BMC 1 modpack? It does it every 30 minutes and I was wondering if there was a way to extend it or change it to where it backs up when a player logs off?
update the modpack
you are on an old version
you always need to be on the latest version of the modpack
But, it was doing this even when it was the most recent version of the modpack. Is there a file that was added to the modpack within the past month?
the most recent version of the modpack doesn't even have ftb backups
so you aren't on the latest version
ah, so there aren't autobackups on the new version then.
I guess my next question is, what if the server just randomly shuts down? I'm running this through an oracle cloud vm and I have network issues on the PC I play on quite frequently and the VM usually terminates the server without necessarily it going through the proper shutdown process.
like, I know that it saves when the stop command is sent to the server, but I can't be certain that the proper save process happens because I can't witness it happen
best you can do is roll an auto save and trust it
when the stop command goes through it always saves chunks
it should never fail that
and even if it doesn’t properly save it will never corrupt your world
because minecraft saves everything at once, or nothing at all
if it doesnt save right it just starts off back where the server was last shutdown
And this is on the new version?
this is on all minecraft versions
vanilla or modded
unless a mod changes saving functionality in an extreme way, which we dont use in any modpacks, all minecraft servers save this way
would I be able to use the modpack on multimc?
What makes it different from curseforge
We suggest using one of these two launchers for several reasons. They are considered far better than any other launcher. When installing a modpack on either launcher, do it through the Curseforge tab within GDLauncher/ATLauncher. You can transfer your Curseforge save to GDL/ATL. Because you are downloading the exact same files, you'll still be able to join the same servers and worlds.
ATLauncher - Slightly harder to use, works offline, fast and efficient, has more features. Can be downloaded from https://atlauncher.com/downloads
GDLauncher - Easy to use, works offline, does all the work for you, very simplistic and sleek design but it feels bloated to make it look nice and people do have issues with it. Can be downloaded from https://gdlauncher.com/en/download/
wrong channel
It says im using the wrong version even though they are the same?
what happens when you join
srry
okay im using atlauncher it told me theres some mods that have to be installed manually no biggie
Every time I start the start.ps1 file with powershell it just closes almost instantly with windows 10. this is after I tried the TSing steps in the readme.txt and it still won't work. Anyone have any ideas?
can someone help me ?
is there a way of making a custom mob farm of our own choice, meaning is there a way of changing spawner types if not what are the alternatives?
Conjuring mod
hey not sure where to ask for help but i installed a 1.19.2 better mc server pack through curseforge, read through readme and installed it but booting up it tells me it cant bind the port as perhaps another server is running and i checked my firewall but that port I entered is not used in any case
Did you port forward?
not yet but it shouldnt stop my server from starting it should only stop other players from connecting
unless i need to manually add an exception for the server in my firewall
its impossible to tell why your server isnt starting when you're showing about half the console output in the screenshot
lol
Try port 25565
i changed the port now its stuck here, weird
Hi! Just wanna ask, what's the mod for seeing your player head beside the name when chatting?
I'm trying out Versatile and it doesn't have that feature
That is the end. Try to connect
Chat Heads. It is a client side one
It works, I assume I should've went with the localhost IP instead of using my actual public IP
Wasnt a port issue after all
I see. Thank you very much!
Thanks for your help Kintosh and Chorb ❤️
Enjoy your play time
Hey guys
I am having issues with FPS
Normally I get 500 to 400 fps
Without the pack
But yea
I was playing
And
I keep getting fps drops
Is there a mod I can add to help fix that
#faq performance guide
oh
all of our modpacks are fully optimized
Great work on that guide btw. I was so stoked when I saw it when I launched the latest version.
any lightweight modpacks like this// my laptop died running this...allocated 6gb ram and have 1050 and i5 10th gen
#faq performance guide
the sequel is our lightest modpack
its just too heavy for me ig
any other this type for lightweight modpacks// fabric or quilt only
i already answered your question and gave solutions to your issue
oo sorry didnt read
lost connection: You do not have No Chat Reports, and this server is configured to require it on client!
you need the same modpack installed client and server side
better mc fabric can be used together with velocity proxy
My Server keeps crashing when I am entering another dimension. I have a shockbyte 6gb ram Server and I even reseted the whole Server and it still crashes.
!moreinfo
Hello! For us to properly help you with your issue, you will need to answer all 8 questions below. Post the answers in this channel:
1. Have you modified the modpack in any way? If so, what did you do? (Updating/adding/removing mods, changing configs)
2. What launcher, or program, are you using to launch the game? (CurseForge, ATLauncher, etc)
3. What Minecraft version are you playing? (1.18.2, 1.16.5, 1.19.2)
4. What version of the modpack are you playing? (v11, v9, etc)
5. What steps are necessary to reproduce the crash? (Launching the game, exploring the world, etc)
6. Have you ever gotten past the point where the crash happens?
7. Send the crash report file into this channel. Right click the modpack, Open Folder, and navigate to the Crash Reports folder. Drag the newest one here. If there is no crash reports folder, do the same thing with the latest.log file in the logs folder.
8. Did you follow the Performance guide linked in #faq?
Btw since you guys told me about the server startup parameters. Are there also java start parameters for the client that I should use?
-
Added Simple Voicechat and Chunky
-
CurseForge
-
1.19.2
-
v15
-
Entering a dimension
-
Sometimes after a crash the dimension loaded normally
-
yeah I followed that
Hey there! I am getting the following error:
It all happened after my friend went to a village and got this achievement: [Yee hawnted]
The server froze completely.
I'm using the latest V15 fabric version of the modpack. Edited menu and removed bhmenu
Any ideas?
I'll remove guard-villagers-fabric-1.19.2-1.0.16.jar temporarily to see if that'll fix it
Seems like the error is coming from the mod itself - https://github.com/mrsterner/GuardVillagers/issues/59
Anyone knows if there is a way to split enchantment books with multiple enchants? Or just remove one enchant?
Which mod adds the bundle to this modpack?
will it work if i add these mods to better mc fabric? (1.19.2)
my server keeps crashiung because a chunk is not generated in bumblezone
anyone knows a fix?
can someone join vc and help me out rq
hey anyone know what mod adds the giant end temples?
can u join vc for a few secs
not really, sorry

See this link #better-mc-fabric message
Disabled biome makeover’s moth from spawning in the Bumblezone structure
Or update Bumblezone where I removed the moth from the tag in the mod itself.
At least until biome makeover fixes their moth and releases the fix https://github.com/Lemonszz/Biome-Makeover/pull/202
any response?
do i add these in world/dimensions/the_bumblezone/
Will the fabric better mc add create mod (fabric)
no.
the world save file's datapack folder. Just saves/worldname/datapacks
Anyways what's best low end laptop settings for the game
or just update bumblezone as I removed the moth from the tag file within my mod which is what the datapack does anyway
yes because you don't have any datapacks on yet
its a server
this is a datapack. You add it
btw
game will read the datapack file and run it automatically
and then you're done. Run the game and the Moth should stop trying to spawn
Anyone?
thank you its fixed
also my backups stopped at 10feb how do i automaticly make them
we removed ftb backups
from the latest versions of the mod
you can reinstall it if you want but its buggy
just make em manually
ahh i see if i want a manual one do i just copy world folder only?
okay thanks
?
Hello, what exactly is BetterX world type, and does it include The Biomes You'll Go?
does goblin traders restock?
is there a way to make trees also drop wood with axe with enchantment collection?
if i mine with pickaxe it goes into inventory with collection but with axe it does not
how do end goblin traders spawn?
it keeps crashing can anyone help?
same here
Anyone else crash in the Bumblezone?
no
they spawn in end and nether, never had one spawn in anywhere else yet but could be possible
scroll up like a tiny bit
here
I can't seem to open containers from the Handcrafted mod (desks, nightstands, counters, etc). Is there a way to fix this?
tyty
I wasn't fast enough to make a screenshot but had any of you also a red border message in the load screen on the top right that did only contain rectangles?
I got this closely everytime, can not remember not seeing those.
anyone knows how to get eye seeds?
its a random splash
wrong way to install
download a modpack launcher
like gd or at
and download the modpack from there
with the normal launcher can you do that?
nope
where can i find help I installed the modpack and i clicked play and when i was playing it was very glitchy like the screen was moving
how do you get cheese mass?
This is a video of my screen being glitchy any fixes?
update your graphics card
this looks to be a gpu issue
update the drivers
How do I uodate my graphics card?
My Server keeps crashing because of ram overload even tho I have 6gb ram on Shockbyte. I am alone on the server
these do not download with atl launcher and soemtiems on curseforge launcher
downloading manually fixes it but then i had to do the same on teh server..
shockbyte sucks, with 10gb of ram I couldn't open underwater chests without crashes.
Setting up a server for a few friends to play on. but we seem to all get this pop up. any help is appreciated
BisectHosting is a fkn scam, 80$ for a server that crashes every 15 min, world not loading in so we can fly around.. 80$ its alot for a shit server
why can a zombie not convert a villager into a zombie villager 🥴
ionetty errors are often related to firewall settings or antivirus - make sure the ports are open properly and you network drivers are good..
i had a bad router that was causing this..
nvm its because it was in claimed land
I’m still having the same problem even after updating my computer. I tried with my own mod pack and everything looks fine but its this better mc mod pack that only does this….
why is this
elo, my game crashed and now it wont go pass mojang logo... anybody know a fix on this?
What do you mean? There is still an anvil
Just like vanilla
And i have all the ingredients
I cant make a backpack either
With all the ingredients
Lol
I keep crashing after 15 to 20 mins I allocated 8gs of ram Anyone help me out?
whats the best way to find nether ruby
!tps
Please click this link and follow the guide. If you are using a server host such as Bisect, you may be limited in your options and instead have a checkbox to use Aikar's Flags, which will also work:
https://github.com/etil2jz/etil-minecraft-flags
If you can not launch your server/game after using these flags, then remove the word java from the start. Also, make sure you are using Java 18 on 1.18.2 / 1.19.2 and Java 11 on 1.16.5. These should be downloaded from Adoptium's website.
If lag persists, do the following command ingame:
/spark profiler start --only-ticks-over 50
Then, send the link in this channel.
!moreinfo
Hello! For us to properly help you with your issue, you will need to answer all 8 questions below. Post the answers in this channel:
1. Have you modified the modpack in any way? If so, what did you do? (Updating/adding/removing mods, changing configs)
2. What launcher, or program, are you using to launch the game? (CurseForge, ATLauncher, etc)
3. What Minecraft version are you playing? (1.18.2, 1.16.5, 1.19.2)
4. What version of the modpack are you playing? (v11, v9, etc)
5. What steps are necessary to reproduce the crash? (Launching the game, exploring the world, etc)
6. Have you ever gotten past the point where the crash happens?
7. Send the crash report file into this channel. Right click the modpack, Open Folder, and navigate to the Crash Reports folder. Drag the newest one here. If there is no crash reports folder, do the same thing with the latest.log file in the logs folder.
8. Did you follow the Performance guide linked in #faq?
!moreinfo
Hello! For us to properly help you with your issue, you will need to answer all 8 questions below. Post the answers in this channel:
1. Have you modified the modpack in any way? If so, what did you do? (Updating/adding/removing mods, changing configs)
2. What launcher, or program, are you using to launch the game? (CurseForge, ATLauncher, etc)
3. What Minecraft version are you playing? (1.18.2, 1.16.5, 1.19.2)
4. What version of the modpack are you playing? (v11, v9, etc)
5. What steps are necessary to reproduce the crash? (Launching the game, exploring the world, etc)
6. Have you ever gotten past the point where the crash happens?
7. Send the crash report file into this channel. Right click the modpack, Open Folder, and navigate to the Crash Reports folder. Drag the newest one here. If there is no crash reports folder, do the same thing with the latest.log file in the logs folder.
8. Did you follow the Performance guide linked in #faq?
no
just play medieval mc
hover over the item
no
ignore it
i cant figure out how to add medieval mc to my server i just bough on shockbyte was hoping someone could walk me through it
🥲
Please just read it
it explains everything
you need to click "Open all" and just let it install
it isn't hard
you dont have the modpack installed serverside
bisect has 24/7 fast responding support. ask for support there or here instead of whining
ignore it
!moreinfo
Hello! For us to properly help you with your issue, you will need to answer all 8 questions below. Post the answers in this channel:
1. Have you modified the modpack in any way? If so, what did you do? (Updating/adding/removing mods, changing configs)
2. What launcher, or program, are you using to launch the game? (CurseForge, ATLauncher, etc)
3. What Minecraft version are you playing? (1.18.2, 1.16.5, 1.19.2)
4. What version of the modpack are you playing? (v11, v9, etc)
5. What steps are necessary to reproduce the crash? (Launching the game, exploring the world, etc)
6. Have you ever gotten past the point where the crash happens?
7. Send the crash report file into this channel. Right click the modpack, Open Folder, and navigate to the Crash Reports folder. Drag the newest one here. If there is no crash reports folder, do the same thing with the latest.log file in the logs folder.
8. Did you follow the Performance guide linked in #faq?
!moreinfo
Hello! For us to properly help you with your issue, you will need to answer all 8 questions below. Post the answers in this channel:
1. Have you modified the modpack in any way? If so, what did you do? (Updating/adding/removing mods, changing configs)
2. What launcher, or program, are you using to launch the game? (CurseForge, ATLauncher, etc)
3. What Minecraft version are you playing? (1.18.2, 1.16.5, 1.19.2)
4. What version of the modpack are you playing? (v11, v9, etc)
5. What steps are necessary to reproduce the crash? (Launching the game, exploring the world, etc)
6. Have you ever gotten past the point where the crash happens?
7. Send the crash report file into this channel. Right click the modpack, Open Folder, and navigate to the Crash Reports folder. Drag the newest one here. If there is no crash reports folder, do the same thing with the latest.log file in the logs folder.
8. Did you follow the Performance guide linked in #faq?
I would say that's completely irrelevant since the mod itself is rigged, I have sent you the github repo issue which is still to be reviewed.
what modpack version are you on
go complain to shockbyte support
they take 60hours to respond lol
then describe your issue here
this is my issue lol
idk how to install it onto my server
theres probably an auto installer on the dashboard
i payed an extra $15 for them to install it since i have work in 4hours i wanted to play with my kid for a bit but they wont even respond for that so i feel i just wasted more money lamoo
hello guys
i need help
i have added replay mod to the modpack and i cant find the reviue replays button can some1 help me?
its like placed with the fabric mods list
remove the fancymenu mod
thxx man ill try
what
i'm not the developer of guard villagers
no
we are not releasing a hotfix to remove a mod that a single person is experiencing an issue with
i tried my best to help you with the issue but you called my attempt "completely irrelevant"
hello guys can someone please explain how to make vertical slabs?
Attached is a crash report that was generated after attempting to use an eternal portal in the end. Instantly crashed my game on the first entry.
Could it be because the initial portal in the end had a tree that was touching it?
betterend is a very broken mod
Is there anything that can be done for my world or should I cut my losses and restart?
change your coordinates
via the NBTStudio program
How do I manually install this modpack to my server that is hosted? I am unable to use the custom.jar method
!server
We suggest renting a server from Bisect Hosting:
Approx. $10 - $25 a month depending on what plan you choose. You can also get 25% off with Code LunaPixel.
Go to https://www.bisecthosting.com/LunaPixel and order a plan which fits you. We suggest 1GB per player but nothing lower than 4GB as the server needs at least 3GB to run.
Go to #server-hosting for more Info!
Free Method: (This is hosting on your own PC and it can come with issues that's why we suggest Bisect Hosting)
- Download the serverpack from Curseforge's website
- Right click the start.ps1 file and click Run with Powershell
To join your own server, typelocalhostinto Direct Connect.
This video explains the process https://www.youtube.com/watch?v=wuGUbVbLsDc
The server IP address is your Public IP Address, which can be found by googling my ip address
If other players are unable to join, find a portforwarding guide online.
i've already purchased a server but it wasn't from bisect, should i refund and swap?
what is the NBTStudio program?
probably a good idea yea
1.19.2 FABRIC
v15
Hi I can’t figure out the puzzle in an end temple it’s a 3x3 of banners in item frames please help
I believe it’s a yungs better dungeons mod?
can you use normal seeds for better mc? or will it just gen a completely world?
you can yes
dupe glitch found. crescendo of bolts + rope arrows = infinite rope
I’m still having this issue
I’m still having the same problem even after updating my computer. I tried with my own mod pack and everything looks fine but its this better mc mod pack that only does this….
Hello everyone, I have a question, is it possible to include the mod "Dragon Mounts" in the pack or will that cause problems. I was so looking forward to the dragons and now I have to find out that they are no longer in the pack. I have also seen that the mod is available for 1.19.2. Is there a chance that the mod will be included in the pack again?
I just looked up the name. Unfortunately I did not find anything.
Sorry I expressed myself wrongly, my English is not the best. I was wondering if you could tell me the name of the mod.
VoidZ / AdventureZ
you kill the boss in the voidZ dimension
then you get a dragon saddle
and you can ride the ender dragon
Ok, I had seen in a Lets play (1.16) that you can find eggs and hatch them.
But that no longer seems possible. Thank you for your time. Thank you for your effort on the modpack. It is a lot of fun!
so nobody can help me with my issue? i have been waiting for someone to respond for hours now. Im in no rush just don't know if i need to wait or say something
!fps
I think you have a problem with one of your graphics mods. Try it without and I would also turn off the shader.
Have a pleasant night 😉
remove all mods from this list
is there a way to reset the naga base in twilight forest??
no, but you can just find more
Pain pain pain pain pain
yup
It did it again, but they are all on top of each other
incase anyone wants seed its -7155891241142755337
Nice, lighthouse and thornborn towers
how do you get the swords in paradise lost mod
currently unobtainable
WIP mod
oh interesting
Patiently awaiting more structures
Hi! This is a little guide about Tom's Simple Storage
https://docs.google.com/document/d/1TgMjYwU85oEJ3ozGCEgX7614rfMoMGOC
Tom’s Simple Storage Basic Guide Tom’s Simple Storage allows you to access the storage of many blocks at the same time, letting you create a big variety of storage systems, from one with just chests and barrels connected, up to a highly automated system. Blocks Inventory Connector Main block of a...
I wasn't sure if anyone found any possible solutions to this issue, but I'm gonna bring it back up just in case
ask handcrafted devs
probably the best course of action lol thanks
is there a chunk loading mod in the modpack? If not, which one would yall recommend. Im way to lazy to make my own vanilla chunk loader LMAO
i followed the instructions here and i can't get connected simple systems to work, can you tell me what i am doing wrong?
sure, send a screenshot
the terminal on the floor need to be connected using an inventory cable connector
oh, oke, hmmm, it should be able to see both inventory connectors, are you sure it can't see them?
positive, best case scenario it will only acknowledge one of them
A little tip tho,you can simplify a lot that system, currently its even laggy probably, because of the huge amount of inventory connectors and terminals
Give me a sec
i was trying to make a system that still allows me to sort by category but access them all at once from a master terminal, it worked for about a day.
Ok, I think I found the problem, as there is no Inventory connector directly connected to the cables, the terminal doesn't recognize a system.
You have 2 possible solutions, connect directly one of the Inventory Connectors to a cable, or place an Inventory connector with the terminal
lemme try that
Something like this is the second option
no change, no luck whatsoever
And this the first option
i'm firing up a test world to figure this out
Here the Inventory connector of the main terminal is connected directly to the cable
current test setup, no change
There is no Inventory connector directly connected to a cable there
is the left one directly connected?
yes
the two segments operate fine independently, but the third terminal does not recognize them together
place an Inventory Cable connector on that one, and the center one connect it directly to a cable
Inventory Cable Connectors are like a "one way" thing
i don't think i'm following what you mean
can you post a screenshot?
visual learner
The ones on the sides with Inventory Cable Connectors and the one with the terminal directly to the cable
shit that did it
that works! i would recommend updating your guide to make this more obvious, otherwise it's a good guide
Yeah, I'm adding a few bits
can't wait to check it out, this format is way better than watching a damn video
why make a 20 minute video when a pamphlet works?
Yeah xD I mean, a video is a good way to get an idea, but written documentation helps a lot
Added that to the Inventory Cable Connector and to the Connected Simple Systems. Also gonna add a view from the top
i think it would be more obvious to say that access points need to be connected to an inventory connector that connects directly with the cable network
a diagram would be a huge help to drive this home
cable = 2 way connector = one way cable cannot connect directly with screens but can directly connect to inventory connectors
ah shit. i didn't process what was written the first time. dammit that's exactly what you said.
Thanks for the feedback!
no problem, thanks for writing this guide. this was a huge help
Is anyone else having issues with wither skeletons not dropping their heads? I've found a temple with a spawner and built a farm and have killed MANY with looting 3 and nothing has dropped. I've also gone around the normal vanilla way to fortresses and still nothing. Please let me know if there's something I've missed. TY 😄 (This didn't happen until the recent update so I'm wondering if maybe there's some new mechanic I've missed lol)
Edit: Fixed....I shall have nether stars again! Yessss
Hi I was at a snow brick castle with a load of pillagers and there was a wizard who froze you solid and summoned tiny yetis but he wouldn’t take any damage
He had like 4 buffs that wouldn’t go away
thats unfortunate
eldritch mob, my guess is regen was one of the buffs, Iceologer
resistance as well
It was strange I’m hitting him with strength from enchanted apple and dragon scale sword with sharpness and he didn’t take any damage stayed at 75 out of 75
fsr no minecarts or boats will go thru my nether portal thru the overworld
im just trying to make a chunk loader 😭
i keep crashing when genning and my pre-gen plugin keeps crashing when genning too and im so fed up lol
!moreinfo
Hello! For us to properly help you with your issue, you will need to answer all 8 questions below. Post the answers in this channel:
1. Have you modified the modpack in any way? If so, what did you do? (Updating/adding/removing mods, changing configs)
2. What launcher, or program, are you using to launch the game? (CurseForge, ATLauncher, etc)
3. What Minecraft version are you playing? (1.18.2, 1.16.5, 1.19.2)
4. What version of the modpack are you playing? (v11, v9, etc)
5. What steps are necessary to reproduce the crash? (Launching the game, exploring the world, etc)
6. Have you ever gotten past the point where the crash happens?
7. Send the crash report file into this channel. Right click the modpack, Open Folder, and navigate to the Crash Reports folder. Drag the newest one here. If there is no crash reports folder, do the same thing with the latest.log file in the logs folder.
8. Did you follow the Performance guide linked in #faq?
💀
💀 x2 wut do i even do im gonna cry
is the portal linked?
LOL they linked to the same place! TYSM.
i linked them this time and the boat still wont go thru tho 😭
at least thru the overworld
why is this happening? i am on 1.19.2 fabric bmc
its ridiculously hard to kill them withought breaking my armour
anyone know why?
when i am far away everything is fine but when i get closer it gets worse
whats the issue
bro no
it hasnt been like this
the first raid was fine but this one is obviously not
you posted a clip showing signs of low TPS
i told you how to fix low TPS
and you disregarded me
i don't know how else you want me to help
.
.
there is something wrong with raid mobs they make the world lag like that even if there is only one of them
im on v15 and I have seen raids with much more enemies and no issues. check your server/client performance. 1 month of playing we only had 1 crash. restarting the server 2 times a day.
Hey guys. I can't get my dragon to breathe fire for some reason... I'm on the latest 1.19.2 version of the modpack
I'm pretty sure it's on the highest level since it can carry a chest
I also tried changing the bind from ~ to G and doesn't work
When i have at least one raid enemy whilst the raid IS happening this ridiculous lag happends but if i have 200 pigs spawen in then its just my fos that goes down.
Is there any good guides for this Mod? Me and my friends are trying it but are struggling with progression lol
read quests
I cant use compass it teleports me any idea how to disable this/
ahh its worldedit's feature
nvm
Does anyone know a way to pause the server when no one is online but allowing anyone to join at any time?
That way time can stop flowing with no one is actively playing in the world.
I have a player in our server who went into the eternal portal and now his game crashes every time he logs in
is there anyone that can look at my .bat code and explain why my server's auto-restart function stopped working?
it's the same lines I've used the entire time I've had this server but somewhere between BMC 1.19.2 V12 and V15 my server just crashes instead of restarting
can anyone help me as to why i'm having issues with fps? i get like avg 4fps. i have a rtx 2070, and i7-10750H 2.60GHz with total virtual memory of 26.6GB ram - i think 16GB is installed. Edit: i have updated my graphics card to latest.