forked from utshakka/ut4ever
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (84 loc) · 4.32 KB
/
index.html
File metadata and controls
97 lines (84 loc) · 4.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap Font Icon CSS -->
<link rel="stylesheet" href=
"https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" />
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="styles/general.css">
<title>ut4ever.org</title>
</head>
<body>
<nav class="navbar navbar-expand-sm navbar-dark bg-dark border-bottom border-light-subtle" data-bs-theme="dark">
<div class="container-sm">
<a class="navbar-brand pe-3 py-2" href="#"><img src="images/utlogo_light.png" style="height:30px; padding-right: 8px;">ut4ever<i>.org</i></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarColor02" aria-controls="navbarColor02" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarColor02">
<ul class="navbar-nav me-auto">
<li class="nav-item pe-2">
<a class="nav-link" href="index">Home
<span class="visually-hidden">(current)</span>
</a>
</li>
<!--<li class="nav-item">
<a class="nav-link" href="#">Wikis</a>
</li>-->
<li class="nav-item">
<a class="nav-link" href="downloads">Downloads</a>
</li>
<!--
<li class="nav-item">
<a class="nav-link" href="discords.html">Discords</a>
</li>
-->
</ul>
</div>
</div>
</nav>
<div class="container-xl mt-2 text-light" data-bs-theme="dark">
<div class="card mb-3 rounded-0 black-shadow">
<div class="card-header">Welcome</div>
<div class="card-body card-body-post-a">
<p class="card-text">On January 24th, 2023, Epic shut down their master server and removed access to Unreal Tournament (pre-alpha), aka UT4. <br>
Through community efforts, a new master server was created to keep the game alive.<br>
Check out the links below for instructions on installing the game and connecting to the new master server.</p>
</div>
</div>
</div>
<div class="container-xl mt-2 text-light" data-bs-theme="dark">
<div class="card mb-3 rounded-0 black-shadow">
<div class="card-header">Game Setup Links</div>
<div class="card-body card-body-post-a">
<a href="howto_download" class="link-light card-body-post-subtitle-link"><h6>How to download and install UT4</h6></a>
<p class="card-text card-body-post-subtextcolor lh-sm mb-3">Get the game running without Epic Games Launcher</p>
<div class="card-body m-0 p-1 border border-light-subtle rounded-2 card-sectiontitle-bgdark mb-1" style="width:fit-content;">
<p class="card-text card-body-post-subtextcolor pb-1 ps-1 pe-1">
<i class="bi-exclamation-triangle fs-5 px-1"></i>
See the troubleshooting section inside for addressing game startup errors related to
<span class="text-ltblue">CorsairRGB</span> and
<span class="text-ltblue">INPUT1_3.dll / DirectX</span>
</p>
</div>
</div>
<div class="card-body card-body-post-b border-top border-light-subtle">
<a href="howto_masterserver" class="link-light card-body-post-subtitle-link"><h6>How to connect to new master server</h6></a>
<p class="card-text card-body-post-subtextcolor lh-sm">Modify your existing UT4 game installation to connect to the new master server</p>
</div>
</div>
</div>
<div class="container-xl mt-2 text-light" data-bs-theme="dark">
<div class="card mb-3 rounded-0 black-shadow">
<div class="card-header">Other Links</div>
<div class="card-body card-body-post-a">
<a href="ut4uu" class="link-light card-body-post-subtitle-link"><h6>UT4UU (Unofficial Patch)</h6></a>
<p class="card-text card-body-post-subtextcolor lh-sm">Game patch to include extra features, such as a faster game load time.</p>
</div>
</div>
<script src="js/bootstrap.bundle.min.js"></script>
</body>
</html>