From 2171913d1d47d89a7f3e81155dc013d80a1ff22c Mon Sep 17 00:00:00 2001 From: Sispheor Date: Thu, 16 Jul 2015 22:19:12 +0200 Subject: [PATCH 1/4] update readme, add rcon --- README.md | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6b4b5ac..097f4c9 100644 --- a/README.md +++ b/README.md @@ -68,19 +68,19 @@ arkmanager install To get a complete list of the script commands you can run `arkmanager --help` or `arkmanager -h`. #### arkmanager install -installs arkmanager to the directory specified in `/etc/arkmanager/arkmanager.cfg` or `~/.arkmanager.cfg`. +Installs arkmanager to the directory specified in `/etc/arkmanager/arkmanager.cfg` or `~/.arkmanager.cfg`. #### arkmanager start -starts ARK server +Starts ARK server #### arkmanager stop -stops ARK server +Stops ARK server #### arkmanager restart -restarts ARK server +Restarts ARK server #### arkmanager update -manually updates ARK server if a new version is available +Manually updates ARK server if a new version is available #### arkmanager update --force Apply update without check the current version @@ -100,6 +100,22 @@ Check for a new ARK Server Tools version and upgrades it if needed #### arkmanager backup Saves a backup of your server inside the backup directory +#### arkmanager broadcast "message" +Broadcast a message to all curently connected players. Example: +``` +arkmanager broadcast "Hi, admin there" +``` + +#### arkmanager saveworld +Saves the current world. + +#### arkmanager rcon +Run a rcon command on the server. Example: +``` +arkmanager rcon "ListPlayers" +``` +Full list of available command here: https://www.streamline-servers.com/billing/knowledgebase/75/ARK-Survival-Evolved-Admin-Commands.html + ## Credits Original author of arkmanager: LeXaT From 9e23213b2d882edda691112e8a7e715f28c08444 Mon Sep 17 00:00:00 2001 From: Sispheor Date: Thu, 16 Jul 2015 22:20:52 +0200 Subject: [PATCH 2/4] remove unused variables --- tools/arkmanager | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tools/arkmanager b/tools/arkmanager index 8f819e6..17e401a 100755 --- a/tools/arkmanager +++ b/tools/arkmanager @@ -31,8 +31,6 @@ if [ -x /usr/sbin/lsof ]; then fi # Local variables -info="" -thejob="" instver="" bnumber="" GREEN="\\033[1;32m" @@ -400,7 +398,7 @@ forceUpdate(){ # doSafeUpdate(){ cd "$arkserverroot" - + if isUpdateNeeded; then while [ ! `find $arkserverroot/ShooterGame/Saved/SavedArks -mmin -1 -name $serverMap.ark` ]; do echo "`timestamp`: Save file older than 1 minute. Delaying update." >> "$logdir/update.log" From aec137e7bf3680058caa6be82625bee212546f51 Mon Sep 17 00:00:00 2001 From: Sispheor Date: Thu, 16 Jul 2015 23:01:15 +0200 Subject: [PATCH 3/4] fix readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 097f4c9..a092c61 100644 --- a/README.md +++ b/README.md @@ -109,10 +109,10 @@ arkmanager broadcast "Hi, admin there" #### arkmanager saveworld Saves the current world. -#### arkmanager rcon +#### arkmanager rconcmd Run a rcon command on the server. Example: ``` -arkmanager rcon "ListPlayers" +arkmanager rconcmd "ListPlayers" ``` Full list of available command here: https://www.streamline-servers.com/billing/knowledgebase/75/ARK-Survival-Evolved-Admin-Commands.html From 8339b8e6a339e1e42fd9c68e0fbdf7f3a1af7df1 Mon Sep 17 00:00:00 2001 From: Marcq Nicolas Date: Fri, 17 Jul 2015 14:37:25 +0200 Subject: [PATCH 4/4] fix admin command URL. Now use steam community --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a092c61..9cafe98 100644 --- a/README.md +++ b/README.md @@ -114,7 +114,7 @@ Run a rcon command on the server. Example: ``` arkmanager rconcmd "ListPlayers" ``` -Full list of available command here: https://www.streamline-servers.com/billing/knowledgebase/75/ARK-Survival-Evolved-Admin-Commands.html +Full list of available command here: http://steamcommunity.com/sharedfiles/filedetails/?id=454529617&searchtext=admin ## Credits