-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
profiles.js
122 lines (122 loc) · 2.5 KB
/
profiles.js
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
"use strict";
var profiles = {
"tectesttunnel": {
"method": "websocket",
"protocol": "ws",
"server": "tectest.skotos.net",
"port": 8867,
"path": "/orchil/",
"extra": "tec"
},
"tectest": {
"method": "websocket",
"protocol": "ws",
"server": "tectest.skotos.net",
"port": 7707,
"path": "/orchil/foobar",
"extra": "tec"
},
"grtunnel": {
"method": "websocket",
"protocol": "ws",
"server": "gr.skotos.net",
"port": 2080,
"path": "/orchil/",
"extra": "gr"
},
"popcornajax": {
"method": "ajax",
"protocol": "https",
"server": "192.168.1.67",
"port": 443,
"path": "/orchil/server.php",
"rate": 1,
"extra": "gr"
},
"portal_tectest":{
"method": "websocket",
"protocol": "ws",
"server": "skotos.net",
"port": 8080,
"path": "/tectest",
"extra": "tec",
"reports": true,
"chars": false
},
"portal_tec":{
"method": "websocket",
"protocol": "ws",
"server": "game.eternalcitygame.com",
"port": 8080,
"path": "/tec",
"extra": "tec",
"reports": true,
"chars": false
},
"portal_marrach":{
"method": "websocket",
"protocol": "ws",
"server": "skotos.net",
"port": 8080,
"woe_port": 8084,
"path": "/marrach",
"extra": "marrach",
"reports": false,
"chars": true,
"prompt": "> "
},
"portal_grendelsrevenge":{
"method": "websocket",
"protocol": "ws",
"server": "skotos.net",
"port": 8080,
"path": "/grendel",
"extra": "gr",
"reports": false,
"chars": false
},
"portal_lovecraft":{
"method": "websocket",
"protocol": "ws",
"server": "skotos.net",
"port": 8080,
"woe_port": 8082,
"path": "/lovecraft",
"extra": "lcabn",
"reports": false,
"chars": true
},
"portal_ironclaw":{
"method": "websocket",
"protocol": "ws",
"server": "skotos.net",
"port": 8080,
"woe_port": 8083,
"path": "/ironclaw",
"extra": "ironclaw",
"reports": false,
"chars": true,
},
"portal_allegory":{
"method": "websocket",
"protocol": "ws",
"server": "skotos.net",
"port": 8080,
"woe_port": 8083,
"path": "/ironclaw",
"extra": "ironclaw",
"reports": false,
"chars": true,
},
"portal_lazarus":{
"method": "websocket",
"protocol": "ws",
"server": "skotos.net",
"port": 8080,
"woe_port": 8081,
"path": "/lazarus",
"extra": "lazarus",
"reports": false,
"chars": true
}
};