Skip to content

Commit d74397b

Browse files
authored
Update Installation.md
1 parent 6e40f67 commit d74397b

File tree

1 file changed

+18
-13
lines changed

1 file changed

+18
-13
lines changed

docs/server/Installation.md

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ If you are using the FCNPC plugin, please stop for now because this plugin does
1010

1111
Download the latest version of open.mp server files from [https://github.com/openmultiplayer/open.mp/releases](https://github.com/openmultiplayer/open.mp/releases/latest)
1212

13-
![](https://github.com/adib-yg/openmp-server-installation/blob/main/screenshots/Screenshot%20(1).png)
13+
![](https://raw.githubusercontent.com/adib-yg/openmp-server-installation/refs/heads/main/screenshots/Screenshot%20(1).png)
1414

1515
- `open.mp-win-x86.zip` **Windows** Server
1616
- `open.mp-linux-x86.tar.gz` **Linux** Server
@@ -20,7 +20,7 @@ Download the latest version of open.mp server files from [https://github.com/ope
2020

2121
Extract the `.zip` or `.tar.gz` archive contents on your disk
2222

23-
![](https://github.com/adib-yg/openmp-server-installation/blob/main/screenshots/Screenshot%20(3).png)
23+
![](https://raw.githubusercontent.com/adib-yg/openmp-server-installation/refs/heads/main/screenshots/Screenshot%20(3).png)
2424

2525
:::note
2626

@@ -80,7 +80,7 @@ Put the following plugins in the **../components** folder, not in the **../plugi
8080

8181
Open the qawno IDE program located at **Server/qawno/qawno.exe**
8282

83-
![](https://github.com/adib-yg/openmp-server-installation/blob/main/screenshots/Screenshot%20(5).png)
83+
![](https://raw.githubusercontent.com/adib-yg/openmp-server-installation/refs/heads/main/screenshots/Screenshot%20(5).png)
8484

8585
## Step 7
8686

@@ -102,23 +102,17 @@ replace with
102102

103103
then press **F5** to compile.
104104

105-
:::note
106-
107-
If you are get error or warning, see [Compiler errors and warnings](#compiler-errors-and-warnings)
108-
109-
:::
110-
111105
## Step 9
112106

113107
Open **[config.json](https://www.open.mp/docs/server/config.json)** file with Notepad or other IDEs
114108

115-
![](https://github.com/adib-yg/openmp-server-installation/blob/main/screenshots/Screenshot%20(9).png)
109+
![](https://raw.githubusercontent.com/adib-yg/openmp-server-installation/refs/heads/main/screenshots/Screenshot%20(9).png)
116110

117111
## Step 10
118112

119113
Edit **config.json**
120114

121-
![](https://github.com/adib-yg/openmp-server-installation/blob/main/screenshots/Screenshot%20(11).png)
115+
![](https://raw.githubusercontent.com/adib-yg/openmp-server-installation/refs/heads/main/screenshots/Screenshot%20(11).png)
122116

123117
Find
124118

@@ -211,7 +205,7 @@ Run the server
211205

212206
Open the `omp-server.exe` program
213207

214-
![](https://github.com/adib-yg/openmp-server-installation/blob/main/screenshots/Screenshot%20(10).png)
208+
![](https://raw.githubusercontent.com/adib-yg/openmp-server-installation/refs/heads/main/screenshots/Screenshot%20(10).png)
215209

216210
- **Linux**
217211

@@ -220,6 +214,7 @@ Open the `omp-server.exe` program
220214
```
221215

222216
## Compiler errors and warnings
217+
223218
- **warning 213: tag mismatch: expected tag "?", but found none ("_")**:
224219

225220
For example:
@@ -256,13 +251,15 @@ But you can ignore it for now:
256251
// Use #pragma warning disable 213
257252
```
258253

254+
<br />
255+
259256
<hr />
260257

261258
- **warning 234: function is deprecated (symbol "TextDrawColor") Use `TextDrawColour**
262259

263260
Press **CTRL + F** in qawno and replace all `TextDrawColor` to `TextDrawColour`
264261

265-
![](https://github.com/adib-yg/openmp-server-installation/blob/main/screenshots/Screenshot%20(7).png)
262+
![](https://raw.githubusercontent.com/adib-yg/openmp-server-installation/refs/heads/main/screenshots/Screenshot%20(7).png)
266263

267264
<br />
268265

@@ -273,6 +270,8 @@ Or if you prefer you can use the mixed spellings:
273270
#include <open.mp>
274271
```
275272

273+
<br />
274+
276275
<hr />
277276

278277
- **warning 234: function is deprecated (symbol "GetPlayerPoolSize") This function is fundamentally broken.**
@@ -304,6 +303,8 @@ public MyFunction(string[])
304303
public MyFunction(const string[])
305304
```
306305

306+
<br />
307+
307308
<hr />
308309

309310
- **error 025: function heading differs from prototype**
@@ -324,6 +325,8 @@ public OnPlayerEditAttachedObject(playerid, response, index, modelid, boneid, Fl
324325
public OnPlayerEditAttachedObject(playerid, EDIT_RESPONSE:response, index, modelid, boneid, Float:fOffsetX, Float:fOffsetY, Float:fOffsetZ, Float:fRotX, Float:fRotY, Float:fRotZ, Float:fScaleX, Float:fScaleY, Float:fScaleZ)
325326
```
326327

328+
<br />
329+
327330
<hr />
328331

329332
:::note
@@ -351,6 +354,8 @@ Already included in `/qawno/upgrader` folder.
351354

352355
**This warning will not affect the behavior of the server.**
353356

357+
<br />
358+
354359
<hr />
355360

356361
```

0 commit comments

Comments
 (0)