Palworld

Palworld

View Stats:
Skurny Jan 19, 2024 @ 7:47am
Dedicated Server (Windows) Not Connecting Issues
Im not sure what I am doing wrong here why I cant connect to my server.
Downloaded via Steam CMD
Ran the server once to get the config files made
Copied Pasted the default server settings to PalWorldSettings.ini
added my pubic ip to the line
added admin password
I have port forwarded on my router
Added the ports to the firewall
relaunch and get on the command box "setting breakpad minidump AppID = 1623730

How do I know the server is done loading?
What else am I missing?
< >
Showing 1-15 of 18 comments
XINTERP Jan 19, 2024 @ 7:54am 
It seems like there's an issue with the .exe right now. 3rd party companies and end users are having issues with the dedicated servers very similar to what you're experiencing.

Data isn't being populated when you run the .exe so it is causing you to not have a functioning server.

We have to wait for Palworld server files to update through steamcmd. :/
Skurny Jan 19, 2024 @ 7:59am 
Awesome thanks for the input, This ain't my first rodeo with servers and its driving me nuts! I cant even find the PalWorld Dedi files under tools in steam so they must have took them down too.
XINTERP Jan 19, 2024 @ 8:58am 
Originally posted by Skurny:
Awesome thanks for the input, This ain't my first rodeo with servers and its driving me nuts! I cant even find the PalWorld Dedi files under tools in steam so they must have took them down too.

Got sick of running SteamCMD every 10 minutes and typing all the bs in.
Here's a link to my .bat file I'm using to update check and run the program.
https://mega.nz/file/AJFnBKZS#DnUSWdV3EH8ipEma7kijqXeMZk2Kil0oSGoebqCTU0Q

Everything in the .bat file is commented out, so if people are learning they can understand what it does. :)
Skurny Jan 19, 2024 @ 10:36am 
Apparently you have to own the game to use the Steam to use the Dedi files. So to use the working file you need to buy a second copy to use the working dedicated files
N0VA01 Jan 19, 2024 @ 10:40am 
Originally posted by Skurny:
Apparently you have to own the game to use the Steam to use the Dedi files. So to use the working file you need to buy a second copy to use the working dedicated files

You will need to own it to download via SteamCMD yes but not to run it most likely.
Artawi Jan 19, 2024 @ 10:46am 
Originally posted by N0VAST4R:
Originally posted by Skurny:
Apparently you have to own the game to use the Steam to use the Dedi files. So to use the working file you need to buy a second copy to use the working dedicated files

You will need to own it to download via SteamCMD yes but not to run it most likely.
so if i only have it from game pass does that mean i wont be able to start servers?
Skurny Jan 19, 2024 @ 10:48am 
Originally posted by N0VAST4R:
Originally posted by Skurny:
Apparently you have to own the game to use the Steam to use the Dedi files. So to use the working file you need to buy a second copy to use the working dedicated files

You will need to own it to download via SteamCMD yes but not to run it most likely.
No you dont. I was able to get the files from anonymously logging in.
N0VA01 Jan 19, 2024 @ 10:51am 
Originally posted by Skurny:
Originally posted by N0VAST4R:

You will need to own it to download via SteamCMD yes but not to run it most likely.
No you dont. I was able to get the files from anonymously logging in.

Yeah just downloaded on my server now as anonymous login.
Skurny Jan 19, 2024 @ 10:56am 
Originally posted by Artawi:
Originally posted by N0VAST4R:

You will need to own it to download via SteamCMD yes but not to run it most likely.
so if i only have it from game pass does that mean i wont be able to start servers?
No
Skurny Jan 19, 2024 @ 11:11am 
Originally posted by XINTERP:
Originally posted by Skurny:
Awesome thanks for the input, This ain't my first rodeo with servers and its driving me nuts! I cant even find the PalWorld Dedi files under tools in steam so they must have took them down too.

Got sick of running SteamCMD every 10 minutes and typing all the bs in.
Here's a link to my .bat file I'm using to update check and run the program.
https://mega.nz/file/AJFnBKZS#DnUSWdV3EH8ipEma7kijqXeMZk2Kil0oSGoebqCTU0Q

Everything in the .bat file is commented out, so if people are learning they can understand what it does. :)
Yeah im not clicking that. Post your bat settings and Ill make my own file.
Maxter1o2 Jan 19, 2024 @ 11:58am 
Originally posted by Skurny:
Originally posted by XINTERP:

Got sick of running SteamCMD every 10 minutes and typing all the bs in.
Here's a link to my .bat file I'm using to update check and run the program.
https://mega.nz/file/AJFnBKZS#DnUSWdV3EH8ipEma7kijqXeMZk2Kil0oSGoebqCTU0Q

Everything in the .bat file is commented out, so if people are learning they can understand what it does. :)
Yeah im not clicking that. Post your bat settings and Ill make my own file.

@echo off
echo "Thank you for using the automated server update file."
echo "This file is designed to update your Palworld Dedicated Server."
echo "Please close this window if you do not wish to update your server."
timeout /t 30
::The section above shows an opening message and gives a 30 second countdown in case you wish to
::cancel the exectution of the .bat file. Minor safety feature for those "just in case" moments.
::Delays are always skippable by pressing a key.

CD C:\Users\Xinterp\Desktop\SteamCMD
echo "Directory changed SteamCMD's Main Directory."
::Directory gets changed to the SteamCMD directory. Change the directory on line 9 to match your
::current SteamCMD directory if you plan on using this.

start "steamcmd" steamcmd +login anonymous +app_update 2394010 validate +quit
echo "SteamCMD should be updating the Palworld Server."
timeout /t 600
::This section starts SteamCMD from the directory set above on line 9, logs in as anonymous, updates
::the AppID: 2394010 (Palworld Dedicated Server) and performs a validation check. Once those things
::have gone through, it then closes SteamCMD. The default timer added to this is a 10 minute timer
::again for those "just in case" moments. Delays are always skippable by pressing a key.

CD .\steamapps\common\PalServer
echo "Attempting to run the Palworld Server."
PalServer.exe
::This appends the directory from SteamCMD to the Palworld Dedicated Server directory. You will need
::to change the directory on line 23 to your current server's directory with the executable file.
::Once you've changed the directory, you can specify what file you wish to run. If that's a .bat,
::.exe, .gen, .sh, etc... This change is on line 25.

::I know most people don't explain what .bat files do, but it would be nice if people started
::commenting their .bat files out like this to help others who are learning. Enjoy -Xinterp
pause
XINTERP Jan 19, 2024 @ 12:20pm 
Originally posted by Skurny:
Originally posted by XINTERP:

Got sick of running SteamCMD every 10 minutes and typing all the bs in.
Here's a link to my .bat file I'm using to update check and run the program.
https://mega.nz/file/AJFnBKZS#DnUSWdV3EH8ipEma7kijqXeMZk2Kil0oSGoebqCTU0Q

Everything in the .bat file is commented out, so if people are learning they can understand what it does. :)
Yeah im not clicking that. Post your bat settings and Ill make my own file.
Sure! Sorry I didn't see this earlier.

@echo off echo "Thank you for using the automated server update file." echo "This file is designed to update your Palworld Dedicated Server." echo "Please close this window if you do not wish to update your server." timeout /t 30 ::The section above shows an opening message and gives a 30 second countdown in case you wish to ::cancel the exectution of the .bat file. Minor safety feature for those "just in case" moments. ::Delays are always skippable by pressing a key. CD C:\Users\XINTERP\Desktop\SteamCMD echo "Directory changed SteamCMD's Main Directory." ::Directory gets changed to the SteamCMD directory. Change the directory on line 9 to match your ::current SteamCMD directory if you plan on using this. start "steamcmd" steamcmd +login anonymous +app_update 2394010 validate +quit echo "SteamCMD should be updating the Palworld Server." timeout /t 600 ::This section starts SteamCMD from the directory set above on line 9, logs in as anonymous, updates ::the AppID: 2394010 (Palworld Dedicated Server) and performs a validation check. Once those things ::have gone through, it then closes SteamCMD. The default timer added to this is a 10 minute timer ::again for those "just in case" moments. Delays are always skippable by pressing a key. CD .\steamapps\common\PalServer echo "Attempting to run the Palworld Server." PalServer.exe -log -LOCALLOGTIMES -nogui -EpicApp=PalServer -MetaGameServerName="INSERT_SERVER_NAME_HERE" -ip=INSERT_IP_ADDRESS_HERE -Port=8211 -players=16 -useperfthreads -NoAsyncLoadingThread -UseMultithreadForDS ::This appends the directory from SteamCMD to the Palworld Dedicated Server directory. You will need ::to change the directory on line 23 to your current server's directory with the executable file. ::Once you've changed the directory, you can specify what file you wish to run. If that's a .bat, ::.exe, .gen, .sh, etc... This change is on line 25. ::I know most people don't explain what .bat files do, but it would be nice if people started ::commenting their .bat files out like this to help others who are learning. Enjoy -Xinterp pause

Was genuinely trying to help. Sometimes my idiot brain forgets that people are malicious and ♥♥♥♥. Ruins it for those who are trying to help.
Last edited by XINTERP; Jan 19, 2024 @ 12:35pm
Skurny Jan 19, 2024 @ 12:36pm 
Thanks for posting the code. I saw mega and was like oh hell no. lol Running this bat are your servers working now?
Tunrik Jan 19, 2024 @ 5:18pm 
Originally posted by XINTERP:
Originally posted by Skurny:
Awesome thanks for the input, This ain't my first rodeo with servers and its driving me nuts! I cant even find the PalWorld Dedi files under tools in steam so they must have took them down too.

Got sick of running SteamCMD every 10 minutes and typing all the bs in.
Here's a link to my .bat file I'm using to update check and run the program.
https://mega.nz/file/AJFnBKZS#DnUSWdV3EH8ipEma7kijqXeMZk2Kil0oSGoebqCTU0Q

Everything in the .bat file is commented out, so if people are learning they can understand what it does. :)

i ran your cmd script and still get Setting breakpad minidump AppID = 1623730
so I'm guess Ill have to wait for palworld to update the files?
I created the same thing on another computer, but in CMD at startup
Set breakpad minidump AppID = xxxxxxxxxxxxxxxxx
entered the local IP of the server computer and was able to enter the game, since the direct connection in the game defaults to 127. and a number, and if I make the connection as is, it fails.

The problem is that when I enable the password, I can't even get in through the direct connection, so I was able to get in locally, but I don't know if others can join because it doesn't show up in the waiting server list.
I know I can join in other games, so if I can't, I'll just use the IP direct connection. I just play with friends.
Last edited by Huru2ryousan Watch&SafetyPatrol; Jan 19, 2024 @ 6:05pm
< >
Showing 1-15 of 18 comments
Per page: 1530 50

Date Posted: Jan 19, 2024 @ 7:47am
Posts: 18