-
Notifications
You must be signed in to change notification settings - Fork 40
/
gameInfo.php
executable file
·87 lines (57 loc) · 1.4 KB
/
gameInfo.php
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
<?php
// 2019: I don't remember/think this is used...
//storyline
$securityCompany = 'Massive Dynamic';
$securityCompanyIP = '16843010';
$securityCompanyID = '58';
$storylineCompany = 'NSA';
$storylineCompanyIP = '16843009';
$storylineCompanyID = '57';
static $exploitInfo = Array(
'NAME' => 'necromancer',
'VERSION' => '10',
'SIZE' => '10000',
'RAM' => '2048',
'TYPE' => '50',
);
static $empLauncherInfo = Array(
'NAME' => 'EMP Launcher',
'VERSION' => '10',
'SIZE' => '10000',
'RAM' => '2048',
'TYPE' => '51',
);
$launchDuration = '21600'; //6 horas
static $corpInfo = Array (
'1' => Array(
'NAME' => 'RDR corp',
'IP' => '16843011',
'CEO' => 'Fê Lemos',
'REGIONS' => '1/6',
),
'2' => Array(
'NAME' => 'NdN inc',
'IP' => '16843012',
'CEO' => 'Toddy Mattos',
'REGIONS' => '2/8',
),
'3' => Array(
'NAME' => 'YaoMing company',
'IP' => '16843013',
'CEO' => 'Renatusso',
'REGIONS' => '4/5',
),
'4' => Array(
'NAME' => 'Fear 2.0',
'IP' => '16843014',
'CEO' => 'Dinossaur',
'REGIONS' => '3/7',
),
);
static $continentInfo = Array(
'1' => 'America',
'2' => 'Europe',
'3' => 'Asia',
);
$storylineMaxLevel = '60';
?>