« Don't Starve Together » : différence entre les versions
mAucun résumé des modifications |
mAucun résumé des modifications |
||
(2 versions intermédiaires par le même utilisateur non affichées) | |||
Ligne 91 : | Ligne 91 : | ||
game_mode = endless | survival | wilderness | game_mode = endless | survival | wilderness | ||
</code> | </code> | ||
== Lancer le serveur == | |||
Une fois que tout est configuré, rendez-vous dans le répertoire | |||
<syntaxhighlight lang="Bash">/steamcmd/DST/bin</syntaxhighlight> | |||
et tapez la commande | |||
<syntaxhighlight lang="Bash"> | |||
screen -S "DST" bash -c 'LD_LIBRARY_PATH=~/dst_lib ./dontstarve_dedicated_server_nullrenderer' | |||
</syntaxhighlight> | |||
=== Token === | === Token === | ||
Ligne 101 : | Ligne 110 : | ||
'''Merci à Pymous pour son coup de patte!''' <3 | '''Merci à Pymous pour son coup de patte!''' <3 | ||
== Voir aussi == | |||
* [[Don't Starve Together/Commandes]] | |||
* [[Don't Starve Together/Prefab]] | |||
{{Commentaires}} | {{Commentaires}} |
Dernière version du 5 septembre 2015 à 09:32
Don't Starve Together | ||||
---|---|---|---|---|
![]() | ||||
Général | ||||
Catégorie | Don‘t Starve Together [edit] | |||
Métadatas | ||||
Création | 6/03/2015 | |||
Dernière révision | 5/09/2015 |
Don't Starve Together est la suite multiplayer du fameux Don't Starve de Klei Entertainements.
Installation d'un serveur
Ce tutoriel a été réalisé sur Debian 7.
Installation de Steamcmd
- Créez un utilisateur non-admin afin d'installer/mettre à jour/utiliser steamcmd
<syntaxhighlight lang="Bash"> sudo adduser steam </syntaxhighlight>
- Switchez sur cet utilisateur
<syntaxhighlight lang="Bash"> su - steam </syntaxhighlight>
- Téléchargez Steamcmd
<syntaxhighlight lang="Bash"> wget http://media.steampowered.com/installer/steamcmd_linux.tar.gz </syntaxhighlight>
- Créez un répertoire pour le client SteamCMD
<syntaxhighlight lang="Bash"> mkdir steamcmd </syntaxhighlight>
- Déplacez-y les archives
<syntaxhighlight lang="Bash"> mv steamcmd_linux.tar.gz steamcmd/ </syntaxhighlight>
- Accèdez au susdit répertoire
<syntaxhighlight lang="Bash"> cd steamcmd </syntaxhighlight>
- Extrayez-y l'archive
<syntaxhighlight lang="Bash"> tar -zxvf steamcmd_linux.tar.gz </syntaxhighlight>
Installation de Don't Starve Together
- prérequis
<syntaxhighlight lang="Bash"> sudo dpkg --add-architecture i386 #64bit sudo apt-get update sudo apt-get install lib32gcc1 #64bit </syntaxhighlight>
- C'est parti!
- Lancez le client SteamCMD
<syntaxhighlight lang="Bash"> ./steamcmd.sh </syntaxhighlight>
- Une fois lancé, vous remarquerez que votre prompt a switché sur steam> Il vous faut maintenant vous logguer avec votre compte Steam, afin d'installer les fichiers serveurs
<syntaxhighlight lang="Bash">
steam>login <username> <password> steam>force_install_dir ./DST steam>app_update 343050 steam>quit
</syntaxhighlight>
- Installation des librairies
<syntaxhighlight lang="Bash"> cd /home/steam/steamcmd/DST mkdir ~/dst_lib && cd ~/dst_lib wget https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/libc.so.6 wget https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/libpthread.so.0 wget https://github.com/dgibbs64/linuxgameservers/raw/master/Insurgency/dependencies/librt.so.1 </syntaxhighlight>
Configuration
- Recherchez votre répertoire de configuration
<syntaxhighlight lang="Bash">~/.klei/DoNotStarveTogether/</syntaxhighlight>
Et ouvrez le fichier settings.ini
default_server_name = Your unique server name
default_server_description = A very nice server description
server_port = 10999
server_password = password
max_players = 1 .. 64
pvp = true | false
game_mode = endless | survival | wilderness
Lancer le serveur
Une fois que tout est configuré, rendez-vous dans le répertoire <syntaxhighlight lang="Bash">/steamcmd/DST/bin</syntaxhighlight>
et tapez la commande <syntaxhighlight lang="Bash"> screen -S "DST" bash -c 'LD_LIBRARY_PATH=~/dst_lib ./dontstarve_dedicated_server_nullrenderer' </syntaxhighlight>
Token
Sources et références
- article Don’t Starve Together Dedicated Servers sur dont-starve-game.wikia.com
- Don't Starve Together sur Steam
Merci à Pymous pour son coup de patte! <3
Voir aussi
Commentaires
<comments />