File tree Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 21
21
22
22
- name : Download DirectX
23
23
if : steps.cache-dxfiles.outputs.cache-hit != 'true'
24
- run : Invoke-WebRequest https://mirror.mtasa .com/bdata/DXFiles.zip -OutFile utils/DXFiles.zip
24
+ run : Invoke-WebRequest https://mirror-cdn.multitheftauto .com/bdata/DXFiles.zip -OutFile utils/DXFiles.zip
25
25
shell : powershell
26
26
27
27
- name : Extract DirectX
Original file line number Diff line number Diff line change 6
6
//
7
7
// To compile a client for development and debugging purposes:
8
8
// 1. set MTASA_VERSION_TYPE to VERSION_TYPE_CUSTOM
9
- // 2. Use netc.dll from https://mirror.mtasa .com/bdata/netc.dll (preferably run utils/buildactions/install_data.lua)
9
+ // 2. Use netc.dll from https://mirror-cdn.multitheftauto .com/bdata/netc.dll (preferably run utils/buildactions/install_data.lua)
10
10
//
11
11
// To compile a client for mass consumption by players (releasing your own "MTA fork"):
12
12
// 1. set MTASA_VERSION_TYPE to VERSION_TYPE_UNSTABLE
13
- // 2. Use netc.dll from https://mirror.mtasa .com/bdata/netc.dll (preferably run utils/buildactions/install_data.lua)
13
+ // 2. Use netc.dll from https://mirror-cdn.multitheftauto .com/bdata/netc.dll (preferably run utils/buildactions/install_data.lua)
14
14
//
15
15
// Per the above, take note of AC constraints of building a custom client or fork (see https://wiki.multitheftauto.com/wiki/Forks)
16
16
//
Original file line number Diff line number Diff line change @@ -6,17 +6,17 @@ premake.modules.install_data = {}
6
6
local BIN_DIR = " Bin"
7
7
local DATA_DIR = " Shared/data/MTA San Andreas"
8
8
9
- local NET_PATH_X86_WIN = " https://mirror.mtasa .com/bdata/net.dll"
10
- local NET_PATH_X64_WIN = " https://mirror.mtasa .com/bdata/net_64.dll"
11
- local NET_PATH_ARM64_WIN = " https://mirror.mtasa .com/bdata/net_arm64.dll"
12
- local NETC_PATH_WIN = " https://mirror.mtasa .com/bdata/netc.dll"
9
+ local NET_PATH_X86_WIN = " https://mirror-cdn.multitheftauto .com/bdata/net.dll"
10
+ local NET_PATH_X64_WIN = " https://mirror-cdn.multitheftauto .com/bdata/net_64.dll"
11
+ local NET_PATH_ARM64_WIN = " https://mirror-cdn.multitheftauto .com/bdata/net_arm64.dll"
12
+ local NETC_PATH_WIN = " https://mirror-cdn.multitheftauto .com/bdata/netc.dll"
13
13
14
- local NET_PATH_X86_LINUX = " https://mirror.mtasa .com/bdata/net.so"
15
- local NET_PATH_X64_LINUX = " https://mirror.mtasa .com/bdata/net_64.so"
16
- local NET_PATH_ARM_LINUX = " https://mirror.mtasa .com/bdata/net_arm.so"
17
- local NET_PATH_ARM64_LINUX = " https://mirror.mtasa .com/bdata/net_arm64.so"
14
+ local NET_PATH_X86_LINUX = " https://mirror-cdn.multitheftauto .com/bdata/net.so"
15
+ local NET_PATH_X64_LINUX = " https://mirror-cdn.multitheftauto .com/bdata/net_64.so"
16
+ local NET_PATH_ARM_LINUX = " https://mirror-cdn.multitheftauto .com/bdata/net_arm.so"
17
+ local NET_PATH_ARM64_LINUX = " https://mirror-cdn.multitheftauto .com/bdata/net_arm64.so"
18
18
19
- local NET_PATH_X64_MACOS = " https://mirror.mtasa .com/bdata/net.dylib"
19
+ local NET_PATH_X64_MACOS = " https://mirror-cdn.multitheftauto .com/bdata/net.dylib"
20
20
21
21
newaction {
22
22
trigger = " install_data" ,
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ set VSWHERE=utils\vswhere.exe
4
4
rem Download vswhere (command line utility to find MSBuild path)
5
5
if not exist %VSWHERE% (
6
6
echo vswhere utility doesn't exist. Downloading...
7
- powershell -Command " Invoke-WebRequest https://mirror.mtasa .com/bdata/vswhere.exe -OutFile %VSWHERE% "
7
+ powershell -Command " Invoke-WebRequest https://mirror-cdn.multitheftauto .com/bdata/vswhere.exe -OutFile %VSWHERE% "
8
8
)
9
9
10
10
rem Find MSBuild installation path
You can’t perform that action at this time.
0 commit comments