Skip to content
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

Add FAQs section to README with 4 questions #1260

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,24 @@ Note that this version may be slightly behind the git version, but it will be a
* Run something like this when starting your server: `(cd minetest/worlds/yourworld && redis-server) | <command to launch your minetest server>`
* If you run your Minetest server using a system service it is recommended to run redis-server on a seperate service, with the Minetest service depending upon it

## FAQ

### 1. Why mobs aren't added?

Mobs have been suggusted from very early days of CTF from several. The question has always been no. The short answer is that mobs use a lot of resources without adding much gameplay. The longer answer is that smart mobs usually require a lot of CPU, the network usage is high. The same resource could be allocated to more players who add much more to the gameplay comparing to mobs. However, there are many unofficial servers which might have mods, you can play there if you like them. Or, since CTF is FOSS, free open source software, you can fork it and do whatever you like. Maybe you could prove the developers they are wrong by adding efficient *and* smart mobs :)
farooqkz marked this conversation as resolved.
Show resolved Hide resolved

### 2. I'm trying to run a CTF server but it crashes soon after it gets started.

If you are having a small VPS, like with 2GB of RAM, it is likely that the crash is because of lack of memory. You can turn `ctf_low_ram_mode` on my setting it to `true` in your `minetest.conf` file(or whatever your config file name is) to solve the issue.
farooqkz marked this conversation as resolved.
Show resolved Hide resolved

### 3. I want to host a CTF public server with X players. How much resources do I need?

TBD
Comment on lines +49 to +51
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This varies a LOT, and is not something I want to answer. Just host a server with what you can afford, with whatever limit you want, and adjust it as you become familiar with the capabilities of your server

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What if I want to host a server for 24 players. What are the recommended specs? This question is about this

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are a million different answers, and it's not a question specific to CTF, or it shouldn't be if things were coded right at least


### 4. I have started a server but rankings don't persist.

That's because they are not saved in somewhere persistant. Launch a Redis instance and configure `ctf_rankings_backend` to `redis` and `ctf_rankings_server_port` to your instance's port on localhost.

## Starting a game (GUI instructions)
* Create a new `singlenode` world
* Turn on `Enable Damage` and `Host Server`, turn off `Creative Mode`, *memorize* your port
Expand Down
Loading