-
Notifications
You must be signed in to change notification settings - Fork 9
/
explore.php
73 lines (72 loc) · 2.16 KB
/
explore.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
<?php
declare(strict_types=1);
/**
* MCCodes v2 by Dabomstew & ColdBlooded
*
* Repository: https://github.com/davemacaulay/mccodesv2
* License: MIT License
*/
global $ir, $userid, $h, $set, $domain;
require_once('globals.php');
$tresder = rand(100, 999);
if ($ir['jail'] > 0 || $ir['hospital'] > 0)
{
die('This page cannot be accessed while in jail or hospital.');
}
echo "<b>You begin exploring the area you're in,
you see a bit that interests you.</b><br />
<table width='75%'>
<tr height='100'>
<td valign='top'>
<u>Market Place</u><br />
<a href='shops.php'>Shops</a><br />
<a href='itemmarket.php'>Item Market</a><br />
<a href='cmarket.php'>Crystal Market</a>
</td>
<td valign='top'>
<u>Serious Money Makers</u><br />
<a href='monorail.php'>Travel Agency</a><br />
<a href='estate.php'>Estate Agent</a><br />
<a href='bank.php'>City Bank</a>";
if ($ir['location'] == 5)
{
echo " <br />
<a href='cyberbank.php'>Cyber Bank</a><br />";
}
echo " </td>
<td valign='top'>
<u>Dark Side</u><br />
<a href='gangcentral.php'>Gangs</a><br />
<a href='gangwars.php'>Gang Wars</a><br />
<a href='fedjail.php'>Federal Jail</a><br />
<a href='slotsmachine.php?tresde=$tresder'>Slots Machine</a><br />
<a href='roulette.php?tresde=$tresder'>Roulette</a><br />
<a href='lucky.php'>Lucky Boxes</a>";
if ($ir['location'] == 5)
{
echo " <br />
<a href='slotsmachine3.php'>Super Slots</a><br />";
}
echo " </td>
</tr>
<tr height='100'>
<td valign='top'>
<u>Statistics Dept</u><br />
<a href='userlist.php'>User List</a><br />
<a href='stafflist.php'>{$set['game_name']} Staff</a><br />
<a href='halloffame.php'>Hall of Fame</a><br />
<a href='stats.php'>Game Stats</a><br />
<a href='usersonline.php'>Users Online</a>
</td>
<td valign='top'>
<u>Mysterious</u><br />
<a href='crystaltemple.php'>Crystal Temple</a><br />
<a href='battletent.php'>Battle Tent</a><br />
<a href='polling.php'>Polling Booth</a><br />
</td>
</tr>
</table>
<br /><br />
This is your referal link: https://{$domain}/register.php?REF={$userid}<br />
Every signup from this link earns you two valuable crystals!";
$h->endpage();