13.09.2020

Starbound pirate servers version 1.0 5 Russian. How to create a Starbound server using the Steam CMD



Starbound is a super-visionary fantasy sandbox RPG that is the spiritual successor!

In this unique game, you have complete freedom of action. You can destroy everyone in your path, explore dungeons, extract valuable materials from mines, catch monsters and use them as your companions, build fortresses, ride mechs and much, much more.

GOG version has been updated to v1.3.4.

The game has been updated from version 1.4.3 to 1.4.4 (Bounty Hunter Update).

The RUSSIAN VERSION of the game has been updated to v1.4.4!

Features of the game:
* 7 playable races.
* A randomly generated universe with an endless number of randomly generated planets.
* All items can be exchanged in online games.
* Randomly generated dungeons with unique enemies.
* Thousands of items.
* Advanced crafting system.
* PVP battles.
* Arrangement of your ship for every taste.
* Complete terraforming of your planet.
* Fierce boss fights.
* Randomly generated weapons.
* Farming, hunting and survival.
* Mod support.
* Multi-platform multiplayer

Creative Mode:
With this mod, you can get a creative mode in the game, as well as access to all items, tech and blocks!
This is simply an indispensable mod for all players who want to quickly and without any problems get the maximum opportunities for your playable character. In addition, this mod is perfect for all players who like to build beautiful buildings and space bases in Starbound!

Agree, everyone wants to get the most advanced weapons and armor, their own mech robot, as well as a modern space base, and not on one planet, but preferably in every sector of the galaxy. And with a mod Creative Mode you can make your dream come true!

Maud Creative Mode for Starbound adds the following items and features to the game:
- Box of infinity. Special table for crafting items, which is only available in the mod Creative Mode... This is a kind of workbench where you can create any tech and improvement in just 1 pixel! Infinity box is needed to craft special workbenches from the mod Creative Mode.
- Spawn box. Another type of custom workbench where you can create any in-game item in just 1 pixel!
- Unlocker Tech. An item with which you can unlock all techs and apply them to your character.
- Sector unlocker. An item with which you can do without special efforts unlock all sectors of the galaxy available in the game.
- Armor of Invincibility. A set of armor for your character, based on the costume of the main developer Starbound- Tiy. Thanks to this armor, you will receive complete invulnerability in the game!
- Super Manipulator. An improved version of the manipulator, which will allow you to dig 5x5 blocks at the same time, at great speed. The perfect building tool!
- A bag of pixels. This item will allow you to get 1000 pixels right after you put it in the oven.
- Super bandages. Allows you to get maximum health in just an instant!
- Improved fuel. Thanks to this type of fuel, you can refuel your spaceship as much as possible!

To enable the mod Creative Mode roast the wooden platform in the oven.
Press C and create an Infinity Box.
Place the Infinity Box in a convenient place and create any items!
-------------------
Fully Customizable Ship:
If you are not satisfied with what is in Starbound you cannot completely change your spaceship, and you do not want to download new spaceships, mod Fully Customizable Ship is exactly what you need!

Just imagine that now you can completely change your spaceship and make it out of any blocks! Do you want to fly in a spaceship made of mud? No problem! Or maybe you decide to make yourself a New Year's spaceship out of new Christmas blocks? Please! Now you can make your spaceship however you like!

The list of changes can be viewed.

In Starbound, you take on the role of a character who’s just fled from their home planet, only to crash-land on another. From there you’ll embark on a quest to survive, discover, explore and fight your way across an infinite universe.

You’ll encounter procedurally generated creatures and weapons, discover populated villages and abandoned temples. Explore planets dotted with dungeons, eyeball trees and treasure. Make use of over a hundred materials and over one thousand in-game objects to build a sprawling modern metropolis or a sleepy secluded cabin in the woods, and do all of it alone or with friends!

Starbound lets you live out your own story of space exploration, discovery and adventure. Settle down and farm the land, hop from planet to planet claiming resources, or make regular visits to populated settlements, taking on jobs and earning a living. NPCs are scattered about the worlds, offering quests and challenges for those looking for a little extra excitement in their lives.

System requirements:
2.0 GHz processor
2GB RAM
2GB disk space
256MB video ram, capable of shader model 1.1



If you are copyright holder of this material and you are against posting information about this material, or links to it - read our information for copyright holders and send us a letter. If you are against posting this material - the administration will gladly meet you!

How to create a server in Starbound

1 (20%) 1 votes

This guide is aimed at helping people who have just come to the world of server administration and have wondered how to create a server in Starbound having a machine with Linux installed on hand (although in general, there may not be many differences from installing on the same Windows, provided that the basic concepts of both systems are understood). I will give the installation using the example of a 64-bit Debian 7 system.

How do I create a Starbound server using the Steam CMD?

Let's clarify right away that you must have an account with the purchased game, the data of which (login, password) will need to be entered to authorize and download the server itself. Most of the commands will be without description, since they were previously described when writing previous articles (about the same, for example).

  • We have to update all repos and packages for installation latest versions ON

apt-get update
apt-get upgrade

  • Since I have a 64-bit system, I will need to install additional packages to fully run 32-bit applications (the same SteamCMD).

apt-get install lib32gcc1

  • In addition to this library, it is worth installing an additional one for the Starbound server itself

apt-get install lib32gcc1

  • We create a user to run the server executable files. We come up with a password for him, all other parameters can be left blank. We agree to add.

adduser starbound

  • We go under the newly created user into the system
  • Go to our home directory (by default in the / home directory)

cd / home / starbound

  • Create a directory for SteamCMD and go to it

mkdir steamcmd
cd steamcmd

  • Download and unpack the Steam executable files

wget https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz
tar -xvzf steamcmd_linux.tar.gz

  • Launching SteamCMD
  • We are waiting for the update process. Then we go into the system using the account from which Starbound was acquired

Here we may encounter an error: “Logging in user‘ user ’to Steam Public… Login Failure: Account Logon Denied. This computer has not been authenticated for your account using Steam Guard. " Fear not, it's just Steam Guard protection. We go to the mail on which the account is registered and copy the received code directly into the required field. Press Enter. The process will go further.

  • Now we enter the directory where the server will be installed

force_install_dir / home / starbound / server

  • And we start directly downloading the Starbound server files via Steam

app_update 211820 validate

  • After the download is successfully completed, enter the quit command, thereby exiting SteamCMD and go to the directory with the downloaded server

cd / home / starbound / server

  • Let's create a script to update our server

nano starbound_update.sh

  • A window will appear before us text editor nano, add the following lines there

#! / bin / bash
./steamcmd.sh + login user pass + force_install_dir / home / starbound / server + app_update 211820 + quit

  • We enter our username and password, as well as adjust the directories. We exit the editor with the CTRL - X combination, along the way, agreeing to make changes to the file. Now we will assign execution rights to the file and check it

chmod 700 starbound_update.sh
./starbound_update.sh

  • If everything is done correctly, at the end we will see a message that our server is up-to-date and does not need to be updated. Getting started

cd starbound / linux32 // for 32 bit systems
./starbound_server

cd starbound / linux64 // for 64 bit systems
./starbound_server

If all the previous steps were performed correctly, you will start a new, clean server of the game. I hope this article was useful to you. I will be glad to hear about all the problems that have arisen and help in the comments. Stay tuned.

V recent times pixel games are winning the love of millions of players around the world. The wonderful game Starbound was no exception. At first glance, the primitive gameplay hides almost endless possibilities. This superb sandbox gives the player the opportunity not only to explore and completely destroy the world, but also to travel through limitless space in their own ship. When creating a character, you can choose one of 7 races, and then get a ship that can be improved and developed. The main reason What made Starbound so popular is the procedural graphics and the world at large. That is, as the game progresses, planets, objects and even the inhabitants of the universe are created randomly. All this gives almost limitless possibilities in research and creation of objects. There are many quests and rewards for variety in the game, so the player will always find something to do.

The fact that the game offers almost limitless possibilities is evidenced by the fact that you can make your home out of the found planet, and the planet can be gradually studied and changed for yourself (terraform). This is all thanks to the procedurally generated world. Starbound is so diverse that it allows some to peacefully raise animals on their own planet, others to travel through boundless space in search of rare items and interesting quests, and the most ardent, who lack action, arrange space battles and fights with various bosses.

System requirements:
System: Windows XP, Vista, 7
Processor: Core 2 Duo
RAM: 2 Gb
Video: 256 Mb, Shader Model 1.1, with DirectX 9.0c support, OpenGL 2.1
Audio: sound device DirectX 9.0c compatible
Hard drive: 2 Gb

Released: 2016
Genre: RPG, Adventure, Survival, MMO
Developer: Chucklefish
Platform: PC
Interface language: English, Russian(not complete)


2021
maccase.ru - Android. Brands. Iron. news