Skip to content

Commit 928aa9f

Browse files
committed
Replace remaining uses of "mtasa.com" with "multitheftauto.com" to reduce redundant redirects
1 parent bc45e8a commit 928aa9f

25 files changed

+50
-50
lines changed

.github/CODE_OF_CONDUCT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Please refer to the [forum rules](https://forum.mtasa.com/topic/12275-forum-rules/).
1+
Please refer to the [forum rules](https://forum.multitheftauto.com/topic/12275-forum-rules/).

.github/ISSUE_TEMPLATE/bug_report.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ body:
5959
description: |
6060
Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
6161
62-
**Warning!** Do not post any personal information or sensitive logs here. You are responsible for redacting any personal information from the logs. If you need to post sensitive logs, you can use our [private log uploader](https://upload.mtasa.com/) which will only allow MTA staff to access the file, just paste the link to it here.
62+
**Warning!** Do not post any personal information or sensitive logs here. You are responsible for redacting any personal information from the logs. If you need to post sensitive logs, you can use our [private log uploader](https://upload.multitheftauto.com/) which will only allow MTA staff to access the file, just paste the link to it here.
6363
render: shell
6464
- type: checkboxes
6565
id: terms

.github/SECURITY.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Please submit your security vulnerabilities and cheats to our [private bugtracke
77

88
Please do not submit vulnerabilities and cheats publicly, on GitHub or anywhere else.
99

10-
[private bugtracker]: https://forum.mtasa.com/forum/156-private-bugs/
10+
[private bugtracker]: https://forum.multitheftauto.com/forum/156-private-bugs/
1111

1212
## Bug Bounty
1313

@@ -16,4 +16,4 @@ We also run a bug bounty programme. Please read
1616

1717
Payment is by PayPal only -- please include your PayPal email when posting on the [private bugtracker].
1818

19-
[bounty]: https://forum.mtasa.com/topic/66858-bounty-for-finding-security-flaws-and-working-cheats-in-mta/
19+
[bounty]: https://forum.multitheftauto.com/topic/66858-bounty-for-finding-security-flaws-and-working-cheats-in-mta/

Client/core/CNewsBrowser.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ bool CNewsBrowser::OnOKButtonClick(CGUIElement* pElement)
387387
bool CNewsBrowser::OnNewsLinkButtonClick(CGUIElement* pElement)
388388
{
389389
// Visit the website
390-
ShellExecuteNonBlocking("open", "https://mtasa.com/news");
390+
ShellExecuteNonBlocking("open", "https://multitheftauto.com/news");
391391

392392
// Close the window
393393
m_pWindow->SetVisible(false);

Client/core/CVersionUpdater.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1912,7 +1912,7 @@ void CVersionUpdater::_DialogUpdateQueryError()
19121912
// Display message
19131913
GetQuestionBox().Reset();
19141914
GetQuestionBox().SetTitle(_("UPDATE CHECK"));
1915-
GetQuestionBox().SetMessage(_("An update is currently not available.\n\nPlease check www.mtasa.com"));
1915+
GetQuestionBox().SetMessage(_("An update is currently not available.\n\nPlease check www.multitheftauto.com"));
19161916
GetQuestionBox().SetButton(0, _("OK"));
19171917
GetQuestionBox().Show();
19181918
_PollAnyButton();

Client/mods/deathmatch/logic/CClientSoundManager.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ CClientSoundManager::CClientSoundManager(CClientManager* pClientManager)
4444
BASS_SetConfig(BASS_CONFIG_NET_PREBUF, 0);
4545
BASS_SetConfig(BASS_CONFIG_NET_PLAYLIST, 1); // Allow playlists
4646

47-
m_strUserAgent = SString("MTA:SA Server %s - See http://mtasa.com/agent/", g_pNet->GetConnectedServer(true));
47+
m_strUserAgent = SString("MTA:SA Server %s - See http://multitheftauto.com/agent/", g_pNet->GetConnectedServer(true));
4848
BASS_SetConfigPtr(BASS_CONFIG_NET_AGENT, (void*)*m_strUserAgent);
4949

5050
UpdateVolume();

Client/mods/deathmatch/logic/lua/CLuaMain.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ bool CLuaMain::LoadScriptFromBuffer(const char* cpInBuffer, unsigned int uiInSiz
220220
uint uiSize;
221221
if (!g_pNet->DeobfuscateScript(cpInBuffer, uiInSize, &cpBuffer, &uiSize, strNiceFilename))
222222
{
223-
SString strMessage("%s is invalid. Please re-compile at http://luac.mtasa.com/", *strNiceFilename);
223+
SString strMessage("%s is invalid. Please re-compile at http://luac.multitheftauto.com/", *strNiceFilename);
224224
g_pClientGame->GetScriptDebugging()->LogError(m_luaVM, "Loading script failed: %s", *strMessage);
225225
g_pClientGame->TellServerSomethingImportant(1003, SString("CLIENT SCRIPT ERROR: %s", *strMessage));
226226
return false;

Client/mods/deathmatch/logic/luadefs/CLuaResourceDefs.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ int CLuaResourceDefs::LoadString(lua_State* luaVM)
432432
uint uiSize;
433433
if (!g_pNet->DeobfuscateScript(cpInBuffer, uiInSize, &cpBuffer, &uiSize, m_pResourceManager->GetResourceName(luaVM) + "/loadstring"))
434434
{
435-
SString strMessage("argument 1 is invalid. Please re-compile at http://luac.mtasa.com/", 0);
435+
SString strMessage("argument 1 is invalid. Please re-compile at http://luac.multitheftauto.com/", 0);
436436
argStream.SetCustomError(strMessage);
437437
cpBuffer = NULL;
438438
g_pClientGame->TellServerSomethingImportant(1004, argStream.GetFullErrorMessage(), 3);
@@ -512,7 +512,7 @@ int CLuaResourceDefs::Load(lua_State* luaVM)
512512
uint uiSize;
513513
if (!g_pNet->DeobfuscateScript(cpInBuffer, uiInSize, &cpBuffer, &uiSize, m_pResourceManager->GetResourceName(luaVM) + "/load"))
514514
{
515-
SString strMessage("argument 2 is invalid. Please re-compile at http://luac.mtasa.com/", 0);
515+
SString strMessage("argument 2 is invalid. Please re-compile at http://luac.multitheftauto.com/", 0);
516516
argStream.SetCustomError(strMessage);
517517
cpBuffer = NULL;
518518
g_pClientGame->TellServerSomethingImportant(1005, argStream.GetFullErrorMessage(), 3);

Server/mods/deathmatch/Config.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,10 @@
120120
#define MAX_GARAGES 50
121121

122122
// MTA master server query URL (Inputs: game port, ase port, http port, version, extra, serverip)
123-
#define QUERY_URL_MTA_MASTER_SERVER "https://master.mtasa.com/ase/add.php?g=%GAME%&a=%ASE%&h=%HTTP%&v=%VER%&x=%EXTRA%&ip=%IP%"
123+
#define QUERY_URL_MTA_MASTER_SERVER "https://master.multitheftauto.com/ase/add.php?g=%GAME%&a=%ASE%&h=%HTTP%&v=%VER%&x=%EXTRA%&ip=%IP%"
124124

125125
// MTA port tester URL
126-
#define PORT_TESTER_URL "https://nightly.mtasa.com/ports/"
126+
#define PORT_TESTER_URL "https://nightly.multitheftauto.com/ports/"
127127

128128
// MTA minclientversion auto update and others
129129
#define HQCOMMS_URL "https://updatesa.multitheftauto.com/sa/server/hqcomms/"

Server/mods/deathmatch/editor.conf

+4-4
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
Version numbers are described here: http://wiki.multitheftauto.com/wiki/GetPlayerVersion
101101
and look like this: 1.1.0-9.03100.0
102102
Note that this setting only determines if the client should be prompted to update. The actual
103-
build number they receive will be the highest available. See: http://nightly.mtasa.com/ver -->
103+
build number they receive will be the highest available. See: http://nightly.multitheftauto.com/ver -->
104104
<minclientversion></minclientversion>
105105

106106
<!-- This parameter specifies if/when the <minclientversion> setting is automatically updated.
@@ -112,7 +112,7 @@
112112
<!-- Recommended client version. When connecting, if clients have a lower version, they will be given
113113
the option to download an update. If left blank, this setting is disabled.
114114
Note that this setting only determines if the client should be prompted to update. The actual
115-
build number they receive will be the highest available. See: http://nightly.mtasa.com/ver -->
115+
build number they receive will be the highest available. See: http://nightly.multitheftauto.com/ver -->
116116
<recommendedclientversion></recommendedclientversion>
117117

118118
<!-- This parameter can be used to make the server report to Game-Monitor master servers, allowing it to
@@ -261,15 +261,15 @@
261261
<!-- This parameter lists the ACL groups that are protected by serial authorization.
262262
Login attempts to a protected account from a second serial are blocked until the serial is manually authorized via
263263
the authserial command.
264-
For more info see: https://mtasa.com/authserial
264+
For more info see: https://multitheftauto.com/authserial
265265
Note: This is security critical feature and disabling auth_serial_groups can affect visibility in the master server list.
266266
Values: Comma separated list of ACL groups. Default - Admin -->
267267
<auth_serial_groups></auth_serial_groups>
268268

269269
<!-- This parameter specifies if the authorized serial login checks should also apply to the http interface.
270270
Protected account login attempts to the http interface will only succeed if the IP address matches one
271271
recently used by the account holder in-game
272-
For more info see: https://mtasa.com/authserialhttp
272+
For more info see: https://multitheftauto.com/authserialhttp
273273
Note: This is security critical feature and disabling auth_serial_http can affect visibility in the master server list.
274274
Values: 0 - Off, 1 - Enabled. Default - 1 -->
275275
<auth_serial_http>0</auth_serial_http>

Server/mods/deathmatch/local.conf

+4-4
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
Version numbers are described here: http://wiki.multitheftauto.com/wiki/GetPlayerVersion
101101
and look like this: 1.1.0-9.03100.0
102102
Note that this setting only determines if the client should be prompted to update. The actual
103-
build number they receive will be the highest available. See: http://nightly.mtasa.com/ver -->
103+
build number they receive will be the highest available. See: http://nightly.multitheftauto.com/ver -->
104104
<minclientversion></minclientversion>
105105

106106
<!-- This parameter specifies if/when the <minclientversion> setting is automatically updated.
@@ -112,7 +112,7 @@
112112
<!-- Recommended client version. When connecting, if clients have a lower version, they will be given
113113
the option to download an update. If left blank, this setting is disabled.
114114
Note that this setting only determines if the client should be prompted to update. The actual
115-
build number they receive will be the highest available. See: http://nightly.mtasa.com/ver -->
115+
build number they receive will be the highest available. See: http://nightly.multitheftauto.com/ver -->
116116
<recommendedclientversion></recommendedclientversion>
117117

118118
<!-- This parameter can be used to make the server report to Game-Monitor master servers, allowing it to
@@ -261,15 +261,15 @@
261261
<!-- This parameter lists the ACL groups that are protected by serial authorization.
262262
Login attempts to a protected account from a second serial are blocked until the serial is manually authorized via
263263
the authserial command.
264-
For more info see: https://mtasa.com/authserial
264+
For more info see: https://multitheftauto.com/authserial
265265
Note: This is security critical feature and disabling auth_serial_groups can affect visibility in the master server list.
266266
Values: Comma separated list of ACL groups. Default - Admin -->
267267
<auth_serial_groups>Admin</auth_serial_groups>
268268

269269
<!-- This parameter specifies if the authorized serial login checks should also apply to the http interface.
270270
Protected account login attempts to the http interface will only succeed if the IP address matches one
271271
recently used by the account holder in-game
272-
For more info see: https://mtasa.com/authserialhttp
272+
For more info see: https://multitheftauto.com/authserialhttp
273273
Note: This is security critical feature and disabling auth_serial_http can affect visibility in the master server list.
274274
Values: 0 - Off, 1 - Enabled. Default - 1 -->
275275
<auth_serial_http>1</auth_serial_http>

Server/mods/deathmatch/logic/CAccountManager.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -571,13 +571,13 @@ bool CAccountManager::LogIn(CClient* pClient, CClient* pEchoClient, const std::s
571571
if (pEchoClient)
572572
pEchoClient->SendEcho(
573573
SString("login: Serial pending authorization for account '%s' - See https:"
574-
"//mtasa.com/authserial",
574+
"//multitheftauto.com/authserial",
575575
szAccountName));
576576
CLogger::AuthPrintf("LOGIN: %s tried to log in as '%s' with an unauthorized serial (IP: %s Serial: %s)\n", *strPlayerName, szAccountName,
577577
*strPlayerIP, *strPlayerSerial);
578578
CLogger::AuthPrintf(
579579
"LOGIN: See https:"
580-
"//mtasa.com/authserial\n");
580+
"//multitheftauto.com/authserial\n");
581581
return false;
582582
}
583583
}

Server/mods/deathmatch/logic/CGame.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1026,14 +1026,14 @@ bool CGame::Start(int iArgumentCount, char* szArguments[])
10261026
{
10271027
CLogger::LogPrintf(
10281028
"Authorized serial account protection is enabled for the ACL group(s): `%s` See http:"
1029-
"//mtasa.com/authserial\n",
1029+
"//multitheftauto.com/authserial\n",
10301030
*SString::Join(",", m_pMainConfig->GetAuthSerialGroupList()));
10311031
}
10321032
else
10331033
{
10341034
CLogger::LogPrint(
10351035
"Authorized serial account protection is DISABLED. See http:"
1036-
"//mtasa.com/authserial\n");
1036+
"//multitheftauto.com/authserial\n");
10371037
}
10381038

10391039
// Owner email address

Server/mods/deathmatch/logic/CHTTPD.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ HttpStatusCode CHTTPD::RequestLogin(HttpRequest* ipoHttpRequest, HttpResponse* i
189189
strMessage += SString("Your IP address ('%s') is not associated with an authorized serial.", ipoHttpRequest->GetAddress().c_str());
190190
strMessage += SString("<br/><a href='%s'>See here for more information</a>",
191191
"https:"
192-
"//mtasa.com/authserialhttp");
192+
"//multitheftauto.com/authserialhttp");
193193
ipoHttpResponse->SetBody(strMessage, strMessage.length());
194194
return HTTP_STATUS_CODE_401_UNAUTHORIZED;
195195
}

Server/mods/deathmatch/logic/CResourceChecker.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ bool CResourceChecker::CheckLuaDeobfuscateRequirements(const string& strFileCont
468468
if (bClientScript && IsLuaCompiledScript(strFileContents.c_str(), strFileContents.length()))
469469
{
470470
// Compiled client script with no version info
471-
SString strMessage("%s is invalid. Please re-compile at http://luac.mtasa.com/", strFileName.c_str());
471+
SString strMessage("%s is invalid. Please re-compile at http://luac.multitheftauto.com/", strFileName.c_str());
472472
CLogger::LogPrint(SString("ERROR: %s %s\n", strResourceName.c_str(), *strMessage));
473473
}
474474
return false;

Server/mods/deathmatch/logic/CVehicleDefaultColors.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ char szDefaultVehicleColors[] =
3131
"# Explanations of IDs of colors and vehicles can be found\n"
3232
"# in these wiki articles:\n"
3333
"#\n"
34-
"# http://development.mtasa.com/index.php?title=Vehicle_Colors\n"
35-
"# http://development.mtasa.com/index.php?title=Vehicle_IDs\n"
34+
"# http://development.multitheftauto.com/index.php?title=Vehicle_Colors\n"
35+
"# http://development.multitheftauto.com/index.php?title=Vehicle_IDs\n"
3636
"#\n"
3737
"# If you break something when editing this file, just delete it\n"
3838
"# and the server will recreate it using GTA's default values.\n"

Server/mods/deathmatch/logic/lua/CLuaMain.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ bool CLuaMain::LoadScriptFromBuffer(const char* cpInBuffer, unsigned int uiInSiz
287287
uint uiSize;
288288
if (!g_pRealNetServer->DeobfuscateScript(cpInBuffer, uiInSize, &cpBuffer, &uiSize, strNiceFilename))
289289
{
290-
SString strMessage("%s is invalid. Please re-compile at http://luac.mtasa.com/", *strNiceFilename);
290+
SString strMessage("%s is invalid. Please re-compile at http://luac.multitheftauto.com/", *strNiceFilename);
291291
g_pGame->GetScriptDebugging()->LogError(m_luaVM, "Loading script failed: %s", *strMessage);
292292
return false;
293293
}

Server/mods/deathmatch/logic/luadefs/CLuaResourceDefs.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1328,7 +1328,7 @@ int CLuaResourceDefs::LoadString(lua_State* luaVM)
13281328
uint uiSize;
13291329
if (!g_pRealNetServer->DeobfuscateScript(cpInBuffer, uiInSize, &cpBuffer, &uiSize, m_pResourceManager->GetResourceName(luaVM) + "/loadstring"))
13301330
{
1331-
SString strMessage("argument 1 is invalid. Please re-compile at http://luac.mtasa.com/", 0);
1331+
SString strMessage("argument 1 is invalid. Please re-compile at http://luac.multitheftauto.com/", 0);
13321332
argStream.SetCustomError(strMessage);
13331333
cpBuffer = NULL;
13341334
}
@@ -1409,7 +1409,7 @@ int CLuaResourceDefs::Load(lua_State* luaVM)
14091409
uint uiSize;
14101410
if (!g_pRealNetServer->DeobfuscateScript(cpInBuffer, uiInSize, &cpBuffer, &uiSize, m_pResourceManager->GetResourceName(luaVM) + "/load"))
14111411
{
1412-
SString strMessage("argument 2 is invalid. Please re-compile at http://luac.mtasa.com/", 0);
1412+
SString strMessage("argument 2 is invalid. Please re-compile at http://luac.multitheftauto.com/", 0);
14131413
argStream.SetCustomError(strMessage);
14141414
cpBuffer = NULL;
14151415
}

Server/mods/deathmatch/mtaserver.conf

+4-4
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
Version numbers are described here: http://wiki.multitheftauto.com/wiki/GetPlayerVersion
101101
and look like this: 1.1.0-9.03100.0
102102
Note that this setting only determines if the client should be prompted to update. The actual
103-
build number they receive will be the highest available. See: http://nightly.mtasa.com/ver -->
103+
build number they receive will be the highest available. See: http://nightly.multitheftauto.com/ver -->
104104
<minclientversion></minclientversion>
105105

106106
<!-- This parameter specifies if/when the <minclientversion> setting is automatically updated.
@@ -112,7 +112,7 @@
112112
<!-- Recommended client version. When connecting, if clients have a lower version, they will be given
113113
the option to download an update. If left blank, this setting is disabled.
114114
Note that this setting only determines if the client should be prompted to update. The actual
115-
build number they receive will be the highest available. See: http://nightly.mtasa.com/ver -->
115+
build number they receive will be the highest available. See: http://nightly.multitheftauto.com/ver -->
116116
<recommendedclientversion></recommendedclientversion>
117117

118118
<!-- This parameter can be used to make the server report to Game-Monitor master servers, allowing it to
@@ -269,15 +269,15 @@
269269
<!-- This parameter lists the ACL groups that are protected by serial authorization.
270270
Login attempts to a protected account from a second serial are blocked until the serial is manually authorized via
271271
the authserial command.
272-
For more info see: https://mtasa.com/authserial
272+
For more info see: https://multitheftauto.com/authserial
273273
Note: This is security critical feature and disabling auth_serial_groups can affect visibility in the master server list.
274274
Values: Comma separated list of ACL groups. Default - Admin -->
275275
<auth_serial_groups>Admin</auth_serial_groups>
276276

277277
<!-- This parameter specifies if the authorized serial login checks should also apply to the http interface.
278278
Protected account login attempts to the http interface will only succeed if the IP address matches one
279279
recently used by the account holder in-game
280-
For more info see: https://mtasa.com/authserialhttp
280+
For more info see: https://multitheftauto.com/authserialhttp
281281
Note: This is security critical feature and disabling auth_serial_http can affect visibility in the master server list.
282282
Values: 0 - Off, 1 - Enabled. Default - 1 -->
283283
<auth_serial_http>1</auth_serial_http>

0 commit comments

Comments
 (0)