-
-
Notifications
You must be signed in to change notification settings - Fork 303
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update for v0.1.5.0 #458
Comments
Hmmm, I wonder if this is probably why I am still experiencing symptoms from this closed bug: #449 (comment) |
yea im getting the constant logging from rcon port not being open when it is |
I've submitted a PR for the RCON issue: #459 |
yup i implemented that into my start.sh file but i was still getting the flag error, so i commented out the also noticed that when logged into in-game rcon, you no longer see the connected player in the |
add diff --git a/scripts/compile-settings.sh b/scripts/compile-settings.sh
index a7a64f7..0147f9c 100755
--- a/scripts/compile-settings.sh
+++ b/scripts/compile-settings.sh
@@ -83,6 +83,7 @@ export RCON_PORT=${RCON_PORT:-25575}
export REGION=\"${REGION:-""}\"
export USEAUTH=${USEAUTH:-True}
export BAN_LIST_URL=\"${BAN_LIST_URL:-https://api.palworldgame.com/api/banlist.txt}\"
+export SHOW_PLAYER_LIST=${SHOW_PLAYER_LIST:-True}
if [ "${DEBUG,,}" = true ]; then
cat <<EOF
@@ -149,6 +150,7 @@ RCON_PORT = $RCON_PORT
REGION = $REGION
USEAUTH = $USEAUTH
BAN_LIST_URL = $BAN_LIST_URL
+SHOW_PLAYER_LIST = $SHOW_PLAYER_LIST
====Debug====
EOF
fi
diff --git a/scripts/files/PalWorldSettings.ini.template b/scripts/files/PalWorldSettings.ini.template
index 55ecbe6..f237152 100644
--- a/scripts/files/PalWorldSettings.ini.template
+++ b/scripts/files/PalWorldSettings.ini.template
@@ -60,5 +60,6 @@ RCONEnabled=$RCON_ENABLED,
RCONPort=$RCON_PORT,
Region=$REGION,
bUseAuth=$USEAUTH,
-BanListURL=$BAN_LIST_URL
-)
\ No newline at end of file
+BanListURL=$BAN_LIST_URL,
+bShowPlayerList=$SHOW_PLAYER_LIST
+) |
PR created for the publiclobby change in #460 |
@43414d We also need to add new variable bShowPlayerList=True to DefaultPalWorldSettings.ini. I don't know how to make changes using git. Could you help me? |
PR created for support the bShowPlayerList in #461 |
There is an official answer. |
This is not bug.
The rcon port no longer listen from v0.1.5.0 without
-rcon
or-rconport=
option.and modified options.
EpicApp=PalServer
--->-publiclobby
reference from https://tech.palworldgame.com/settings-and-operation/arguments
The text was updated successfully, but these errors were encountered: