Skip to content

Commit 0ac6c27

Browse files
committed
Update links and fix formatting on README.md
1 parent 88b623e commit 0ac6c27

File tree

1 file changed

+16
-13
lines changed

1 file changed

+16
-13
lines changed

README.md

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Multi Theft Auto: San Andreas
22

3-
[![Build Status](https://github.com/multitheftauto/mtasa-blue/workflows/Build/badge.svg?event=push&branch=master)](https://github.com/multitheftauto/mtasa-blue/actions?query=branch%3Amaster+event%3Apush) [![Unique servers online](https://img.shields.io/endpoint?url=https%3A%2F%2Fmtasa.com%2Fapi%2Fservers-shields.io.json)](https://community.multitheftauto.com/index.php?p=servers) [![Unique players online](https://img.shields.io/endpoint?url=https%3A%2F%2Fmtasa.com%2Fapi%2Fplayers-shields.io.json)](https://multitheftauto.com) [![Unique players last 24 hours](https://img.shields.io/endpoint?url=https%3A%2F%2Fmtasa.com%2Fapi%2Funique-players-shields.io.json)](https://multitheftauto.com) [![Discord](https://img.shields.io/discord/278474088903606273?label=discord&logo=discord)](https://discord.com/invite/mtasa) [![Crowdin](https://badges.crowdin.net/e/f5dba7b9aa6594139af737c85d81d3aa/localized.svg)](https://multitheftauto.crowdin.com/multitheftauto)
3+
[![Build Status](https://github.com/multitheftauto/mtasa-blue/workflows/Build/badge.svg?event=push&branch=master)](https://github.com/multitheftauto/mtasa-blue/actions?query=branch%3Amaster+event%3Apush) [![Unique servers online](https://img.shields.io/endpoint?url=https%3A%2F%2Fmultitheftauto.com%2Fapi%2Fservers-shields.io.json)](https://community.multitheftauto.com/index.php?p=servers) [![Unique players online](https://img.shields.io/endpoint?url=https%3A%2F%2Fmultitheftauto.com%2Fapi%2Fplayers-shields.io.json)](https://multitheftauto.com) [![Unique players last 24 hours](https://img.shields.io/endpoint?url=https%3A%2F%2Fmultitheftauto.com%2Fapi%2Funique-players-shields.io.json)](https://multitheftauto.com) [![Discord](https://img.shields.io/discord/278474088903606273?label=discord&logo=discord)](https://discord.com/invite/mtasa) [![Crowdin](https://badges.crowdin.net/e/f5dba7b9aa6594139af737c85d81d3aa/localized.svg)](https://multitheftauto.crowdin.com/multitheftauto)
44

55
[Multi Theft Auto](https://www.multitheftauto.com/) (MTA) is a software project that adds network play functionality to Rockstar North's Grand Theft Auto game series, in which this functionality is not originally found. It is a unique modification that incorporates an extendable network play element into a proprietary commercial single-player PC game.
66

@@ -27,13 +27,15 @@ Using a framework based on resources has a number of advantages. It allows conte
2727
Our project's code repository can be found on the [multitheftauto/mtasa-blue](https://github.com/multitheftauto/mtasa-blue/) Git repository at [GitHub](https://github.com/). We are always looking for new developers, so if you're interested, here are some useful links:
2828

2929
* [Coding guidelines](https://github.com/multitheftauto/mtasa-blue/blob/master/CONTRIBUTING.md#contributors-guide)
30-
* [Nightly Builds](https://nightly.mtasa.com/)
30+
* [Nightly Builds](https://nightly.multitheftauto.com/)
3131
* [Milestones](https://github.com/multitheftauto/mtasa-blue/milestones)
3232

3333
### IDE Setup
34-
If not using Visual Studio 2017, download and install the [EditorConfig](https://visualstudiogallery.msdn.microsoft.com/c8bccfe2-650c-4b42-bc5c-845e21f96328) plugin to automatically set up your IDE for the correct formatting.
34+
35+
If not using Visual Studio 2017, download and install the [EditorConfig](https://marketplace.visualstudio.com/items?itemName=EditorConfigTeam.EditorConfig) plugin to automatically set up your IDE for the correct formatting.
3536

3637
### Build Instructions
38+
3739
#### Windows
3840

3941
Prerequisites
@@ -98,30 +100,31 @@ $ docker pull ghcr.io/multitheftauto/mtasa-blue-build:latest
98100
```
99101

100102
| Architecture | Docker image tag | Required build-time CLI-arguments |
101-
| ------------ | ---------------- | ------------------------------- |
102-
| x86 | latest | `-e BUILD_ARCHITECTURE=x86` |
103-
| x86_64 | latest | |
104-
| arm | armhf | |
105-
| arm64 | arm64 | |
106-
103+
| ------------ | ---------------- | --------------------------------- |
104+
| x86 | latest | `-e BUILD_ARCHITECTURE=x86` |
105+
| x86_64 | latest | |
106+
| arm | armhf | |
107+
| arm64 | arm64 | |
107108

108109
**Building with Docker**
109110

110111
These examples assume that your current directory is the mtasa-blue checkout directory. You should also know that `/build` is the code directory required by our Docker images inside the container. If the current directory is not a valid git repository, it instead create a (shallow) clone of the mtasa-blue repository. After compiling, you will find the resulting binaries in `./Bin`. To build the unoptimised debug build, add `-e BUILD_CONFIG=debug` to the docker run arguments.
111112

112-
| Architecture | Build command |
113-
| ------------ | -------------------------------------------------------------------------------------------- |
113+
| Architecture | Build command |
114+
| ------------ | ---------------------------------------------------------------------------------------------------------------- |
114115
| x86 | ``` docker run --rm -v `pwd`:/build -e BUILD_ARCHITECTURE=x86 ghcr.io/multitheftauto/mtasa-blue-build:latest ``` |
115116
| x86_64 | ``` docker run --rm -v `pwd`:/build ghcr.io/multitheftauto/mtasa-blue-build:latest ``` |
116117
| arm | ``` docker run --rm -v `pwd`:/build ghcr.io/multitheftauto/mtasa-blue-build:armhf ``` |
117118
| arm64 | ``` docker run --rm -v `pwd`:/build ghcr.io/multitheftauto/mtasa-blue-build:arm64 ``` |
118119

119120
### Premake FAQ
121+
120122
#### How to add new C++ source files?
121-
Execute `win-create-projects.bat`.
123+
124+
Execute `win-create-projects.bat`
122125

123126
## License
124127

125-
Unless otherwise specified, all source code hosted on this repository is licensed under the GPLv3 license. See the LICENSE file for more details.
128+
Unless otherwise specified, all source code hosted on this repository is licensed under the GPLv3 license. See the [LICENSE](./LICENSE) file for more details.
126129

127130
Grand Theft Auto and all related trademarks are © Rockstar North 1997–2022.

0 commit comments

Comments
 (0)