-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
476 lines (455 loc) · 23 KB
/
index.html
File metadata and controls
476 lines (455 loc) · 23 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
<!--
Index.html - The page that is first displayed when the website loads.
This is a landing page so it only has one page for now, which is this right here.
Copyright (C) 2021 Immanuel Garcia, Luke Harris
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
-->
<!DOCTYPE html>
<html>
<head>
<link
rel="preload"
href="https://fonts.googleapis.com/css?family=Oswald:400,300,700&subset=latin,latin-ext"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<noscript
><link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Oswald:400,300,700&subset=latin,latin-ext"
/></noscript>
<link
rel="preload"
href="https://fonts.googleapis.com/css?family=Roboto:400,400italic,700,700italic&subset=latin,latin-ext"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<noscript
><link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:400,400italic,700,700italic&subset=latin,latin-ext"
/></noscript>
<script src="https://trail-blaze.github.io/js/include.js"></script>
<script
src="https://trail-blaze.github.io/js/announcements.js"
defer
></script>
<link
rel="stylesheet"
href="https://trail-blaze.github.io/css/tailwind.css"
/>
<!-- <link
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"
rel="stylesheet"
/> -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async=""
src="https://www.googletagmanager.com/gtag/js?id=G-N757G9SBE5"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-N757G9SBE5");
</script>
<!-- COMMON TAGS -->
<meta charset="utf-8" />
<title>Blaze</title>
<!-- Search Engine -->
<meta
name="description"
content="Blaze, your all-in-one Fortnite private server!"
/>
<meta
name="image"
content="https://trail-blaze.github.io/res/Blaze/Welcome.png"
/>
<!-- Schema.org for Google -->
<meta itemprop="name" content="Blaze" />
<meta
itemprop="description"
content="Blaze, your all-in-one Fortnite private server!"
/>
<meta
itemprop="image"
content="http://trail-blaze.github.io/res/Blaze/Welcome.png"
/>
<!-- Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Blaze" />
<meta
name="twitter:description"
content="Blaze, your all-in-one Fortnite private server!"
/>
<meta
name="twitter:image"
content="http://trail-blaze.github.io/res/Blaze/Welcome.png"
/>
<!-- Open Graph general (Facebook, Pinterest & Google+) -->
<meta name="og:title" content="Blaze" />
<meta
name="og:description"
content="Blaze, your all-in-one Fortnite private server!"
/>
<meta
name="og:image"
content="https://trail-blaze.github.io/res/Blaze/Welcome.png"
/>
<meta name="og:url" content="https://trail-blaze.github.io" />
<meta name="og:site_name" content="Blaze" />
<meta name="og:type" content="website" />
<meta
name="keywords"
content="AtlasFN, discord, storm, stormfn, fn, fortnite server, private-server, private, Era, Erafn, all skins, Rift, Riftfn, Aurora, AuroraFN download, PC, console, phone, Neonite, NeoniteFN, NeoniteDev, Neonitev2, Neonite v2, NeoRift, Neonite++, Neonite-plus-plus, Aurora++, Aurora Rebooted, SkyFN, Sky, EliteFN, LithiumFN, Lithium, Rocket, RocketFN, Polaris, Project Polaris, PolarisFN, Modnite, ModniteFN, Blaze, TrailBlaze, BlazeOrg, Trail-Blaze, BlazeOrg, BlazeFN, best, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024, 2025, 2026, 2027, 2028, 2029, 2030, season, Fortnitebr, battle, royale, royal, STW, save-the-world, save the world, save, the, world, vbuvks, vbucks, v-buvks, v-bucks, V Buvcks, V Buvks, V Bucks, chapter 2, chapter 1, chapter, AtlasFN Discord, StormFN Discord, Neonite Discord, StormFN discord server, fortnite private server all skins, Rift Fortnite private server, Aurora Fortnite private server, AuroraFN Fortnite private server, season 7, season 6, season 5, season 4, season 3, season 2, season 1, season 10, season, latest, all skins, Fortnite private server best 2021, Fortnite private-server best 2021, Fortnite private server 2021, Fortnite private server download for PC 2021, Fortnite private server download for PC Free 2021, Fortnite private server download, Fortnite private server download for PC, free, unlimited, unlimited skins, unlimited v-bucks, unlimited vbucks, top, top 10, top 5, top 3, #1, number one, no virus, no ban, ban-free, untracked, hacks, game hacks, game hacking, region unlocking, Xbox, playstation, ps1, ps2, ps3, ps4, ps5, ps6, custom mod, custom, mod, modification, EZFN, Frostnite, ultimanite, Osmium, NeonitePP, NeoPackets, ultimanite download, Osmium download, NeonitePP download, Lunar, FortniteModding"
/>
<link
rel="preload"
href="/css/viralNews.css"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
/>
<noscript><link rel="stylesheet" href="/css/viralNews.css" /></noscript>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap"
rel="stylesheet"
/>
<link
rel="icon"
href="https://trail-blaze.github.io/res/Blaze/tbico.svg"
type="image/svg"
/>
<title>Trail Blaze</title>
</head>
<body>
<style>
#ann_container {
-webkit-transition: opacity 0.5s ease-in-out;
-moz-transition: opacity 0.5s ease-in-out;
-ms-transition: opacity 0.5s ease-in-out;
-o-transition: opacity 0.5s ease-in-out;
transition: opacity 0.5s ease-in-out;
}
</style>
<div id="body-wrapper">
<div id="outer-wrapper">
<div id="wrap2">
<div id="header-wrapper">
<div class="header section" id="headerbleft">
<div class="widget Header">
<div id="header-inner">
<div class="titlewrapper">
<h1 class="title">
<a href="https://trail-blaze.github.io/"
>TrailBlaze</a
>
</h1>
</div>
<div class="descriptionwrapper">
<p class="description">
<span
>The original one-and-only private server
and modding platform for Fortnite!</span
>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="span-24">
<div class="menu-secondary-container" style="display: block">
<ul class="menus menu-secondary">
<li>
<a href="https://trail-blaze.github.io/">Home</a>
</li>
<li>
<a href="https://trail-blaze.github.io/credits"
>Credits</a
>
</li>
<li>
<!--- <a
href="https://github.com/Trail-Blaze/dynamite-core/releases/latest"
>Download</a
> --->
<a href="https://trail-blaze.github.io/cdn/"
>Download</a
>
</li>
<li>
<a href="https://github.com/Trail-Blaze/">Github</a>
</li>
<li>
<a href="https://trail-blaze.github.io/changelog"
>Changelog</a
>
</li>
</ul>
</div>
</div>
<div id="content-wrapper" style="height: auto">
<div id="ann_container"></div>
<div id="main-wrapper">
<!-- Featured Content Slider Started -->
<!-- Featured Content Slider End -->
<div class="main section" id="main">
<div class="post-outer">
<div class="wrapfullpost">
<div class="post hentry">
<!--- <h3
class="post-title entry-title"
itemprop="headline"
style="font-size: 3.5vh; padding-top: 2rem"
>
Blaze
</h3> --->
<div class="post-header-line-1"></div>
<div class="post-body entry-content">
<!--- Welcome to Blaze's Homepage, a Fortnite private server!
<br /><br /> --->
<br />
<h1
class="post-title entry-title"
style="font-size: 1.75rem"
>
What Is a Private Server?
</h1>
<br />
A Fortnite Private Server (or a "dev server"
or "dev account" as the internet may call
it) is a software which emulates the Epic
Games'
<a href="http://fortnite.com">Fortnite</a>
database. A private server is better
referred to as a "server emulator"<a
href="https://blog.securityinnovation.com/blog/2013/10/creating-server-emulators.html"
><sup>[1]</sup></a
>
<a
href="https://en.wikipedia.org/wiki/Private_server"
><sup>[2]</sup></a
>
It allows you to view and access certain
items or cosmetics which would only be
available to you through purchasing the
items. Fortnite Private Servers do NOT
connect to the initial database otherwise
known as
<b><code>*-prod.ol.epicgames.com</code></b
>. A private server also has the capability
to customize and edit
<b
>announcements, the shop, locker items,
skins/cosmetics, gifting capability</b
>, etc.<br /><br />
Some even have the capability to work
<a
href="https://github.com/NeoniteDev/NeonitePP"
>in-game</a
><br /><br />
<h1
class="post-title entry-title"
style="font-size: 1.75rem"
>
How This Works?
</h1>
<br />
A Fortnite private server is essentially a proxy.
It works by injecting a DLL into the client that exploits a bug in it.
This allows the DLL to change the default, Epic
Games' API host to another host. This "new" host
host will send customized data
back to the client on every server request.
Here is an example below of how this works
(note that the endpoints and code are
fictitious):
<code>
<br/><br/>
# original response (GET)
api.epicgames.com/ACCOUNT-ID/get-skins:
return => "real skins of the player"
<br/>
# edited response (GET)
api.epicgames.com/ACCOUNT-ID/get-skins:
return => "all skins"
<br/><br/>
</code>
<h1
class="post-title entry-title"
style="font-size: 1.75rem"
>
Is This Even Legal?
</h1>
<br />
In short: <mark><b>Yes, it is</b></mark
><br /><br />
Although the topic is pretty controversal,
most people claim that <b>it is</b> in fact
legal as long as you are not interfering
with Epic Games' operations. But if in fact
hosting and distributing a private server is
illegal, as soon as Blaze receives a letter
such as a <b>Cease and Desist</b> letter
from Epic Games' lawyer, we'll be sure to
comply and shut down our operations.
<br />
<br />
Either way, you'll always be in the clear.
It's us who will be liable
<br />
<br />
<mark
><b
>THIS IS NOT LEGAL ADVICE!!! WE MIGHT
AS WELL BE WRONG!</b
></mark
><br /><br />
<h1
class="post-title entry-title"
style="font-size: 1.75rem"
>
Where To Download?
</h1>
<br />
You can obtain a copy of Blaze visiting
<!--- <a
href="https://github.com/Trail-Blaze/dynamite-core/releases/latest"
>This Link</a
> -->
<a href="https://trail-blaze.github.io/cdn/"
>This Link</a
>. We are still in beta, so there may be
some bugs. If you would like to learn how to
setup Blaze and get it running, use on the
link to our Discord server below to join our
server to get instructions.<br />
<br /><mark>
Instructions will be posted here when we
release.</mark
><br />
<br />
<div class="post-footer">
<div
class="post-footer-line post-footer-line-1"
>
<div class="discord-link">
Want to request beta access? Join
our
<a
href="https://discord.gg/C3ahZQJnns"
target="_blank"
>Discord</a
>
</div>
</div>
<div
class="post-footer-line post-footer-line-2"
>
<div class="discord-link">
Looking for
<a
href="https://github.com/AtlasFn/backend-launcher/releases/latest"
target="_blank"
>AtlasFN?</a
>
</div>
</div>
<div
class="post-footer-line post-footer-line-3"
>
<!-- <div class="discord-link">
Interested in joining an awesome server just for
fun? Try
<a
href="https://dsc.gg/chesborgor"
target="_blank"
>Chesborgor Cult 🍔</a
>
</div> -->
</div>
<div
class="post-footer-line post-footer-line-4"
>
<div class="discord-link">
For BlazeOrg members:
<a
href="https://bit.ly/3Ml4UmX"
target="__blank"
>Organization Policy -
English</a
>,
<a
href="https://trail-blaze.github.io/provisionrequest.html"
target="__blank"
>Provision a Blaze Division</a
>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- spacer for skins that want sidebar and main to be the same height-->
<div class="clear"> </div>
<div class="clear"> </div>
</div>
</div>
</div>
</div>
<iframe
id="discord_popup"
src="https://discord.com/widget?id=812391102224269333&theme=dark"
width="275"
height="400"
title="Discord Widget"
allowtransparency="true"
frameborder="0"
sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"
style="
position: fixed;
top: 90%;
left: 85%;
transition: all 0.5s ease-in-out 0.3s;
"
></iframe>
</body>
<script defer>
// If popup is clicked, show it on the screen
document
.getElementById("discord_popup")
.addEventListener("click", function (event) {
(document.getElementById("discord_popup").style.top = "60%"), false;
});
// If popup is hovered, show it on the screen
const isHover = (e) => e.parentElement.querySelector(":hover") === e;
const discord_popup = document.getElementById("discord_popup");
document.addEventListener("mousemove", function checkHover() {
const hovered = isHover(discord_popup);
if (hovered !== checkHover.hovered) {
// console.log(hovered ? 'hovered' : 'not hovered');
hovered
? (discord_popup.style.top = "60%")
: (discord_popup.style.top = "90%");
checkHover.hovered = hovered;
}
});
</script>
</html>