forked from AustinWise/fleet_links
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOfflineEveBrowser.php
More file actions
69 lines (52 loc) · 1.11 KB
/
Copy pathOfflineEveBrowser.php
File metadata and controls
69 lines (52 loc) · 1.11 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
<?php
require_once('IEveBrowser.php');
class OfflineEveBrowser implements IEveBrowser {
public function IsIGB() {
return 1;
}
public function IsTrusted() {
return 1;
}
public function RequireTrust() {
}
public function RegionName() {
return 'Delve';
}
public function ConstellationName() {
return "W-4U1E";
}
public function SolarSystemName() {
return "QY6-RK";
}
public function AllianceID() {
return 824518128;
}
public function AllianceName() {
return "GoonSwarm";
}
public function CharacterID() {
return 1164427832;
}
public function CharacterName() {
return "WoogyDude";
}
public function CorporationID() {
return 749147334;
}
public function CorporationName() {
return "GoonFleet";
}
public function StationName() {
return "None";
}
public function Server() {
return "87.237.38.200:26000";
}
public function CorporationRole() {
return 2199024312320;
}
public function NearestLocation() {
return "QY6-RK VI - Moon 24";
}
}
?>