forked from MrAntares/roBrowserLegacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (54 loc) · 1.46 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>TitanRO2 test server</title>
</head>
<body>
<script>
window.addEventListener("load", (event) => {
window.ROConfig = {
development: false, // don't need to compile javascript files in chrome app since it's already a package.
remoteClient: "https://grf.titanro.net/",
servers: [
{
display: 'TitanRO2',
desc: "TitanRO2 test server",
address: 'play.titanro.net',
port: 6901,
version: 46,
langtype: 1,
packetver: 20151029,
renewal: true,
forceUseAddress: false,
socketProxy: "wss://ws.titanro.net/",
packetKeys: true
},
],
packetDump: false,
skipServerList: true,
skipIntro: true,
clientVersionMode: 'PacketVer',
plugins: {
DefaultSettings: 'DefaultSettings/DefaultSettings',
ServiceWorker: 'ServiceWorker/ServiceWorker',
},
clientHash: null,
enableCashShop: false,
enableBank: false,
enableMapName: false,
enableRefineUI: false,
enableDmgSuffix: false,
enableCheckAttendance: false,
CameraMaxZoomOut: 5,
loadLua: true,
enableConsole: false,
};
script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'Online.js';
document.getElementsByTagName('body')[0].appendChild(script);
});
</script>
</body>
</html>