Craftoria

Craftoria

816k Downloads

missing server files for all version expect 0.6.0

AsheX1 opened this issue ยท 8 comments

commented

Image

commented

just download them from here

https://github.com/TeamAOF/Craftoria/tree/main/server_files

Forgiving Void (forgivingvoid) has failed to load correctly

seems broken

commented

literally just used those server files. loads fine on my end. likely an issue with your install

commented

literally just used those server files. loads fine on my end. likely an issue with your install

i think it has to do with the java picker.... i have all java's installed from 8 to 23 and as far as i can see it keep using the wrong java

so to start fixing it i put this in the serverstarter.bat on the first line

path=<path to java 21 bin> and for some reason it keeps ignoring it and use's an other java version so the second fix i have done is to just remove the java finder bullshit code in the .bat
`
:BEGIN
CLS
COLOR 3F >nul 2>&1
SET MC_SYS32=%SYSTEMROOT%\SYSTEM32
REM Make batch directory the same as the directory it's being called from
REM For example, if "run as admin" the batch starting dir could be system32
CD "%~dp0" >nul 2>&1

:CHECKJAVA
ECHO INFO: Checking java installation...
ECHO.

REM If no Java is installed this line will catch it simply
java -version 2>&1 || GOTO JAVAERROR

ECHO.
IF %ERRORLEVEL% EQU 0 (
ECHO INFO: Found 64-bit Java
GOTO CHECK
) ELSE (
GOTO JAVAERROR
)

`
thats what i remove

and now it starts using the correct

just to add on this is keeps using Java Version: 23.0.1 it seems instead of looking for 21 that

so this is how my serverstart.bat looks now to make it work correctly
`@ECHO OFF
path=C:\Program Files\Eclipse Adoptium\jdk-21.0.5.11-hotspot\bin
SETLOCAL
:MAIN
java -jar serverstarter-2.4.1.jar
GOTO EOF

:CHECK
REM Check if serverstarter JAR is already downloaded
IF NOT EXIST "%cd%\serverstarter-2.4.1.jar" (
ECHO serverstarter binary not found, downloading serverstarter...
%SYSTEMROOT%\SYSTEM32\bitsadmin.exe /rawreturn /nowrap /transfer starter /dynamic /download /priority foreground https://github.com/TeamAOF/ServerStarter/releases/download/v2.4.1/serverstarter-2.4.1.jar "%cd%\serverstarter-2.4.1.jar"
GOTO MAIN
) ELSE (
GOTO MAIN
)

:JAVAERROR
COLOR CF
ECHO ERROR: Could not find 64-bit Java installed or in PATH
PAUSE

:EOF
pause
`

commented

curseforge a cursed fucking website

commented

oke i cant even seems to view the old site version so there is no way for me or anyone that i know to view server file's download we can view file's but that is only for the client......... I FUCKING HATE CURSEFORGE

commented
commented

just download them from here

https://github.com/TeamAOF/Craftoria/tree/main/server_files

wel that is fucking easy thank you

commented

the correct java path can be defined explicitly in the yaml file you downloaded earlier