steam starbound攻略 蛋怎么用

steam上萌化mod的名字叫啥啊,还有什么实用的mod推荐下【starbound吧】_百度贴吧
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&签到排名:今日本吧第个签到,本吧因你更精彩,明天继续来努力!
本吧签到人数:0可签7级以上的吧50个
本月漏签0次!成为超级会员,赠送8张补签卡连续签到:天&&累计签到:天超级会员单次开通12个月以上,赠送连续签到卡3张
关注:68,241贴子:
steam上萌化mod的名字叫啥啊,还有什么实用的mod推荐
steam上萌化mod的名字叫啥啊,还有什么实用的mod推荐下
搜cuter应该就能找到了
左边那个就是
贴吧热议榜
使用签名档&&
保存至快速回贴加入方首先必须没有启动游戏。在接收到邀请后直接通过邀请启动游戏。会有一个提示(数字就是主机方的64位ID),直接“确定”即可。游戏启动后会自动进入到选择角色界面,选择一个角色后就会加入到邀请方的游戏中。由于网络波动,可能长时间没有反应然后提示超时,请多重试几次。最后,和你的好友们一起愉快的玩耍吧!
本周热门攻略From Starbounder - Starbound Wiki
This guide will help new server owners setup a Starbound server on a Linux server. This guide focuses on using Ubuntu Server 16.04 and Debian 9. It is assumed Ubuntu Server/Debian is already installed and updated. If this is your first linux experience, click
to access a guide from canonical to help you install the server distribution.
It is also assumed you have forwarded the appropriate ports to allow incoming outside connections if you are behind a NAT. Starbound uses port 21025 over TCP and UDP by default and requires a 64-bit operating system to run.
This section will help you install the necessary dependencies before the server can run.
The default Ubuntu and Debian installations do not provide all the necessary packages to run the game and SteamCMD. Install all the dependencies using the following command.
$ sudo apt-get update && sudo apt-get install lib32gcc1 libvorbisfile3
lib32gcc1 is a 32-bit library required by SteamCMD. libvorbisfile3 is required by the Starbound server.
The Steam Console Client or SteamCMD is a command-line version of the Steam client. Its primary use is to install and update various dedicated servers available on Steam using a command-line interface.
This section will help you install the SteamCMD application used to download the Starbound dedicated server.
Create a non-admin user to install/update/run the server application.
$ sudo adduser steam
Switch to this new user.
$ su - steam
Create a directory for the SteamCMD client and enter it.
$ mkdir steamcmd
$ cd steamcmd
Download the SteamCMD application.
Extract the archive.
$ tar -zxvf steamcmd_linux.tar.gz
Verify files are available in the directory.
steamcmd.sh
Run the SteamCMD client.
$ ./steamcmd.sh
When you start the application, you will notice that your prompt switches to steam& instead of the traditional prompt. We will now login for the first time with our steam account and we will install the server files.
SECURITY NOTE: in the following, especially the update script, putting your password in spot of &password& might risk your Steam account security. It is recommended to leave it out, in which case you will be prompted for your password when you update.
steam&login &username& &password&
steam&force_install_dir &directory&
steam&app_update 211820
steam&quit
Tip: The directory can be named anything and be put anywhere (e.g. ./starbound_server, /home/steam/starbound, etc.). Do not use ~/ to represent the home directory for the user, user the full path instead.
When Starbound updates, we want to make sure the server is up to date so your players will be able to continue playing on it. This section will help you create a script you can run to keep the server updated.
Use vim to create the shell script.
$ vim update_starbound_server.sh
Write the script that will run SteamCMD and update the server. Press i to enter insert mode.
#!/bin/bash
./steamcmd.sh +login &username& &password& +force_install_dir &starbound server directory& +app_update 211820 validate +quit
Tip: Save and quit vim by pressing esc to leave insert mode and then using the vim command :wq.
Change the permissions of the script so it can be executed while at the same time unreadable by other users.
$ chmod 700 update_starbound_server.sh
Run the script with the following command every time you want to update the Starbound server.
$ ./update_starbound_server.sh
This section will help you on running the server once it has been downloaded and updated.
Change into the Starbound server directory for Linux.
$ cd &server directory&/linux
Run the server.
$ ./starbound_server
Once the server starts, you should see something similar to the following output
[Info] Root: Preparing Root...
[Info] Root: Done preparing Root.
[Info] Root: Scanning for asset sources in directory '../assets/'
[Info] Root: Loaded Configuration in 0. seconds
[Info] Server Version 1.3.3 (linux x86_64) Source ID: c6cfe673f047c2100d2fcb0766d4 Protocol: 743
[Info] UniverseServer: Acquiring universe lock file
[Info] UniverseServer: Loading settings
[Info] UniverseServer: Starting UniverseServer with UUID: 02cqffe8d4bf
[Info] UniverseServer: listening for incoming TCP connections on 00:00:025
Congratulations! You're now successfully running your server.
Tip: To shutdown your server, press ctrl + c.
This section provides advanced usage for server admins wishing to run their server while not having to be connected to the terminal. There are two main ways to accomplish this: using an init system, or using a terminal multiplexer.
systemd is an init system that is built into most linux systems including Ubuntu and Debian. It manages the services that start with the server. The Starbound server can be setup as a service for systemd to manage. To use systemd services, your server operating system must use systemd as its init system.
Create a file in /etc/systemd/system/starbound-server.service or the corresponding systemd service location.
$ sudo touch /etc/systemd/system/starbound-server.service
Open the file for editing.
$ sudo -e /etc/systemd/system/starbound-server.service
In the following example, the server will run as the steam user created above.
Description=StarboundServer
After=network.target
WorkingDirectory=/&server directory/linux
User=steam
Group=steam
Type=simple
ExecStart=/&server directory&/linux/starbound_server
RestartSec=15
Restart=always
KillSignal=SIGINT
WantedBy=multi-user.target
Refresh systemd using the systemctl command.
$ sudo systemctl daemon-reload
To start the server, use the start command.
$ sudo systemctl start starbound-server
You can verify that it is running with the status command.
$ sudo systemctl status starbound-server
The result should look like the following.
# systemctl status starbound-server
● starbound.service - Starbound
Loaded: loaded (/etc/systemd/system/starbound-server. vendor preset: enabled)
Active: active (running) since Sat
19:24:34 PST; 37min ago
Main PID: 644 (starbound_serve)
Tasks: 9 (limit: 4915)
CGroup: /system.slice/starbound-server.service
└─644 /&server directory&/linux/starbound_server
You can use the stop command to shutdown the server gracefully.
$ sudo systemctl stop starbound-server
To start the server upon boot you can use the enable command.
$ sudo systemctl enable starbound-server
To keep the server from starting on boot use the disable command.
$ sudo systemctl disable starbound-server
Multiplexers allow you to use multiple terminal sessions in a single session. Multiplexers will also allow you to start the Starbound server and disconnect the session without killing the server.
GNU Screen is a multiplexer which should be installed by default on most linux distributions.
If Screen is not installed you can install it with your package manager.
$ sudo apt-get install screen
Run Screen
A new terminal session will open up. You can type commands exactly as before.
Enter server directory and run the server.
$ cd &starbound server directory&/linux
$ ./starbound_server
To disconnect from the screen session, press ctrl + a d. This detaches from the session but it will still be running in the background.
Next time you want to access that terminal session, simply use:
$ screen -r
This resumes the previous screen session.
I will use byobu in a split screen environment. (Note that all commands are to be executed by your non-admin user)
Byobu Split Screen
If you use windows and access the server via SSH, you will need to set your ssh client to UTF-8 translation and Xterm R6 type of function keys/keypad
The first step is to tell byobu to start automatically on login for our non-admin user
$ byobu-enable
You can now press ctrl + a which will ask you if you want to have ctrl + a used as if you use screen or emacs. This is due to the conflict between the two applications. In screen, ctrl + a is used to send commands to the application, while in emacs ctrl + a is used to go to the begining of the line. For this guide we will use the screen type
Once we are back in our shell inside byobu, it is time to split the screen by pressing ctrl + a then pressing |
Now our screen is split in two panes horizontally. To switch between the two, we only need to press ctrl + a then press the Tab button.
On the top tab, navigate to the starbound server folder and start the starbound server
$ cd ~/steam/starbound/linux
$ ./starbound_server
On the bottom tab, simply navigate to the steam folder. This tab will be used to update the server files. I have this setup as it is more convenient than switching directories all the time.
$ cd ~/steam
Voila, you now have a fully running starbound server. Note that I did not do any port forwarding as it is something you should learn before tackling installing a server appliance. To disconnect from your byobu session, you simply need to press F6
By editing the file starbound_server.config in the storage directory, players can adjust the settings for the server they are hosting. The file is in the JSON format. If there are syntax errors in the file when the server starts then the file will be renamed starbound_server.config.old and replaced with the default configuration file.
The following values may be modified:
Description
Default Value
allowAdminCommands
on the server
allowAdminCommandsFromAnyone
to be executed by anyone on the server
allowAnonymousConnections
Allow connections from any account without authentication
allowAssetsMismatch
Allows clients with mismatched assets to join the server
anonymousConnectionsAreAdmin
Clients not authenticated are admins
List of banned IP addresses
bannedUuids
List of banned unique user ids
checkAssetsDigest
clearPlayerFiles
Wipes the server of all player files
clearUniverseFiles
Wipes the server of all world files
clientIPJoinable
clientP2PJoinable
crafting: filterHaveMaterials
gameServerBind
The IP address the server should bind to
gameServerPort
The port the server should listen on
interactiveHighlight
inventory:pickupToActionBar
Should items picked up be sent straight to the hotbar
maxPlayers
The maximum amount of players allowed on the server
maxTeamSize
The maximum amount of players allowed in a party
playerBackupFileCount
The number of backups for a player file
queryServerBind
The IP the query server should bind to
queryServerPort
The port the query server should listen on
rconServerBind
The IP the rcon server should bind to
rconServerPassword
The password used to authenticate when connecting to the rcon server
rconServerPort
The port the rcon server should listen on
rconServerTimeout
The amount of time to wait before timing out a command in milliseconds
runQueryServer
Runs the query server
runRconServer
Runs the rcon server
safeScripts
scriptInstructionLimit
The maximum allowed instructions per script
scriptInstructionMeasureInterval
scriptProfilingEnabled
scriptRecursionLimit
The maximum allowed recursive calls in a script
serverFidelity
"automatic"
serverName
Name of the server
serverOverrideAssetsDigest
serverUsers
list of users that may log into the server using
&fred& : {
&admin& : true,
&password& : &hunter2&
tutorialMessages
Show the tutorials messagessteam的starbound的存档可以云同步吗?_starbound吧_百度贴吧
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&签到排名:今日本吧第个签到,本吧因你更精彩,明天继续来努力!
本吧签到人数:0可签7级以上的吧50个
本月漏签0次!成为超级会员,赠送8张补签卡连续签到:天&&累计签到:天超级会员单次开通12个月以上,赠送连续签到卡3张
关注:68,241贴子:
steam的starbound的存档可以云同步吗?
steam的starbound的存档可以云同步吗?
贴吧热议榜
使用签名档&&
保存至快速回贴【图片】Steam上一款跟星界边境很像的2D沙盒游戏【starbound吧】_百度贴吧
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&签到排名:今日本吧第个签到,本吧因你更精彩,明天继续来努力!
本吧签到人数:0可签7级以上的吧50个
本月漏签0次!成为超级会员,赠送8张补签卡连续签到:天&&累计签到:天超级会员单次开通12个月以上,赠送连续签到卡3张
关注:68,241贴子:
Steam上一款跟星界边境很像的2D沙盒游戏
跟星界边境和泰拉瑞亚一个风格,叫炼金与魔法,今天上的
放点截图,你们感受下
羊驼倒是很逼真
像素画可以偷懒,写实就累多了
第一眼还以为泰拉来世出了,白高兴一场
确实,写实风格累死了……而且看起来像是用了 Unity
很像泰拉瑞亚 跟星界边境不太像
有点像我的世界的某个材质包……没有黑的意思
这类型游戏很多
大学生做的吗?
我想起了某个叫半人马座的山寨
可以支持一下
入手了,也是像素类的,但是画风还可以,操作不少很习惯
没点进链接之前以为你说的是那个叫《半人马座》的垃圾抄袭
青铜星玩家
百度移动游戏玩家均可认证(限百度账号),
这个有点像打造世界啊
我到是觉得半人马座还是有玩点的
也还可以了,不像国内某游戏厂商。至少画面很棒。它的玩法不像某像素生存者照搬。不过这又得很多人说。总而言之,人家做游戏不容易,入正支持下吧!
贴吧热议榜
使用签名档&&
保存至快速回贴}

我要回帖

更多关于 starboundsteam联机 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信