#better-mc-forge

1 messages · Page 716 of 1

fading blaze
#

yk the background

#

normally its the mountains

#

this has all the end biomes

remote fern
#

oh

#

its the nether

fading blaze
#

mine took along time to download all the mods

remote fern
#

i checked my mod folder and there isnt any in it

fading blaze
#

ya youll need to redownloadi t

remote fern
#

also it says files are locked so i cant delete it

fading blaze
#

just do it on curse forge

#

right click and delte

#

delete

remote fern
#

thats what im doing

#

ah nvm its bc i had mc open

#

lmao

fading blaze
#

ah lol

#

try closing it and trying

#

itll open straight from the curse forge or whatever you have launcher

#

idk if theres other lauchers

remote fern
#

im reinstalling it

#

i think it will work this time. im seeing different things than before. also i see v56, and there is more mods than before

fading blaze
#

yes

#

itll work

remote fern
#

also its taking a lot longer than before

fading blaze
#

it took me about 10-15 i wanna say mins

#

but then again my wifi sucks

#

theres alot

remote fern
#

ok, ill let u know if it goes wrong again. thanks

fading blaze
#

np

grand gate
#

who down to play better minecraft?

#

i have a server

remote fern
#

wait does 1.16BMC have deepslate?

#

i hope so lmao

#

wait there is no terralith mod in 1.16? @fading blaze

fading blaze
#

sorry im back

#

idk what that is im pretty new to mods you can add it i think in a folder

smoky ivy
#

Cuz of an issue

grand gate
#

i need help with something

grand gate
#

or something like that

smoky ivy
#

u cant join?

grand gate
trail thunder
grand gate
#

i did

smoky ivy
#

u prob have to contact the host

trail thunder
#

Check the mods on both your server and the profile

grand gate
#

ok

smoky ivy
#

u might have diff versions of modpack

grand gate
#

idt so

grand gate
grand gate
#

ah ok

smoky ivy
#

Check both mod folders

grand gate
#

ok

late kraken
#

It's one of the most expensive hosts imo

trail thunder
late kraken
#

Even apex is pretty expensive compared to bisect xD

trail thunder
#

Well my friend pays i just do the stuff so no worries for me

#

Maybe we change to bisect when the new modpack launches

smoky ivy
#

Just self host

#

Rlly cheap

late kraken
#

I get why some can't or don't

#

Electricity price and whatnot and maybe not having a server pc or good internet

trail thunder
#

The main problem with self hosting is that i cannot leave the pc open for ever

late kraken
#

Well if your gonna self host a public server youd have a server pc

#

defo wouldnt recommend hosting a continous server on ur main pc

trail thunder
#

Yep but hosting site makes things easy

late kraken
#

Sure but they won't always save you money lol

smoky ivy
#

Yea I only play with few friends

#

So I just self host

wispy night
#

i think is similar to diamond level

wispy night
late kraken
#

Oh good lord

smoky ivy
late kraken
#

We should just ban using lan 🤣

#

It's such a bad way to do it

wispy night
#

why??

#

is literally free

wispy night
smoky ivy
#

There’s issues with mods

smoky ivy
#

U get less bugs

wispy night
#

we just had 1 bug

#

xd

wispy night
grand gate
#

Hey, how do i allocate more ram to the Better Minecraft forge 1.18.1 Server, I have failed to locate the jar file to make a bat file

late kraken
#

You change it in the .bat file

#

not in the .jar one

grand gate
# late kraken You change it in the .bat file

Where??

:: Start script generated by ServerPackCreator.
:: This script checks for the Minecraft and Forge JAR-files, and if they are not found, they are downloaded and installed.
:: If everything is in order, the server is started.
@ECHO off
SetLocal EnableDelayedExpansion

SET JAVA="java"
SET MINECRAFT="1.18.1"
SET FORGE="39.0.88"
SET ARGS=
SET OTHERARGS="-Dlog4j2.formatMsgNoLookups=true"

SET AGREE="I agree"

IF NOT EXIST libraries/net/minecraftforge/forge/%MINECRAFT%-%FORGE%/forge-%MINECRAFT%-%FORGE%-server.jar (

  ECHO Forge Server JAR-file not found. Downloading installer...
  powershell -Command "(New-Object Net.WebClient).DownloadFile('https://files.minecraftforge.net/maven/net/minecraftforge/forge/%MINECRAFT%-%FORGE%/forge-%MINECRAFT%-%FORGE%-installer.jar', 'forge-installer.jar')"

  IF EXIST forge-installer.jar (

    ECHO Installer downloaded. Installing...
    java -jar forge-installer.jar --installServer

    IF EXIST libraries/net/minecraftforge/forge/%MINECRAFT%-%FORGE%/forge-%MINECRAFT%-%FORGE%-server.jar (
      DEL forge-installer.jar
      ECHO Installation complete. forge-installer.jar deleted.
    )

  ) ELSE (
    ECHO forge-installer.jar not found. Maybe the Forges servers are having trouble.
    ECHO Please try again in a couple of minutes.
  )
) ELSE (
  ECHO Forge server present. Moving on...
)

IF NOT EXIST libraries/net/minecraft/server/%MINECRAFT%/server-%MINECRAFT%.jar (
  ECHO Minecraft Server JAR-file not found. Downloading...
  powershell -Command "(New-Object Net.WebClient).DownloadFile('https://launcher.mojang.com/v1/objects/125e5adf40c659fd3bce3e66e67a16bb49ecc1b9/server.jar', 'libraries/net/minecraft/server/%MINECRAFT%/server-%MINECRAFT%.jar')"
) ELSE (
  ECHO Minecraft server present. Moving on...
)

IF EXIST run.bat (
  DEL run.bat
  ECHO Deleted run.bat as we already have start.bat
)
IF EXIST run.sh (
  DEL run.sh
  ECHO Deleted run.sh as we already have start.sh
)

IF NOT EXIST eula.txt (
  ECHO Mojang's EULA has not yet been accepted. In order to run a Minecraft server, you must accept Mojang's EULA.
  ECHO Mojang's EULA is available to read at https://account.mojang.com/documents/minecraft_eula
  ECHO If you agree to Mojang's EULA then type "I agree"
  set /P "Response="
  IF "%Response%" == "%AGREE%" (
    ECHO User agreed to Mojang's EULA.
    ECHO #By changing the setting below to TRUE you are indicating your agreement to our EULA ^(https://account.mojang.com/documents/minecraft_eula^).> eula.txt
    ECHO eula=true>> eula.txt
  ) else (
    ECHO User did not agree to Mojang's EULA. 
  )
) ELSE (
  ECHO eula.txt present. Moving on...
)

ECHO Starting server...
ECHO Minecraft version: %MINECRAFT%
ECHO Forge version: %FORGE%
ECHO Java version:
%JAVA% --version
ECHO Java args in user_jvm_args.txt: %ARGS%

REM Forge requires a configured set of both JVM and program arguments.
REM Add custom JVM arguments to the user_jvm_args.txt
REM Add custom program arguments {such as nogui} to this file in the next line before the %* or
REM  pass them to this script directly
ECHO If you receive the error message "Error: Could not find or load main class @user_jvm_args.txt" you may be using the wrong Java-version for this modded Minecraft server. Contact the modpack-developer or, if you made the server pack yourself, do a quick google-search for the used Minecraft version to find out which Java-version is required in order to run this server.

%JAVA% "%OTHERARGS%" @user_jvm_args.txt @libraries/net/minecraftforge/forge/%MINECRAFT%-%FORGE%/win_args.txt nogui %*

PAUSE
```bat
late kraken
#

ARGS

#

xms and xmx iirc

grand gate
#

so anywhere in this bach file i can set that argument ?

late kraken
#

in the ARGS part

#

at the top

lyric orbit
#

Can I put a horse in a boat in this modpack???

late kraken
#

Can you in vanilla?

fervent gorge
late kraken
#

If not I wouldn't get my hopes up lol

lavish birch
#

What’s the best way to get ender pearls (I haven’t beat the under dragon yet) because I tried trading with the piglins with 3 stacks of gold and didn’t get any pearls

late kraken
#

villagers

wispy night
tulip girder
#

is it supposed to be like this, that you can get your items back via the player corpse if you have fallen into the void?

late kraken
#

Yeah

tulip girder
#

okay isnt it a bit to easy that way?

#

I mean there is really no real way to die

late kraken
#

Yes and no

#

You still have to get to the corpse without dying

tulip girder
#

yeah.... right

#

but in the older versions you have 2 corpse which are both available to open?

fervent gorge
earnest elbow
#

-Xms8G -Xmx8G

#

for 8G minimum and maximum

barren tide
#

hey guys

fast sand
#

Hi guys

#

Does someone know how to join a friend with LAN?

late kraken
#

I recommend self hosting instead lan is super buggy

fast sand
#

Thanks for the advice 🙏

runic cosmos
#

whats the ip address for the server

grand gate
#

What happened to Light...

#

There are several

runic cosmos
#

for the better minecraft forge

grand gate
#

Here

runic cosmos
#

thanks

lime igloo
lime igloo
#

Hey all, had a weird occurrence with my server last night that still persists. I load into the world as did other players. I went into the end and my pal who was on was just crafting stuff. I noticed that mobs froze today and that my movement with the elytra was wonky, the log says a single tick took 120 seconds, max should have been 0.05. What do I do?

grand gate
#

anyone down to play?

frozen knot
#

I think as you were exploring the end is loading new chunks and becoz of that ticks were dropping and mostly server was lagging

lime igloo
#

nah, the enchanting with mobs mod was the problem

#

removed it and readded it

frozen knot
#

Oh good

fading blaze
#

do you guys think i should make a mega base on forge plus or fabric

proven hazel
#

quick question. The achievement to obtain a blue journal from the gatekeeper. What/where is the gatekeeper?

fading blaze
#

keep exploreing he lives in a spruce house

#

idk much else then that

proven hazel
#

okey

carmine zodiac
#

Hi I have a quick question, there’s a pillager tower from the savage and ravage mod pack that I want to stop spawning pillagers, is there anything I can do to stop it from spawning them

lime igloo
#

does ancient debris spawn naturally? or is it just in bastions

fading blaze
#

it spawns

#

go at y 12 i think it spawns at 15-10

#

i like to bed mine for netherite

lime igloo
#

okay, i was between y6-15 and didnt see it

fading blaze
#

damn

lime igloo
#

maybe i just didnt mine around enough

fading blaze
#

maybe

#

ik its there

#

just rare ig

weak crypt
#

but if you wanna mind im pretty sure its the same level

#

mine*

lime igloo
#

how do i get to one again?

weak crypt
#

the spawn randomly

#

i've found 2 just in the water

lime igloo
#

what mod adds them?

tranquil horizon
#

anyone know which mod is changing vanilla dungeon spawners? the skeletons have no weapons, and i'd like to understand what else is different. thanks.

fading blaze
#

ik some skellys are invisable idk why

weak crypt
late kraken
#

Yeah altho it's not in BMC Forge xD

tranquil horizon
late kraken
#

Well it's Better MC Plus and Better MC Forge 😉

south quarry
#

im in forge 1.16.5

#

how to beat ferrour thing

#

big iron golem

#

ferrous wroughtnertqera

late kraken
#

Wait for his axe to get stuck then attack his back

static field
#

Does anyone know how to get rid of the endless fking winter?

#

Everywhere I built stuff, snow starts, also in the summer

#

water freezes over and such

#

it just ruins everything a bit, cause everything is winter themed, even the othjer dimension is winter

coarse prism
#

How do I monitor the seasons?

static field
#

you can make a season sensor

coarse prism
#

I was thinking that

#

Shouldve looked it up with too many items

static field
#

or a calander

#

but I hate this, every place I built gets frozen over

coarse prism
#

Atleast you're not using a temperature mod like tough as nails

static field
#

😦 I just wanna make pretty things

coarse prism
#

Shaders

#

Are do you have a powerful enough pc? @static field

static field
#

Yea, we have pretty powerfull PC's

#

but water itself freezes, so lakes become useless

coarse prism
#

Fire

#

Melt it

static field
#

and then it freezes over again xD I just want the endless winter to stop

coarse prism
#

Bucket of water

brisk sleet
#

Do you prefer the 1.18 or 1.16 version of the modpack?

late kraken
#

Neither

brisk sleet
#

What version do you play

late kraken
#

Plus

brisk sleet
#

Ok

#

I like 1.18 but have less things

coarse prism
#

Ima just play RLCraft soon

lapis wind
wispy night
smoky ivy
brisk sleet
#

Ok

wispy night
#

does anyone know if the grottol spawns?

brisk sleet
#

can i put a map from version 1.18 to version 1.16 with this modpack?

late kraken
#

Don't expect it to work but you can try

#

Might get corrupt

hearty wigeon
#

what mod allows to use shaders

#

without optifine

late kraken
#

weird unofficial forge port of iris

hearty wigeon
#

tf

#

i cant make a own modpack using things like that then

#

sad

hearty wigeon
#

does any1 know if 1.16.5 has below y:0 caves and things like that

#

the mod version

#

not normal

#

lol

#

ima stop using this version bc i cant get it to work

late kraken
frozen schooner
#

Hi guys

#

whats the mod that changes the weather?

#

or is it vanilla?

hearty wigeon
#

fuck i downloaded fabric version it still crashes bc openjdk platform binary sucks

#

idk

#

@late kraken do u know what version is the most stable and can use shaders without optifine

frozen schooner
late kraken
#

no clue

hearty wigeon
#

oh

#

bc both fabric and forge 1.18 crash and i want to play 1.18

frozen schooner
hearty wigeon
#

i hate this

#

crashes

#

@late kraken do u know how to fix openjdk platform

frozen schooner
#

nvm I found it. it's serene season mod

frozen schooner
hearty wigeon
#

the exact same crash

frozen schooner
#

Anyone has tips for farming in bm 1.18?

pulsar jolt
#

Can someone help me fix it?

earnest elbow
hearty wigeon
earnest elbow
#

send it here

hearty wigeon
#

oh

earnest elbow
#

it obviously is invalid because that's a personal problem, not a problem with the pack itself

hearty wigeon
#

btw do u know the mods needed for the iris shader thing

#

where u can have shader without optifine

earnest elbow
#

the iris port has no dependencies

#

it's just one mod

hearty wigeon
#

what

#

i added it in mods doesnt work

hearty wigeon
#

ty

#

i had wrong mod probs

earnest elbow
#

I actually wonder why there's no file on curseforge

hearty wigeon
#

wait that mod doesnt have any files or things like that

earnest elbow
#

They must have removed it

hearty wigeon
#

how does it work on better minecraft then

earnest elbow
hearty wigeon
#

i was tryna find lilac and i found the file but ill use that

hearty wigeon
earnest elbow
#

send the report

hearty wigeon
#

what report

earnest elbow
#

the crash report

hearty wigeon
#

and i added it to my own modpack

#

btw

#

it just crashes

earnest elbow
#

yeah get the crash report and send it here

grim zenith
#

trying to merge the update with the server I'm running. Getting a crash. Here is the log file. Any help would be greatly appreciated!

earnest elbow
#

there only are WARNS

#

do you have the actual crash report?

#

oh no wait

#

i'd do a fresh mod install

#

seems like some deps are missing

grim zenith
#

I downloaded the server pack; is that not the correct thing to do?

earnest elbow
#

yes it is, although I would remove all mods and insert the new ones when updating instead of merging them

#

also do a backup first

frozen schooner
#

since that is forge 1.18, did you add optifine? It happened to me last 2 days that I got an error due to adding optifine, which is prohibited in BM 1.18 since rubidium already handles it

grim zenith
#

I did not add optifine :/

#

no error either.

#

I will try a fresh install. @earnest elbow

frozen schooner
#

Theres a dependency missing

#

try add that

frozen schooner
earnest elbow
#

no he merged two versions mods

#

he has lots of duplicates

#

a fresh install is better

frozen schooner
#

ah i see

grim zenith
#

I downloaded the dependency. I don't think there are any duplicates though...

#

In fact I actually just threw in 10ish smaller mods into the fresh downloaded Server pack and did as "fresh" of an install as I could without wiping the server

#

Sorry I didn't specify that

frozen schooner
#

My suggestion would be same as zKryle

#

fresh install, add mod one at a time and run

#

if it crashes, then that mod is the problem

grim zenith
#

I actually just manually downloaded that missing dependency

#

and it just booted!

frozen schooner
grim zenith
#

Thank you for the help! I hadn't seen that line. I appreciate it, y'all!

frozen schooner
#

sometime Latest.log is useful to read. lol

earnest elbow
#

I think that was a dependency from your mods

grim zenith
frozen schooner
#

well, enjoy

grim zenith
#

Also, quick question, what is the "mixin" thing?

earnest elbow
earnest elbow
frozen schooner
earnest elbow
#

you can ignore that

grim zenith
earnest elbow
#

Oh yeah dw

grim zenith
#

Thanks again, have a good day!

earnest elbow
#

np, you too!

frozen schooner
#

now, does anyone know why my crop is not growing eventho I loaded chunks using /ftbchunk command?

#

dang, im not used to heavy manual stuff lol

lime igloo
#

in v55.5 of the forge pack, what is the wandering bag dupe that is supposed to be fixed in v56?

wanton prawn
#

Hello guys, I wanted to ask something about bmc 1.18 in comparison to bmc 1.16.5? Are major mods like the abyss and dungeons arise the same?

hearty wigeon
#

im gonna stop using forge which crashes all the time ill use multimc

solid bobcat
#

alright i need help installing 1.16.5 version on linux

#

do i just download all of the mods one by one?

hearty wigeon
#

the 1.18.1 doesnt work even if i use different platform

#

LoL

#

1.18.1 BMC sucks

solid bobcat
#

what about 1.16.5?

hearty wigeon
#

downloading rn

#

hope it works

#

oh it is working

#

well thats good

#

YES CREATING A WORLD DOESNT CRASH FINALLY

solid bobcat
hearty wigeon
#

THE SYSTEM OR WHAT

#

sry caps

solid bobcat
#

yeah

hearty wigeon
#

windows 10 pro

solid bobcat
#

ah shit im over here in green ubuntu aka linux mint

hearty wigeon
#

ok

solid bobcat
#

i cant install it i know i fucked up

hearty wigeon
#

ok

#

i know now whats crashing the game

#

its the forge version

#

i cant use newer forge versions sad

#

oh wait 1.16.5 crashed after trying to change textures

#

well i wont do that again

solid bobcat
#

fuck it ima do 1.18.1 and if it refuses to work goddammit im gonna make it work

hearty wigeon
#

ok

#

cool, BMC works after downloading once then keeps crashing

#

i call shit modpack

#

im just gonna play some old mod like crazycraft ;-;

solid bobcat
#

well im caving in and im just going to play on windows T_T

clear spire
#

hello

fading blaze
#

hi there

clear spire
#

would a 4gb bisect budget server work on better minecraft forge 1.16.5?

fading blaze
#

depends how many people

#

i use 5 gb for 2 people on fabric and it has some issuses but other then that its perfect

clear spire
fading blaze
#

in curse forge

clear spire
fading blaze
#

thats where i made the server yes

clear spire
#

did you pick this option?

fading blaze
#

im not sure i choose better mc and it did it for me

#

if you load bmc first and click where relms are thats what i did

proven hazel
#

Just noticed there’s v20 now for 1.18. Can’t find the change notes, do we know what’s changed between v19 and v20?

proven hazel
#

Ty!

hearty wigeon
#

i found out whats crashing the game... its the waystones mod

#

and the mod required for it

#

ima do sceenshare of my modpack

fickle brook
#

I absolutely cannot pregen a world for some reason. It continually crashes, with the crash reports naming a named villager entity riding a vehicle "ERROR Null". I've tried many times to kill the villagers responsible, but it's different every time. If not a villager, then an error rendering one of their worktables (ie stack overflow trying to render a fletching table). I'm using version 55 HF as this server was created prior to the update.

fathom mica
#

hey, y'all. i'm getting this message on a fresh download and install of v20 for 1.18.1.

[17:37:20] [main/ERROR]: Missing mandatory dependencies: architectury, supermartijn642corelib, puzzleslib, collective, caelus, architectury, ftbteams, architectury, architectury, puzzleslib, ftbteams, curios, puzzleslib, selene, curios, architectury, architectury, curios, placebo, yungsapi, puzzleslib, balm, placebo, balm
#

any advice?

earnest elbow
grand gate
#

Yo, what armors should I get after diamond in BM 1.16?

fading blaze
#

it only goes to diamond no?

mystic arrow
#

yo what do I do with a crystal heart?

grand gate
lunar pulsar
#

Does anyone know if I change the mod pack from better Minecraft to the better Minecraft plus will it delete my world on a server host?

#

I would want to update and play better minecraft plus but i'm curious if my world will be deleted

grand gate
lunar pulsar
eternal echo
#

anything different you did to get it to not crash when putting on a shader?

edgy coyote
#

@solid bobcat it isn't actually crashing it just takes a min to load let it do its thing I had the same problem just be patient

sudden patio
#

Anyone?

grand gate
#

yo where is support channel

sterile aspen
#

flyingpigs from better nether mod keeps crashing my server

grand gate
#

ehm i have some problems

#

i have tried to reinstall betterminecraft 1.18 forge edition multiple times now on my windows 11 laptop and have gotten different errors every time

#

hey is there a way to change render quality in shader settings

#

Java args:
2022-03-11 02:37:15,484 main WARN Advanced terminal features are not available in this environment
[02:37:15] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--gameDir, ., --launchTarget, fmlserver, --fml.forgeVersion, 36.2.29, --fml.mcpVersion, 20210115.111550, --fml.mcVersion, 1.16.5, --fml.forgeGroup, net.minecraftforge, nogui]
[02:37:15] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 8.1.3+8.1.3+main-8.1.x.c94d18ec starting: java version 17.0.2 by Oracle Corporation
Exception in thread "main" java.lang.IllegalAccessError: class cpw.mods.modlauncher.SecureJarHandler (in unnamed module @0x1198b989) cannot access class sun.security.util.ManifestEntryVerifier (in module java.base) because module java.base does not export sun.security.util to unnamed module @0x1198b989
at cpw.mods blablabla for like 20 lines
Press any key to continue . . .

#

what may cause this

#

i am using java 17

#

aight im in but cant join the server

#

says "incomplete set of tags"

grand gate
#

nvm got it working after reinstalling another time

wispy night
#

help

smoky ivy
wispy night
#

15 hours

#

playing

#

is there a way to force a storm?

shell otter
#

so how do i add shaders in the settings i added the folder and everything but theres no option to select shaders

grand gate
#

whos down to play some better minecraft?

sudden patio
lunar pulsar
#

Does anyone know if I change the mod pack from better Minecraft to the better Minecraft plus will it delete my world on a server host?

grand gate
grand gate
polar lake
#

how do I toggle vein mining?

#

the keybind in controls doesn't work

trail thunder
#

You need a specific enchant called vein minig

polar lake
#

I already have it on my pickaxe

#

I want to be able to activate and deactivate it

#

sometimes its too annoying

next solstice
#

I cant find ender guardian i spent so much time trying to find it I want to go abyss

short bison
#

which is the best better minecraft version to play? 1.16.5 or 1.18.1 [FORGE]?

compact badger
#

Any help?

compact badger
dim frost
#

What’s the most efficient way to transport villagers in 1.16.5?

trail thunder
compact badger
#

solved.

#

thanku btw

trail thunder
#

If you were on olus version, there's a enchantment called capturing which lets you get a mob's spawn egg. That is the easiest

grim zenith
#

I have way too many hostile mobs spawning. Literally can't find rabbits to get a backpack because of it. (can't find other passive mobs either). Any tips?

#

They're all spawning in caves and dungeons a long bit down, but they're filling all of the mob spots so nothing else is spawning.

static oar
#

Quark oddities is not enabled and when I went to it, it says I havent downloaded it. Aynone know how to fix for Forge 1.16.5?

grand gate
#

is it even possible to use optifine on forge?

finite slate
#

hi

grand gate
#

helo

next solstice
#

Where do i find Enderiophage?

late kraken
#

End-Midlands iirc

next solstice
#

tysm

weak crypt
#

how rare is the snow boss i forgot the name becuase i was in a snow biome and couldn't find it i legit found 5 other bosses and not the snow

late kraken
#

frostmaw?

#

Not sure

#

I've found 2

trail thunder
weak crypt
#

alright

#

yeah i've been really unlucky

#

ive had 2 really big snow biome that ive looked through the whole thing and haven't been able to find it

#

really annoying i only need to kill that one boss for the overworld quests

trail thunder
#

Yes

#

I had issues in finding a netherite mostrosity and a nether keeper

crimson flame
#

Are the alchemy table and summoner table not garunteed drops?

trail thunder
#

Nope

#

And i never understood how to use a summoning table

crimson flame
#

any advice on finding a netherite monstrosity?

trail thunder
#

Just roam in the nether

crimson flame
#

does the boss bar show up no matter how far you are?

trail thunder
#

Yes the boss bar shows up amd there's an advancement too

weak crypt
#

does the nether keeper give you anything?

slate orbit
#

can someone help me please i add Controller Support Mod to Better Minecraft [FORGE] v19 and when i try and join my server i get mis matched mod i have even tried adding the mods required to have on the client on the server and the server doesnt boot

weak crypt
#

there could be a mod in the folder that you needa remove for it too work im guessing

crimson flame
slate orbit
#

adding conroller mod requires unionlib on client

slate orbit
#

i added both to server files aswell and server wont boot

crimson flame
#

I thought that it was just a random spawn in a snowy tundra

#

and that the explorer's compass can only go to structures

slate orbit
#

if anyone can dm me a solution would be grateful

polar lake
#

so if i got this right. then the backpack won't feed me these specific things right

#

?

weak crypt
#

damn

#

any other ideas?

trail thunder
#

Oh i forgot its not on better minecraft normal version sry

#

You can add the mod anyways

weak crypt
#

do you hvae any other mod suggestions that i should add

trail thunder
#

Well there are a whole lot of mods

weak crypt
#

what mods you have added?

trail thunder
#

I downloaded the plus version directly

weak crypt
#

my pc cant handle that lmao i wish

trail thunder
#

Ram?

weak crypt
#

16

trail thunder
#

Thats more than enough

crimson flame
#

just turn down render distance

weak crypt
#

i barely get 100 fps on the 56v

crimson flame
#

download distant horisons or soemthing

trail thunder
#

Well ask me i got a potato and i get 30 fps

sage knot
weak crypt
#

im on a laptop

sage knot
#

they still have specs...

weak crypt
#

yeah ik

#

im getting them up

crimson flame
#

bruh just cap it at a low fps like 60 or something

#

turn down render distance

#

and if you want to see far

#

add distant horizons

#

and put the the other distance to 64

sage knot
late kraken
#

It can

weak crypt
#

better to download through curge forge and run off that or to just download all the mods and run in a mod folder in minecraft luncher or doesn't matter

weak crypt
sage knot
weak crypt
#

no

weak crypt
grand gate
#

how do i do ptifine on bet

#

tter minecraft'

crimson flame
#

!optifine

grand gate
#

In order to use OptiFine, follow the steps below:
For 1.16.5 Forge: Remove Magnesium and Dynamic Lights Reforged, add OptiFine to the mods folder.
For 1.18.1 Forge: 1.18 already has a Mod that adds Shader Support and it is called Oculus, if you really want to use Optifine then remove the Rubidium and Oculus Mods.

Optifine Issues are not Supported in the Github however it shouldn't be an issue asking in the Discord for help.

#

thx

grand gate
next solstice
#

uh i dont get any advancement i killed void worm

late kraken
#

Did you complete the previous quests?

grand gate
#

how do i do this now my game keeps crashing

late kraken
#

Did you remove the mods like it said?

grand gate
#

yessir/mam

late kraken
#

Unsure then, did you add any mods?

grand gate
#

not that i know of

late kraken
#

Not sure then

grand gate
#

like when it loads up it frezes when it says frezzing mods

late kraken
#

so its not crashing?

grand gate
#

kinda isk

#

idk it frezzez then it says close app or wait

late kraken
#

are you using ur computer while it's loading?

grand gate
#

no

late kraken
#

That popup shouldnt appear then weird

grand gate
#

ikr

late kraken
#

Try it again and don't touch the pc or anything

#

optifine takes a lot longer to load

grand gate
#

ima delete the game and reneinstall it and do what it say maybe that might work

#

ok

crimson flame
#

optifine is more intensive than magnesium so maybe your computer just can't handle it

weak crypt
#

I FINALLY

#

FOUND

#

FROSTMA

#

MAW

frozen knot
#

write normally bro not in caps only

weak crypt
#

me be

#

b

#

bra the quest didn't reg

trail thunder
#

Oh thats sad

#

You might not have done all the previous quests

weak crypt
#

that was my last one

#

i was laggin

#

so i just spawned in another and got the quest

#

cuz i've been looking for that mf for 100 days

wispy night
#

hello, soo my game crashed and when i logged in again the resource packs reset, can somebody please send me a ss of the resourcepacks pls

late kraken
#

Order don't matter enough for it to be specific

#

Only overriding texture packs orders matter

wispy night
#

it does matter, a friend of mine got the same reset and when i tell him the resources without the order he had bugged textures

late kraken
#

That shouldnt happen

#

The only thing the order does is for overriding

#

So unless 2 textures override the same mods textures thats odd

wispy night
#

idk, but do you know wich resources are?

late kraken
#

Nope, there's way too many resource packs in the pack to know the order by hand

#

Best option is to re-install then

wispy night
#

bruh

#

thank you

late kraken
#

Should be in F3 somewhere

wispy night
late kraken
#

Might aswell reinstall it, itll be easier 🤷‍♂️

grand gate
#

is it safe to remove after I've made a world

crimson flame
#

yeah should be

#

those two are just optimization and lighting fixes mods

#

it doesn't affect the world itself

novel sinew
#

@wispy night

#

go to minimap settings,there's a time option,turn it on for days+24h

novel sinew
novel sinew
grand gate
#

ok thx

wispy night
novel sinew
wispy night
#

okok

unreal ice
#

anyone know how to get the defiled an umaker sets from Cataclysm

upbeat raft
#

Hi everyone. Anyone knows this bug? Playing on a hosted server, only 1 user is experiencing this issue

earnest elbow
#

Seems like lag

#

wdym?

#

content: forge, performance: fabric

#

np <3

late kraken
#

Then you don't have those 2 mods

#

Because those 2 mods will crash with optifine

#

It's not a can it's a will

weak crypt
#

do you get better fps by lunching the modpack through curgeforge or from downloading the mods and putting them into a mod folder and running minecraft or doesn't effect

#

you gotta click on the three dots when you like install it/ play its around there and then you gotta open folder then .minecraft then mods and remove (i think)

#

what for

#

this for optfine or smth?

#

!optfine

#

!opifine

#

!optifine

grand gate
#

In order to use OptiFine, follow the steps below:
For 1.16.5 Forge: Remove Magnesium and Dynamic Lights Reforged, add OptiFine to the mods folder.
For 1.18.1 Forge: 1.18 already has a Mod that adds Shader Support and it is called Oculus, if you really want to use Optifine then remove the Rubidium and Oculus Mods.

Optifine Issues are not Supported in the Github however it shouldn't be an issue asking in the Discord for help.

weak crypt
#

nice

#

you gotta removee the magnesium and dynamic lights

late kraken
#

Magnesium is better than opti FYI

frozen knot
late kraken
#

It's not an opinion either lol

frozen knot
#

it reduces loading time by 50% compared to optifine

#

and also fps is more

weak crypt
#

damn

late kraken
#

It's not that optifine increases optifine by around 200% lol

frozen knot
#

haha

weak crypt
#

i just leave the mods in there and dont change shit around

frozen knot
#

bmc looks better already without optifine

weak crypt
#

i barley run 70 fps there no way im using shaders

#

if icould i would

#

specs?

#

im on a laptop Lmao

#

4/3 years old

#

im lucky to have my game run smoothly

late kraken
#

Good, that's really good to hear

#

Everyones gotta make a living

#

You can mine more than bitcoin

weak crypt
#

im just broke asf

late kraken
#

That's why you should become forge devs and work for me

weak crypt
#

yeah nah

#

same but im 15

late kraken
#

I knew how to code when I was 8 🤣

#

That's not a valid reason

weak crypt
#

vaild enough

late kraken
#

Nah

weak crypt
#

send me a better pc and then ill learn to code yeah?

late kraken
weak crypt
#

you gonna pay me?

late kraken
#

I need a dev tho lol

#

I offer 40% of the income for a forge port of my mod lol

weak crypt
#

what we even gotta do for this job

#

make mods?

late kraken
#

Port a fabric mod to forge 🤷‍♂️

weak crypt
#

so making fabric mods to forge mods?

earnest elbow
#

Basically you gotta now java

late kraken
#

Yeah, pretty much lol

earnest elbow
#

know*

late kraken
weak crypt
#

yeah i dont really know java

#

ngl just downloaded it to get the mod pack

earnest elbow
#

they're not scripts

weak crypt
#

could yo teach me how to hack people and get there ips and shit

#

?

earnest elbow
#

that's totally unrelated to coding

#

Knowing how to code != knowing how to hack

weak crypt
#

where do you even start to learn to code though

#

could he doxxed somenoe for me

late kraken
#
function runCode(value1, value2) {
  return value1 + value2;
};

runCode(1,2);

^ That's a script

earnest elbow
#

I wasn't talking about that type of hacking..

weak crypt
#

dont even know how to make that box thingy

earnest elbow
#

it's just adding 1 to 2

late kraken
earnest elbow
#

output is 3

late kraken
#

lol

weak crypt
late kraken
#

Kryle you know Java?

#

I'll offer 50% for a forge port 🤣

earnest elbow
weak crypt
#

i have a math test on monday and i was spending 2 hours tryin to make cheat sheet thats how fucking bad i am

#

only got one page down too

earnest elbow
#

How big of a mod is it?

weak crypt
#

yyes lmao

late kraken
earnest elbow
#

It's just items?

late kraken
#

a few blocks, havent gotten biomes working yet

weak crypt
late kraken
earnest elbow
late kraken
#

Yeah lemme grab the link

#

remove step 4

earnest elbow
#

Optifine can't run on fabric

late kraken
#

use sodium

earnest elbow
#

lol

weak crypt
#

i've heard of sodium

earnest elbow
#

It can?

weak crypt
#

and i do the first 2

late kraken
earnest elbow
#

Oh lol i thought it couldn't

late kraken
#

There's optifabric but it's actually worse than just optifine alone lol

weak crypt
#

i've heard sodium is alot better

late kraken
#

It is

weak crypt
#

mae

#

where did you even learn to code

late kraken
#

I'm not Mae lol, I'm Tim

weak crypt
#

timmy

earnest elbow
#

Yep i'm looking at it

late kraken
#

I'm taken by Mae tho

#

Cool, just making sure it didnt get lost lol

#

I'm self taught tho

weak crypt
#

timmy dimmy kimmy slimmy

late kraken
#

Nah I'm too old to spend my life sweating in a game 🤷‍♂️

weak crypt
#

what verion you playing btw

#

better minecraft

earnest elbow
late kraken
#

Nice lol

weak crypt
#

but like

#

what you watch youtube or like

#

just

earnest elbow
late kraken
#

So your up for the task?

weak crypt
#

wait timmy you making a mod

#

or just like

#

switchin a mod over

earnest elbow
earnest elbow
late kraken
#

Cool, 50% then?

weak crypt
#

can i see the mod

earnest elbow
late kraken
#

Yeah

weak crypt
#

hacks

earnest elbow
#

I noticed a forge repo already exist too

#

It's incomplete though, should i rewrite that too?

late kraken
#

Shouldnt need to just need a 1.18 forge update to it

haughty drift
#

admin can u help me with sum?

late kraken
#

It's the main repo but I managed to fuck up git so I made a new repo for fabric lol

#

Might be able to

weak crypt
#

tim would xkryle be a better coder then you or

#

other way around

haughty drift
#

uhhh every time i join by BMC server it says generatin gworeld, joining wowrld, and then it says lost connection

late kraken
haughty drift
#

no errors

earnest elbow
late kraken
#

^

haughty drift
weak crypt
#

what it bout

earnest elbow
#

I think it's mostly collab to get something big going

#

and exchanging knowledge

haughty drift
#

nope i was able to join my other modded sertver

weak crypt
# late kraken ^

you should make me a mod and i'll send you a kiss in the mail deal?

late kraken
#

I'm taken so no

haughty drift
#

v20?!

weak crypt
#

fuck

weak crypt
late kraken
#

18

weak crypt
#

hes 26

haughty drift
#

oh but im on the fabirc one. so v18

weak crypt
#

18&

haughty drift
#

so not wrong versiopn

#

now what does that mean

#

i made the server through forge

late kraken
#

Btw @earnest elbow imma just remove the main lithereal repo and make lithereal-fabric one into main one with 2 branches lol

earnest elbow
late kraken
#

Yup

weak crypt
#

timm you know how to make a mod from scratch or you only know how to change it from forge to fabric

haughty drift
#

okaay? and how i check

#

ye

late kraken
haughty drift
#

i downlaoded the fabric server pack and then insatled a forge server into the folder

weak crypt
late kraken
#

you don't script it into the game lol

earnest elbow
#

we can't say the same for the other way around

marble turtle
#

What version do you have to be on to use this mod

earnest elbow
marble turtle
#

i mean minecraft version

earnest elbow
marble turtle
#

like 1.18.2 or something

haughty drift
#

i had to take out the paintings mod from the server bc it was not starting up. maybe that?

late kraken
#

You can add scripts into your code not the other way around XD

weak crypt
#

sheesh

marble turtle
#

ok thx

#

does it come with shaders

#

What is the best shader to use

haughty drift
#

@late kraken can u help?

marble turtle
#

yes please

#

im new to this

late kraken
#

I'm lost in this chat Sorry JSR lol

weak crypt
#

best shaders for FPS

late kraken
#

Not quiet sure what's causing you to disconnect from ur server tho

marble turtle
#

thanks

weak crypt
#

fycjjjjjjjjjk

marble turtle
#

is there anything else i should know about the mod

haughty drift
weak crypt
marble turtle
#

i hope i can make it

weak crypt
#

i really wanna play the minecraft plus one but i dont think my pc can handle it

earnest elbow
haughty drift
earnest elbow
#

It shouldn't make that much of a difference tbh

weak crypt
#

209 to 300

#

isnt it

marble turtle
#

well thx

#

yes

#

well the thing is

earnest elbow
marble turtle
#

i dont have a pc yet

#

but im getting one soon

weak crypt
#

laptop gang?

#

supershark

marble turtle
#

im just getting ready for it

marble turtle
#

idk

marble turtle
#

im paying but my dad is picking it out

#

we are getting a refurbished one so its cheaper

#

it will probably be around that price

#

i cant type

#

wow

weak crypt
#

I got a pc with a shifty monitor and the graphic card is 1080 smth

#

I forgot

haughty drift
#

@late kraken this time it gave me this

marble turtle
#

what?

#

interesting

weak crypt
#

Wait

#

What

marble turtle
#

well i gtg

weak crypt
#

It was

marble turtle
#

thx for the info

weak crypt
#

What that mean

#

I’m pretty dumb

late kraken
weak crypt
#

Bra

#

How long has this been

haughty drift
late kraken
#

Not sure, not seeing anything that looks weird

#

Not the best at reading logs tho

trail thunder
#

Dont ping

haughty drift
#

:( okaaaaaaay

haughty drift
late kraken
#

Only that paintings is crashing it

haughty drift
#

ye. hmm Ima try remaking the server ig???

#

the start.bat that comes in the server pack doesnt work tho

haughty drift
late kraken
#

There's a missing .jar file

haughty drift
#

hows it missing if all i did was download the server pack

#

it doesnt come with the sever pack ig

cedar pagoda
#

i have the version 1.16.5 so how do i disable the pink color lava?

haughty drift
#

so how would i fix that

late kraken
#

what .jar files do you have?

haughty drift
#

in the server folder?

late kraken
#

Yeah

haughty drift
#

the ones that came with the server pack? i didnt add anything else

late kraken
#

So no .jar files at all? That's weird

#

Not sure why that is

haughty drift
#

ig. i just downlaoded the server pack bro. Maybe since the 18v came out yesterday someone forgot to add it

#

?

late kraken
#

Not sure

haughty drift
#

sooo what do

late kraken
#

Could download the forge jar manually from their website and add it

haughty drift
#

alr. u have a link?

late kraken
haughty drift
#

ohh wait i thought u meant from better minecraft website sorry

#

hm

haughty drift
late kraken
#

You just need it to generate the .jar files

haughty drift
late kraken
#

Yes

haughty drift
#

but cant cuz of the paintings mod

#

hehe let me take it out'

haughty drift
late kraken
#

There must be a jar file somewhere because the server started

haughty drift
#

indeeed which folder u think itd be under

late kraken
#

Shouldnt be in any

weak crypt
#

tim is there any useless mods i should take outta the better plus verion for like better performace

late kraken
#

May aswell just run normal BMC then lol

weak crypt
#

man whats BMC

#

wait

#

nvever

#

mind

haughty drift
#

wdym by normal bmc?

#

or u not talking to me

late kraken
#

Wasent no

#

In ur case idk what's going on

haughty drift
#

i checked every folder

#

and no jar file

trail thunder
#

Well it should be there.

late kraken
#

Yeah it shouldnt be in it's own folder it should be in the root

edgy mica
#

You guys realise hes trying to play Fabric and not forge and you linked him 1.18.2 Forge 🤦‍♂️

haughty drift
#

well i downloaded the server pack and forge and no jar file.

late kraken
#

I do now lol

#

I blame the channel

edgy mica
late kraken
#

So fabric servers are probably down atm then

#

Not much to do other than wait then

edgy mica
#

works for me

#

might be something to do with his system

haughty drift
#

hmmm\

#

sooo what do :)

late kraken
#

Manually download fabric jar then I'd assume

haughty drift
#

annnnd where do that? ive never made a fabric server

late kraken
haughty drift
#

and i jsut slap that on my folder with evertything in it?

#

nevermindndnd i gotta delet evertyhitng for the 5th time

#

BOOM

#

with fabric where do i go to change amount of RAM on the .bat?

frozen knot
#

!ram

grand gate
frozen knot
#

oh wait

haughty drift
#

wrong thingy

frozen knot
#

u mean server ram?

haughty drift
#

ye server ram

late kraken
#

You do it using the XMS & XMX arguments

frozen knot
#

there will be Xmx4096M Xms4m like that

late kraken
#

in the ARGS section

fervent gorge
#

I'm playing on latest 1.18 version and after entering and quitting evebright dimension all entities were gone

haughty drift
#

ohh in the args

haughty drift
late kraken
#

At the top

haughty drift
#

really? up here?

late kraken
#

Yup

#

ARGS

haughty drift
#

ahhh

haughty drift
late kraken
#

Yeah that's 6 gigabytes

haughty drift
#

yiup

#

moment of truth. WILL I DISCONNECT AGAIN

#

ye it worked ty

late kraken
#

Nps

haughty drift
#

no complementary shaders :(

mental badge
#

Can someone help me add shaders to my game? I just downloaded the modpack on forge but I can't get my shaders to work

grand gate
#

what shaders r u trying to use

#

are they just not applying? or does your game freeze or something

glass knot
#

how do i play minecraft

trail thunder
#

try pressing alt + f4

glass knot
#

ok

glass knot
#

i tried it

#

it just closed it

#

so

#

i kept pressing it

trail thunder
#

didn't work?

#

oh

glass knot
#

everything closed :C

trail thunder
#

then press alt + f4 2 times then enter

glass knot
#

ohhh

#

okay

#

HEY!

#

it did the same thing

#

😭

trail thunder
#

yes?

#

maybe i dont know how to play either

glass knot
#

oh man.

trail thunder
#

@late kraken help him

glass knot
#

yes

#

please

#

how play minecrafty

late kraken
trail thunder
#

whatever

late kraken
#

What's not working 🤔

glass knot
#

minecraft

#

how play

late kraken
#

chop wood xD

#

make crafting table

glass knot
#

how do i "chop wood"

#

and how does one

#

"make crafting table"

late kraken
#

Hold left mouse button on a log

trail thunder
#

take your hand and hit it on wood

glass knot
#

HEY

#

WTF

#

U LIAR

#

I BROKE MY MONITOR

#

😭

late kraken
#

to make a crafting table open your inventory put a log in the crafting slots get the planks and put 4 planks in the 4 slots

#

😢

late kraken
#

I punished him

glass knot
#

he made me break monitor

#

muted

#

ha

late kraken
#

😭

glass knot
#

what a noob

late kraken
#

Yeah

#

Real noob

glass knot
#

@trail thunderhow does it feel

late kraken
#

Just for you I will abuse my powers ❤️

glass knot
#

Yes

trail thunder
#

maybe i am a monster

glass knot
#

now ban everyone except me

glass knot
trail thunder
#

but i am good being a monster

glass knot
#

ARE YOU A CREEPER??

late kraken
#

Wish I could but my powers arent that strong 😢

glass knot
#

they are so scary 😭

late kraken
#

Muted for being too scary

glass knot
#

yes

trail thunder
#

you are gonna get nightmares

glass knot
#

:C

#

nightmares are fun

trail thunder
#

enjoy

late kraken
#

Do u want me to mute him again :?