You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: frontend/blog/2020-11-23-interview.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -172,7 +172,7 @@ yeah let's move on to the next bigger things
172
172
173
173
**Potassium:**
174
174
yeah that's right. alright so we had a bunch of questions on our forum, which by the way is
175
-
http://burgershot.gg so sign up there!
175
+
https://forum.open.mp so sign up there!
176
176
so i guess let's just get into them.
177
177
the most pressing question right now obviously is regarding the recent samp drama. so for those who don't know the samp forum and the samp wiki have been offline for a few weeks now, and we don't want to make assumptions but it doesn't look like they're coming
178
178
back anytime soon. i think that's a pretty fair assumption to make.
@@ -261,7 +261,7 @@ i think it was like polish, brazilian, and... yeah... we lacked a lot.
261
261
yeah translating that is a definitely a priority and we've got some good people to help us with that so that's brilliant
262
262
263
263
**Potassium:**
264
-
yeah that's awesome. just for the record, http://burgershot.gg is our forum and http://open.mpdocs is our wiki, so go there!
264
+
yeah that's awesome. just for the record, https://forum.open.mp is our forum and https://open.mp/docs is our wiki, so go there!
265
265
so obviously the next discord alert noise that scared me, sorry! the next most frequently asked question is and always will be is the release date. so obviously we don't have a date, we will never give a specific date because we're all volunteers and do this in our free time, but do we have a rough idea of maybe like a percentage of how far along we are before we can make it public? are 1% through? are we halfway through? are we 90% through? what do you think?
266
266
267
267
**JustMichael:**
@@ -748,7 +748,7 @@ so i think the really important thing to take away from that is that we are a no
748
748
but that doesn't mean there won't be ways to advertise. and if you have ideas about thatm post on the forums!
749
749
750
750
**Potassium:**
751
-
yes, and that is http://burgershot.gg - sign up!
751
+
yes, and that is https://forum.open.mp - sign up!
752
752
753
753
**Y_Less:**
754
754
that's something we've discussed for like two years and we have no conclusion
@@ -937,7 +937,7 @@ yes, that's the second version
937
937
that's the fun part
938
938
939
939
**Potassium:**
940
-
people were asking about other communities that speak different languages and such, and they kind of want to know what we're doing to work with those communities and how we plan on spreading the word to those communities. i think it's fair to say that we're working on that, we're recruiting volunteers i guess to translate our wiki pages and whatever else to other languages, to moderate language sections on the forum, http://burgershot.gg by the way, and generally just to be the point of contact between our team and the other communities i guess
940
+
people were asking about other communities that speak different languages and such, and they kind of want to know what we're doing to work with those communities and how we plan on spreading the word to those communities. i think it's fair to say that we're working on that, we're recruiting volunteers i guess to translate our wiki pages and whatever else to other languages, to moderate language sections on the forum, https://forum.open.mp by the way, and generally just to be the point of contact between our team and the other communities i guess
941
941
942
942
**JustMichael:**
943
943
we've made a huge effort already to translate the wiki, so we're making an improvement to
Copy file name to clipboardExpand all lines: frontend/blog/2022-09-08-server-beta-9.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,18 @@
1
1
---
2
2
slug: server-beta-9
3
-
title: SA-MP 0.3DL compatibility plus other added features and bug fixes - SERVER BETA RELEASE 9
3
+
title: SA-MP 0.3.DL compatibility plus other added features and bug fixes - SERVER BETA RELEASE 9
4
4
authors: potassium
5
5
---
6
6
7
-
We've just released open.mp server beta 9, bringing major improvements, fixes, and the highly anticipated SA:MP 0.3DL support! This update includes new features, better plugin compatibility, and enhanced server configuration options.
7
+
We've just released open.mp server beta 9, bringing major improvements, fixes, and the highly anticipated SA:MP 0.3.DL support! This update includes new features, better plugin compatibility, and enhanced server configuration options.
8
8
9
9
<!-- truncate -->
10
10
11
11
Posted in our Discord server announcements channel by kseny ([discord.gg/samp](https://discord.gg/samp))
12
12
13
13
Hello everyone
14
14
15
-
We have just released open.mp server beta 9, fixing several reported issues and adding several new features. The most notable change being - SA:MP 0.3DL support. You can now run 0.3.7 and 0.3.DL compatible servers from the same binary.
15
+
We have just released open.mp server beta 9, fixing several reported issues and adding several new features. The most notable change being - SA:MP 0.3.DL support. You can now run 0.3.7 and 0.3.DL compatible servers from the same binary.
Copy file name to clipboardExpand all lines: frontend/blog/2023-01-05-release-candidate-1.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ A few terms to get you started, so you can start to understand what it is that y
92
92
93
93
-*Component* - A logical individual piece of the server, like objects or pickups. Ones you don't need don't need to be loaded.
94
94
-*Extension* - Code that extends another bit of code. You can write component extensions, but the most common ones are player extensions, which define some structure of data to be associated with a player in addition to all their normal data like health and weapons.
95
-
-*UID* - *U*nique *ID*entifier, a number that represents your component, and your component alone. This ia always required and can be got here: http://open.mp/uid
95
+
-*UID* - *U*nique *ID*entifier, a number that represents your component, and your component alone. This ia always required and can be got here: https://open.mp/uid
96
96
-*Entity* - A thing, usually a thing a player can interact with, and which you might have a lot of. Objects are entities, but other players are also entities, even commands in a processor could be called entities.
97
97
-*Pool* - Something that holds entities. When you have a lot you need to be able to access them by name or ID in some way, this is what a pool does.
98
98
-*Interface* - Components use an abstract base class as an interface. This declares which methods a component has, but doesn't contain the code for the methods. Interfaces are passed around so that components can communicate with each other, but implementations are kept private.
Copy file name to clipboardExpand all lines: frontend/docs/awesome.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ description: A curated list of useful tools, libraries, gamemodes, filterscripts
24
24
-**[fixes.inc](https://github.com/pawn-lang/sa-mp-fixes)** - Extremely optmised fixes for a huge number of SA:MP server bugs. Plug-and-play.
25
25
-**[YSI-Includes](https://github.com/pawn-lang/YSI-Includes)** - The oldest, largest, most tested, and well supported library for SA:MP/pawn, providing a huge number of new game and language features.
26
26
-**[foreach](https://github.com/Open-GTO/foreach)** - foreach standalone include (non y_iterate version).
27
-
-**[amx_assembly](https://github.com/Zeex/amx_assembly)** - Low-level access to the pawn script itself.
27
+
-**[amx_assembly](https://github.com/pawn-lang/amx_assembly)** - Low-level access to the pawn script itself.
28
28
-**[md-sort](https://github.com/oscar-broman/md-sort)** - Sort multi-dimensional arrays in Pawn. Modifies the array's internal pointers instead of copying around data.
29
29
-**[indirection](https://github.com/Y-Less/indirection)** - System for passing pointers and calling functions indirectly, with abstract methods to customise calls.
30
30
-**[code-parse.inc](https://github.com/Y-Less/code-parse.inc)** - Parse and customise pawn code at compile-time.
@@ -69,9 +69,9 @@ description: A curated list of useful tools, libraries, gamemodes, filterscripts
69
69
70
70
## Plugins
71
71
72
-
-**[JIT](https://github.com/Zeex/samp-plugin-jit)** - Once your code is stable, use this to speed it up significantly.
73
-
-**[CrashDetect](https://github.com/Zeex/samp-plugin-crashdetect)** - Development tool to find bugs during testing.
74
-
-**[Profiler](https://github.com/Zeex/samp-plugin-profiler)** - Performance profiler plugin for SA-MP server.
72
+
-**[JIT](https://github.com/Foundation-PAWN/samp-plugin-jit-backup)** - Once your code is stable, use this to speed it up significantly.
73
+
-**[CrashDetect](https://github.com/AmyrAhmady/samp-plugin-crashdetect)** - Development tool to find bugs during testing.
74
+
-**[Profiler](https://github.com/Foundation-PAWN/samp-plugin-profiler-backup)** - Performance profiler plugin for SA-MP server.
75
75
-**[sscanf](https://github.com/Y-Less/sscanf)** - Convert strings to multiple values, ints, floats, players, etc.
76
76
-**[MySQL Plugin](https://github.com/pBlueG/SA-MP-MySQL)** - Connect your server to a MySQL server.
77
77
-**[Streamer Plugin](https://github.com/samp-incognito/samp-streamer-plugin)** - Bypass many SA:MP limits, like objects and pickups.
@@ -129,8 +129,8 @@ description: A curated list of useful tools, libraries, gamemodes, filterscripts
129
129
130
130
Now you can make your scripts in languages other than pawn without any plugin using open.mp. See [this blog post](https://www.open.mp/blog/release-candidate-1)
131
131
132
-
-**[sampsdk](https://github.com/Zeex/samp-plugin-sdk)** - This is the bare minium that you need to develop plugins.
133
-
-**[sampgdk](https://github.com/Zeex/sampgdk)** - C/C++ Language Support for writing a gamemode for SA:MP
132
+
-**[sampsdk](https://github.com/maddinat0r/samp-plugin-sdk)** - This is the bare minimum that you need to develop plugins.
133
+
-**[sampgdk](https://github.com/Foundation-PAWN/sampgdk-backup)** - C/C++ Language Support for writing a gamemode for SA:MP
134
134
-**[SampSharp](https://github.com/ikkentim/SampSharp)** - C# Language Support for writing a gamemode for SA:MP
135
135
-**[.NET Plugin](https://github.com/Seregamil/.NET-plugin)** - C# Language Support for writing a plugin for SA:MP
136
136
-**[sampgo](https://github.com/sampgo/sampgo)** - Go Language Support for writing a gamemode/plugins for SA:MP
Copy file name to clipboardExpand all lines: frontend/docs/client/ClientOnLinux.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ You DO NOT get a working GUI, this must be executed in a Wine prefix via command
21
21
22
22
1. Ensure you have a Wine prefix created with GTA San Andreas installed.
23
23
2. Download the [open.mp](https://github.com/openmultiplayer/launcher/releases/latest) launcher and install it inside the Wine prefix.
24
-
3. Download the [SA-MP client](https://github.com/KrustyKoyle/files.sa-mp.com-Archive) and install it in the same Wine Prefix.
24
+
3. Download the [SA-MP client](https://www.sa-mp.mp/downloads/) and install it in the same Wine Prefix.
25
25
4. Download the [omp-client.dll](https://assets.open.mp/omp-client.dll) and copy it to the `AppData\Local\mp.open.launcher\omp\` folder of the main user in your prefix.
26
26
27
27
Finally, you can execute the open.mp launcher through the Wine prefixes CLI or write it to a .bat script for easy launching.
Copy file name to clipboardExpand all lines: frontend/docs/client/CommonClientIssues.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ sidebar_label: Common Client Issues
5
5
6
6
### I get the error "San Andreas cannot be found"
7
7
8
-
San Andreas Multiplayer is **not** a stand-alone program! It adds multiplayer functionality to San Andreas, and thus you need GTA San Andreas for the PC - it also needs to be **EU/US v1.0**, other versions such as v2.0 or Steam and Direct2Drive versions will not work. [Click here to download a patch to downgrade your GTA: SA version to 1.0](http://grandtheftauto.filefront.com/file/GTA_SA_Downgrader_Patch;74661)
8
+
San Andreas Multiplayer is **not** a stand-alone program! It adds multiplayer functionality to San Andreas, and thus you need GTA San Andreas for the PC - it also needs to be **EU/US v1.0**, other versions such as v2.0 or Steam and Direct2Drive versions will not work. [Click here to download a patch to downgrade your GTA: SA version to 1.0](https://www.gamefront.com/games/grand-theft-auto-san-andreas/file/gta-sa-downgrader-patch)
9
9
10
10
### I cannot see any servers in SA:MP browser
11
11
@@ -20,7 +20,7 @@ You are not supposed to see the singleplayer options (new game, load game, etc)
20
20
21
21
:::
22
22
23
-
Singleplayer can load for 2 reasons; you have installed SA:MP to the wrong folder or you have the wrong version of San Andreas. If you have the wrong version you can downgrade your game using the GTA San Andreas downgrader. Click [here](http://grandtheftauto.filefront.com/file/GTA_SA_Downgrader_Patch;74661) to download it.
23
+
Singleplayer can load for 2 reasons; you have installed SA:MP to the wrong folder or you have the wrong version of San Andreas. If you have the wrong version you can downgrade your game using the GTA San Andreas downgrader. Click [here](https://www.gamefront.com/games/grand-theft-auto-san-andreas/file/gta-sa-downgrader-patch) to download it.
24
24
25
25
Sometimes the single player menu will be shown, but SA:MP will in fact have loaded properly. To fix this you simply need to select an item on the menu, then hit the escape key to exit out of it. SA:MP will then proceed to load.
26
26
@@ -50,7 +50,7 @@ If you have 2 monitors then there are 3 ways to solve this:
50
50
51
51
### My mouse doesn't work after exiting the pause menu
52
52
53
-
If your mouse seems to be frozen ingame while it (partially) works in the pause menu, then you should disable the multicore option [sa-mp.cfg](ClientCommands#file-sa-mpcfg"Sa-mp.cfg") (set it to 0). Continuously tapping Escape until the mouse responds again may also work, but it is not as neat a solution.
53
+
If your mouse seems to be frozen ingame while it (partially) works in the pause menu, then you should disable the multicore option [sa-mp.cfg](ClientCommands#file-sa-mpcfg"sa-mp.cfg") (set it to 0). Continuously tapping Escape until the mouse responds again may also work, but it is not as neat a solution.
0 commit comments