forked from lyarinet/NeptunJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (30 loc) · 1.09 KB
/
index.html
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
<html>
<head>
<title>NeptunJS - Deobfuscated</title>
<script>
var NepPlayer = "#body"; // ID of html element where the emulator will be inserted
var NepEmu = "gba"; // Platform select
// var neogeoBios = "neogeo.zip";
var NepZoom = "enable"; // Add extra button on toolbar to scale up emulator. Disabled by default
var NepMaxWidth = "1100px"; // Maximum width size of emulator. 870px by default
var NepLang = "en"; // Interface language of the emulator. EN by default
var EmuGbaBios = "enable"; // ( only for GBA ) GBA Bios Need for some games. Disabled by default
var gameUrl = "rom.zip"; // Game Url
</script>
<script>
//host integrity check patched
var scriptsus = document.createElement("script");
scriptsus.setAttribute("data-name", "njs2");
scriptsus.src = "NJS.gge";//doing integrity checks like loader
document.head.appendChild(scriptsus);
var style = document.createElement("link");
style.href = "neptun.css";
style.rel = "stylesheet";
style.type = "text/css";
document.head.appendChild(style)
</script>
</head>
<body id="body">
<div></div>
</body>
</html>