mirror of
https://silica.codes/islehorse/HorseIsleWeb.git
synced 2025-04-06 05:05:47 +12:00
Upload site files
This commit is contained in:
parent
9a5ad7a62f
commit
056805a3b8
926 changed files with 10709 additions and 0 deletions
7
game-site/.htaccess
Normal file
7
game-site/.htaccess
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<FilesMatch "\.(?:dic|json)$">
|
||||||
|
Order allow,deny
|
||||||
|
Deny from all
|
||||||
|
</FilesMatch>
|
||||||
|
|
||||||
|
ErrorDocument 403 /404.php
|
||||||
|
ErrorDocument 404 /404.php
|
7
game-site/404.php
Normal file
7
game-site/404.php
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<?php header("HTTP/1.1 404 Not Found"); ?><!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
|
||||||
|
<html><head>
|
||||||
|
<title>404 Not Found</title>
|
||||||
|
</head><body>
|
||||||
|
<h1>Not Found</h1>
|
||||||
|
<p>The requested URL <?php echo(htmlspecialchars($_SERVER['REQUEST_URI'])); ?> was not found on this server.</p>
|
||||||
|
</body></html>
|
427
game-site/account.php
Normal file
427
game-site/account.php
Normal file
|
@ -0,0 +1,427 @@
|
||||||
|
<?php
|
||||||
|
session_start();
|
||||||
|
include("web/common.php");
|
||||||
|
include("web/crosserver.php");
|
||||||
|
include("config.php");
|
||||||
|
|
||||||
|
if(isset($_POST["USER"], $_POST["PASS"]))
|
||||||
|
{
|
||||||
|
$username = $_POST["USER"];
|
||||||
|
$password = $_POST["PASS"];
|
||||||
|
if(!user_exists($username))
|
||||||
|
goto auth_failed;
|
||||||
|
$id = get_userid($username);
|
||||||
|
if(check_password($id, $password))
|
||||||
|
{
|
||||||
|
$_SESSION['LOGGED_IN'] = "YES";
|
||||||
|
$_SESSION['PLAYER_ID'] = $id;
|
||||||
|
$_SESSION['USERNAME'] = $username;
|
||||||
|
$_SESSION['SEX'] = get_sex($id);
|
||||||
|
$_SESSION['ADMIN'] = get_admin($id);
|
||||||
|
$_SESSION['MOD'] = get_mod($id);
|
||||||
|
$_SESSION['PASSWORD_HASH'] = get_password_hash($id);
|
||||||
|
$_SESSION['SALT'] = get_salt($id);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
auth_failed:
|
||||||
|
include("web/header.php");
|
||||||
|
echo('<TABLE CELLPADDING=10 WIDTH=100%><TR><TD><HR><B>Username or Password is not valid. Please try again. <BR>Note: Upon too many attempts the account will be temporarily blocked from your IP.</B><BR><BR>If you have not logged on yet, make sure you have clicked the activation link in the email that was sent to you.<BR><BR>click <A HREF=/web/forgotpass.php>HERE</A> to Have your password emailed to you.<HR></TD></TR></TABLE>');
|
||||||
|
include('web/footer.php');
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if(!is_logged_in() && isset($_GET["SLID"], $_GET["C"]))
|
||||||
|
{
|
||||||
|
$id = (int)$_GET['SLID'];
|
||||||
|
$code = $_GET['C'];
|
||||||
|
|
||||||
|
$hmac = GenHmacMessage((string)$id, "CrossSiteLogin");
|
||||||
|
$hmacSent = bin2hex(base64_url_decode($code));
|
||||||
|
|
||||||
|
if(hash_equals($hmacSent,$hmac))
|
||||||
|
{
|
||||||
|
$_SESSION['LOGGED_IN'] = "YES";
|
||||||
|
$_SESSION['PLAYER_ID'] = $id;
|
||||||
|
$_SESSION['USERNAME'] = get_username($id);
|
||||||
|
$_SESSION['SEX'] = get_sex($id);
|
||||||
|
$_SESSION['ADMIN'] = get_admin($id);
|
||||||
|
$_SESSION['MOD'] = get_mod($id);
|
||||||
|
$_SESSION['PASSWORD_HASH'] = get_password_hash($id);
|
||||||
|
$_SESSION['SALT'] = get_salt($id);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$_SESSION['LOGGED_IN'] = "NO";
|
||||||
|
$login_error = "Error in Automatic Login Authentication!";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!is_logged_in())
|
||||||
|
{
|
||||||
|
include("web/header.php");
|
||||||
|
echo("
|
||||||
|
<B>Username or Password is not valid or your account has timed out. Please Log in again.</B><BR><BR></TD></TR></TABLE>");
|
||||||
|
$_SESSION['LOGGED_IN'] = "NO";
|
||||||
|
include("web/footer.php");
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Get account data
|
||||||
|
$newUser = !getUserExistInExt($dbname, $_SESSION['PLAYER_ID']);
|
||||||
|
|
||||||
|
if(!$newUser){
|
||||||
|
|
||||||
|
$money = getUserMoney($dbname, $_SESSION['PLAYER_ID']);
|
||||||
|
$bankMoney = getUserBankMoney($dbname, $_SESSION['PLAYER_ID']);
|
||||||
|
$loginDate = getUserLoginDate($dbname, $_SESSION['PLAYER_ID']);
|
||||||
|
$questPoints = getUserQuestPoints($dbname, $_SESSION['PLAYER_ID']);
|
||||||
|
$totalLogins = getUserTotalLogins($dbname, $_SESSION['PLAYER_ID']);
|
||||||
|
|
||||||
|
$subbed = getUserSubbed($dbname, $_SESSION['PLAYER_ID']);
|
||||||
|
$subTime = getUserSubTimeRemaining($dbname, $_SESSION['PLAYER_ID']);
|
||||||
|
$playtime = getUserPlaytime($dbname, $_SESSION['PLAYER_ID']);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$money = 0;
|
||||||
|
$bankMoney = 0;
|
||||||
|
$loginDate = time();
|
||||||
|
$questPoints = 0;
|
||||||
|
$totalLogins = 0;
|
||||||
|
$subbed = false;
|
||||||
|
$subTime = 0;
|
||||||
|
$playtime = 0;
|
||||||
|
}
|
||||||
|
if($all_users_subbed)
|
||||||
|
$subbed = true;
|
||||||
|
|
||||||
|
$hasIntl = function_exists('numfmt_create');
|
||||||
|
|
||||||
|
if($hasIntl)
|
||||||
|
$fmt = numfmt_create( 'en_US', NumberFormatter::DECIMAL );
|
||||||
|
|
||||||
|
include("web/header.php");
|
||||||
|
?>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script language="javascript1.3">
|
||||||
|
<!--
|
||||||
|
function ajax(url,target) {
|
||||||
|
// native XMLHttpRequest object
|
||||||
|
//document.getElementById(target).innerHTML = 'sending...';
|
||||||
|
if (window.XMLHttpRequest) {
|
||||||
|
req = new XMLHttpRequest();
|
||||||
|
req.onreadystatechange = function() {ajaxDone(target);};
|
||||||
|
req.open("GET", url, true);
|
||||||
|
req.send(null);
|
||||||
|
// IE/Windows ActiveX version
|
||||||
|
} else if (window.ActiveXObject) {
|
||||||
|
req = new ActiveXObject("Microsoft.XMLHTTP");
|
||||||
|
if (req) {
|
||||||
|
req.onreadystatechange = function() {ajaxDone(target);};
|
||||||
|
req.open("GET", url, true);
|
||||||
|
req.send();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function ajaxDone(target) {
|
||||||
|
// only if req is "loaded"
|
||||||
|
if (req.readyState == 4) {
|
||||||
|
// only if "OK"
|
||||||
|
if (req.status == 200) {
|
||||||
|
results = req.responseText;
|
||||||
|
document.getElementById(target).innerHTML = results;
|
||||||
|
} else {
|
||||||
|
document.getElementById(target).innerHTML="ajax error:\n" +
|
||||||
|
req.statusText;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function loadplayers() {
|
||||||
|
<?php echo("ajax('web/playersonline.php?id=".htmlspecialchars($_SESSION['PLAYER_ID'], ENT_QUOTES)."','PLAYERS');"); ?>
|
||||||
|
window.setTimeout("loadplayers()", 30000); //reload player list every millisecs
|
||||||
|
}
|
||||||
|
window.setTimeout("loadplayers()", 10); ///load player list first time quick
|
||||||
|
window.setTimeout("loadplayers()", 3000); ///load player list first time quick
|
||||||
|
|
||||||
|
-->
|
||||||
|
</script>
|
||||||
|
<script>
|
||||||
|
<!--
|
||||||
|
|
||||||
|
function wopen(url, name, w, h)
|
||||||
|
{
|
||||||
|
// Fudge factors for window decoration space.
|
||||||
|
// In my tests these work well on all platforms & browsers.
|
||||||
|
w+=20;//w += 32;
|
||||||
|
h+=60;//h += 96;
|
||||||
|
var win = window.open(url,
|
||||||
|
name,
|
||||||
|
'width=' + w + ', height=' + h + ', ' +
|
||||||
|
'location=no, menubar=no, ' +
|
||||||
|
'status=no, toolbar=no, scrollbars=no, resizable=no');
|
||||||
|
win.resizeTo(w, h);
|
||||||
|
win.focus();
|
||||||
|
}
|
||||||
|
// -->
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<TABLE WIDTH=100% CELLPADDING=5><TR><TD VALIGN=TOP><TABLE BORDER=0 CELLPADDING=5><TR><TD VALIGN=top><CENTER>When Ready, <a href='/horseisle.php?USER=<?php echo(htmlspecialchars($_SESSION['USERNAME'],ENT_QUOTES)); ?>' target=popup onClick="wopen('/horseisle.php?USER=<?php echo(htmlspecialchars($_SESSION['USERNAME'],ENT_QUOTES)); ?>', 'popup', 790, 522); return false;">Enter the World<BR><BR><IMG BORDER=0 SRC=/web/screenshots/enterhorseisle.png></A><BR><BR>(<a href='/horseisle.php?USER=<?php echo(htmlspecialchars($_SESSION['USERNAME'],ENT_QUOTES)); ?>' target=popup onClick="wopen('/horseisle.php?USER=<?php echo(htmlspecialchars($_SESSION['USERNAME'],ENT_QUOTES)); ?>', 'popup', 846, 542); return false;">bigger borders version</A>)<BR>(<A HREF=horseisle.php?USER=<?php echo(htmlspecialchars($_SESSION['USERNAME'],ENT_QUOTES)); ?>>same window version</A>)</TD><TD VALIGN=top>Welcome back <B><?php echo(htmlspecialchars($_SESSION['USERNAME'])); ?></B>, Here is your account info and Horse Isle server status: (<A HREF=?>refresh</A>)<BR><BR><?php
|
||||||
|
$moneyStr = "";
|
||||||
|
if($hasIntl)
|
||||||
|
$moneyStr .= numfmt_format($fmt, $money);
|
||||||
|
else
|
||||||
|
$moneyStr .= $money;
|
||||||
|
|
||||||
|
$bankmoneyStr = "";
|
||||||
|
if($hasIntl)
|
||||||
|
$bankmoneyStr .= numfmt_format($fmt, $bankMoney);
|
||||||
|
else
|
||||||
|
$bankmoneyStr .= $bankMoney;
|
||||||
|
|
||||||
|
$totalLoginsStr = "";
|
||||||
|
if($hasIntl)
|
||||||
|
$totalLoginsStr .= numfmt_format($fmt, $totalLogins);
|
||||||
|
else
|
||||||
|
$totalLoginsStr .= $bankMoney;
|
||||||
|
|
||||||
|
|
||||||
|
$lastOn = 0.00;
|
||||||
|
$current_time = time();
|
||||||
|
$difference = $current_time - $loginDate;
|
||||||
|
$lastOn = $difference/3600;
|
||||||
|
|
||||||
|
if($newUser){
|
||||||
|
echo('<BR>You have a new account and have not yet logged in!<BR>');
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
echo('It has been: '.number_format((float)$lastOn, 2, '.', '').' hours since you were last online. You have logged in '.$totalLoginsStr.' times.<BR>');
|
||||||
|
}
|
||||||
|
echo('You have <B><FONT COLOR=005500>$'.$moneyStr.'</FONT></B> in Horse Isle money on hand and <B><FONT COLOR=005500>$'.$bankmoneyStr.'</FONT></B> in the bank.<BR>You have earned <B>'.(string)$questPoints.'</B> of <B>63005</B> total quest points (<B>'.(string)floor(($questPoints / 63005) * 100.0).'%</B> Complete)<BR>');
|
||||||
|
if(!$subbed)
|
||||||
|
{
|
||||||
|
echo('You have <B>'.(string)$playtime.'</B> minutes of playtime available. As a non-subscriber you get 1 additional minute every 8 minutes. <I>(subject to change based on load)</I> (<A HREF=/web/whylimited.php>why limited?</A>) <BR>');
|
||||||
|
}
|
||||||
|
|
||||||
|
?></TD></TR></TABLE><BR><HR>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<CENTER><TABLE WIDTH=500><TR><TD class=forumlist>
|
||||||
|
|
||||||
|
<FONT SIZE=+1><?php echo(strtoupper(htmlspecialchars($_SESSION['USERNAME']))); ?>'S <?php echo(strtoupper($server_id)); ?> SUBSCRIPTION STATUS:<BR></FONT><FONT SIZE=+2><?php
|
||||||
|
if($subbed)
|
||||||
|
{
|
||||||
|
echo('<FONT COLOR=GREEN>ACTIVE</FONT>');
|
||||||
|
$current_time = time();
|
||||||
|
$difference = $subTime - $current_time;
|
||||||
|
$daysRemain = floor($difference/86400);
|
||||||
|
$daysStr = (string)$daysRemain;
|
||||||
|
|
||||||
|
if($all_users_subbed)
|
||||||
|
$daysStr = "∞";
|
||||||
|
|
||||||
|
echo('</FONT><BR>('.$daysStr.' days remain in your subscription)</FONT> ');
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
echo("NOT SUBSCRIBED</FONT><BR>(You have not yet subscribed)</FONT> ");
|
||||||
|
}
|
||||||
|
?>(<A HREF=web/reasonstosubscribe.php>Subscription Benefits</A>)
|
||||||
|
</TD></TR><TR><TD class=forumlist>
|
||||||
|
<TABLE WIDTH=100%>
|
||||||
|
<TR><TD><B>BUY 1 Month Membership <FONT COLOR=GREEN>$5.00</FONT>usd</B> <I><FONT SIZE=-1>(adds 31 days membership time to the account that you are currently logged in with.) Non-refundable.</FONT></I></TD><TD>
|
||||||
|
<form action="<?php echo($pp_uri); ?>" method="post">
|
||||||
|
<input type="hidden" name="cmd" value="_xclick">
|
||||||
|
<input type="hidden" name="business" value="paypal@horseisle.com">
|
||||||
|
<input type="hidden" name="undefined_quantity" value="1">
|
||||||
|
<input type="hidden" name="item_name" value="One Month Horse Isle Membership-on <?php echo($_SERVER["HTTP_HOST"]); ?>">
|
||||||
|
<input type="hidden" name="item_number" value="<?php echo(htmlspecialchars($_SESSION['PLAYER_ID'])); ?>">
|
||||||
|
<input type="hidden" name="custom" value="<?php echo(htmlspecialchars($_SESSION['PLAYER_ID'])); ?>">
|
||||||
|
<input type="hidden" name="amount" value="5.00">
|
||||||
|
<input type="hidden" name="no_shipping" value="1">
|
||||||
|
<input type="hidden" name="return" value="http://<?php echo($_SERVER["HTTP_HOST"]); ?>/web/paypalpayment.php">
|
||||||
|
<input type="hidden" name="notify_url" value="http://<?php echo($_SERVER["HTTP_HOST"]); ?>/web/paypalgateway.php">
|
||||||
|
<input type="hidden" name="no_note" value="1">
|
||||||
|
<input type="hidden" name="currency_code" value="USD">
|
||||||
|
<input type="hidden" name="lc" value="US">
|
||||||
|
<input type="hidden" name="bn" value="PP-BuyNowBF">
|
||||||
|
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but02.gif" border="0"
|
||||||
|
name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
|
||||||
|
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
|
||||||
|
</form>
|
||||||
|
</TD></TR></TABLE>
|
||||||
|
|
||||||
|
</TD></TR>
|
||||||
|
|
||||||
|
<TR><TD class=forumlist>
|
||||||
|
<TABLE WIDTH=100%><TR>
|
||||||
|
<TD><B>BUY Full Year Membership <FONT COLOR=GREEN>$40.00</FONT>usd</B> <I><FONT SIZE=-1>(adds 366 days membership time to the account you are logged in with. saves $20.00 off monthly subscription) Non-refundable.</FONT></I></TD><TD>
|
||||||
|
<form action="<?php echo($pp_uri); ?>" method="post">
|
||||||
|
<input type="hidden" name="cmd" value="_xclick">
|
||||||
|
<input type="hidden" name="business" value="paypal@horseisle.com">
|
||||||
|
<input type="hidden" name="undefined_quantity" value="1">
|
||||||
|
<input type="hidden" name="item_name" value="Full Year Horse Isle Membership-on <?php echo($_SERVER["HTTP_HOST"]); ?>">
|
||||||
|
<input type="hidden" name="item_number" value="<?php echo(htmlspecialchars($_SESSION['PLAYER_ID'])); ?>">
|
||||||
|
<input type="hidden" name="custom" value="<?php echo(htmlspecialchars($_SESSION['PLAYER_ID'])); ?>">
|
||||||
|
<input type="hidden" name="amount" value="40.00">
|
||||||
|
<input type="hidden" name="no_shipping" value="1">
|
||||||
|
<input type="hidden" name="return" value="http://<?php echo($_SERVER["HTTP_HOST"]); ?>/web/paypalpayment.php">
|
||||||
|
<input type="hidden" name="notify_url" value="http://<?php echo($_SERVER["HTTP_HOST"]); ?>/web/paypalgateway.php">
|
||||||
|
<input type="hidden" name="no_note" value="1">
|
||||||
|
<input type="hidden" name="currency_code" value="USD">
|
||||||
|
<input type="hidden" name="lc" value="US">
|
||||||
|
<input type="hidden" name="bn" value="PP-BuyNowBF">
|
||||||
|
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but02.gif" border="0"
|
||||||
|
name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
|
||||||
|
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
|
||||||
|
</form>
|
||||||
|
</TD></TR></TABLE>
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<TR><TD class=forumlist>
|
||||||
|
|
||||||
|
<TABLE WIDTH=100%><TR>
|
||||||
|
<TD><B>BUY 100k Horse Isle Currency <FONT COLOR=GREEN>$1.00</FONT>usd</B> <I><FONT SIZE=-1>(each one you buy gives your account $10,000 Horse Isle currency for use in the game.) Non-refundable.</FONT></I></TD><TD>
|
||||||
|
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
|
||||||
|
<input type="hidden" name="cmd" value="_xclick">
|
||||||
|
<input type="hidden" name="business" value="paypal@horseisle.com">
|
||||||
|
<input type="hidden" name="undefined_quantity" value="1">
|
||||||
|
<input type="hidden" name="item_name" value="100k Horse Isle Money-on pinto.horseisle.com">
|
||||||
|
<input type="hidden" name="item_number" value="<?php echo(htmlspecialchars($_SESSION['PLAYER_ID'])); ?>">
|
||||||
|
<input type="hidden" name="custom" value="<?php echo(htmlspecialchars($_SESSION['PLAYER_ID'])); ?>">
|
||||||
|
<input type="hidden" name="amount" value="1.00">
|
||||||
|
<input type="hidden" name="no_shipping" value="1">
|
||||||
|
<input type="hidden" name="return" value="http://pinto.horseisle.com/web/paypalpayment.php">
|
||||||
|
<input type="hidden" name="notify_url" value="http://pinto.horseisle.com/web/paypalgateway.php">
|
||||||
|
<input type="hidden" name="no_note" value="1">
|
||||||
|
<input type="hidden" name="currency_code" value="USD">
|
||||||
|
<input type="hidden" name="lc" value="US">
|
||||||
|
<input type="hidden" name="bn" value="PP-BuyNowBF">
|
||||||
|
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but02.gif" border="0"
|
||||||
|
name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
|
||||||
|
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
|
||||||
|
</form>
|
||||||
|
</TD></TR></TABLE>
|
||||||
|
|
||||||
|
</TD><TR>-->
|
||||||
|
|
||||||
|
<TR><TD class=forumlist>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<TABLE WIDTH=100%><TR>
|
||||||
|
<form action="<?php echo($pp_uri); ?>" method="post">
|
||||||
|
<TD><B>BUY $100,000 Horse Isle Currency per <FONT COLOR=GREEN>$1.00</FONT>usd</B><BR>
|
||||||
|
Select: <SELECT NAME=quantity>
|
||||||
|
<!-<OPTION VALUE=1>$10,000 Horse Isle for $1.00 USD->
|
||||||
|
<OPTION VALUE=2>$200,000 Horse Isle for $2.00 USD
|
||||||
|
<OPTION VALUE=3>$300,000 Horse Isle for $3.00 USD
|
||||||
|
<OPTION VALUE=4>$400,000 Horse Isle for $4.00 USD
|
||||||
|
<OPTION VALUE=5>$550,000 Horse Isle for $5.00 USD (10% bonus)
|
||||||
|
<OPTION SELECTED VALUE=10>$1,100,000 Horse Isle for $10.00 USD (10% bonus)
|
||||||
|
<OPTION VALUE=20>$2,300,000 Horse Isle for $20.00 USD (15% bonus)
|
||||||
|
<OPTION VALUE=50>$5,750,000 Horse Isle for $50.00 USD (15% bonus)
|
||||||
|
<OPTION VALUE=100>$12,000,000 Horse Isle for $100.00 USD (20% bonus)
|
||||||
|
<OPTION VALUE=250>$31,250,000 Horse Isle for $250.00 USD (25% bonus)
|
||||||
|
</SELECT><BR>
|
||||||
|
<I><FONT SIZE=-1>(Gives your account Horse Isle currency for use in the game. You can earn Horse Isle money by playing the game. This is not required.) Non-refundable.</FONT></I></TD><TD>
|
||||||
|
<input type="hidden" name="cmd" value="_xclick">
|
||||||
|
<input type="hidden" name="business" value="paypal@horseisle.com">
|
||||||
|
<input type="hidden" name="item_name" value="100k Horse Isle Money-on <?php echo($_SERVER["HTTP_HOST"]); ?>">
|
||||||
|
<input type="hidden" name="item_number" value="<?php echo(htmlspecialchars($_SESSION['PLAYER_ID'])); ?>">
|
||||||
|
<input type="hidden" name="custom" value="<?php echo(htmlspecialchars($_SESSION['PLAYER_ID'])); ?>">
|
||||||
|
<input type="hidden" name="amount" value="1.00">
|
||||||
|
<input type="hidden" name="no_shipping" value="1">
|
||||||
|
<input type="hidden" name="return" value="http://<?php echo($_SERVER["HTTP_HOST"]); ?>/web/paypalpayment.php">
|
||||||
|
<input type="hidden" name="notify_url" value="http://<?php echo($_SERVER["HTTP_HOST"]); ?>/web/paypalgateway.php">
|
||||||
|
<input type="hidden" name="no_note" value="1">
|
||||||
|
<input type="hidden" name="currency_code" value="USD">
|
||||||
|
<input type="hidden" name="lc" value="US">
|
||||||
|
<input type="hidden" name="bn" value="PP-BuyNowBF">
|
||||||
|
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but02.gif" border="0"
|
||||||
|
name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
|
||||||
|
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
|
||||||
|
</form>
|
||||||
|
</TD></TR></TABLE>
|
||||||
|
|
||||||
|
</TD></TR><TR><TD class=forumlist>
|
||||||
|
<TABLE WIDTH=100%>
|
||||||
|
<TR><TD>
|
||||||
|
<B>BUY Pawneer Order <FONT COLOR=GREEN>$8.00</FONT>usd</B> <I><FONT SIZE=-1>(allows you to order a custom breed/color/gender horse on server from Pawneer. This is not required, you can trade other players to get the breed you desire also.) Non-refundable.</FONT></I></TD><TD>
|
||||||
|
<form action="<?php echo($pp_uri); ?>" method="post">
|
||||||
|
<input type="hidden" name="cmd" value="_xclick">
|
||||||
|
<input type="hidden" name="business" value="paypal@horseisle.com">
|
||||||
|
<input type="hidden" name="undefined_quantity" value="1">
|
||||||
|
<input type="hidden" name="item_name" value="Pawneer Order-on <?php echo($_SERVER["HTTP_HOST"]); ?>">
|
||||||
|
<input type="hidden" name="item_number" value="<?php echo(htmlspecialchars($_SESSION['PLAYER_ID'])); ?>">
|
||||||
|
<input type="hidden" name="custom" value="<?php echo(htmlspecialchars($_SESSION['PLAYER_ID'])); ?>">
|
||||||
|
<input type="hidden" name="amount" value="8.00">
|
||||||
|
<input type="hidden" name="no_shipping" value="1">
|
||||||
|
<input type="hidden" name="return" value="http://<?php echo($_SERVER["HTTP_HOST"]); ?>/web/paypalpayment.php">
|
||||||
|
<input type="hidden" name="notify_url" value="http://<?php echo($_SERVER["HTTP_HOST"]); ?>/web/paypalgateway.php">
|
||||||
|
<input type="hidden" name="no_note" value="1">
|
||||||
|
<input type="hidden" name="currency_code" value="USD">
|
||||||
|
<input type="hidden" name="lc" value="US">
|
||||||
|
<input type="hidden" name="bn" value="PP-BuyNowBF">
|
||||||
|
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but02.gif" border="0"
|
||||||
|
name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
|
||||||
|
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
|
||||||
|
</form>
|
||||||
|
</TD></TR></TABLE>
|
||||||
|
|
||||||
|
</TD></TR><TR><TD class=forumlist>
|
||||||
|
<TABLE WIDTH=100%>
|
||||||
|
<TR><TD>
|
||||||
|
<B>BUY 5 Pawneer Orders <FONT COLOR=GREEN>$30.00</FONT>usd</B> <I><FONT SIZE=-1>(save $10.00 - allows you to order 5 custom horses from Pawneer) Non-refundable.</FONT></I></TD><TD>
|
||||||
|
<form action="<?php echo($pp_uri); ?>" method="post">
|
||||||
|
<input type="hidden" name="cmd" value="_xclick">
|
||||||
|
<input type="hidden" name="business" value="paypal@horseisle.com">
|
||||||
|
<input type="hidden" name="undefined_quantity" value="1">
|
||||||
|
<input type="hidden" name="item_name" value="Five Pawneer Order-on <?php echo($_SERVER["HTTP_HOST"]); ?>">
|
||||||
|
<input type="hidden" name="item_number" value="<?php echo(htmlspecialchars($_SESSION['PLAYER_ID'])); ?>">
|
||||||
|
<input type="hidden" name="custom" value="<?php echo(htmlspecialchars($_SESSION['PLAYER_ID'])); ?>">
|
||||||
|
<input type="hidden" name="amount" value="30.00">
|
||||||
|
<input type="hidden" name="no_shipping" value="1">
|
||||||
|
<input type="hidden" name="return" value="http://<?php echo($_SERVER["HTTP_HOST"]); ?>/web/paypalpayment.php">
|
||||||
|
<input type="hidden" name="notify_url" value="http://<?php echo($_SERVER["HTTP_HOST"]); ?>/web/paypalgateway.php">
|
||||||
|
<input type="hidden" name="no_note" value="1">
|
||||||
|
<input type="hidden" name="currency_code" value="USD">
|
||||||
|
<input type="hidden" name="lc" value="US">
|
||||||
|
<input type="hidden" name="bn" value="PP-BuyNowBF">
|
||||||
|
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but02.gif" border="0"
|
||||||
|
name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
|
||||||
|
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
|
||||||
|
</form>
|
||||||
|
</TD></TR></TABLE>
|
||||||
|
|
||||||
|
|
||||||
|
</TD></TR>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<TR><TD BGCOLOR=WHITE><CENTER>If you happen to have any:<B> <A HREF=/web/spendhorsebucks.php>Redeem Horse Bucks</A></TD></TR>
|
||||||
|
|
||||||
|
<TR><TD class=forumlist>
|
||||||
|
<BR>Alternative Payment Methods: <A HREF=/web/checks.php>Check/Cash via postal mail</A>
|
||||||
|
<BR><BR>Gift Payments: <A HREF=<?php echo($master_site); ?>/web/giftmembership.php>Pay for a different player</A>
|
||||||
|
<BR><BR></TD></TR>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</TD></TR></TABLE></CENTER>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<HR>
|
||||||
|
|
||||||
|
</TD><TD VALIGN=top><DIV ID="PLAYERS"><BR></DIV></TD></TR></TABLE><?php include("web/footer.php"); ?>
|
||||||
|
|
BIN
game-site/breed/abaco.swf
Normal file
BIN
game-site/breed/abaco.swf
Normal file
Binary file not shown.
BIN
game-site/breed/abtenauer.swf
Normal file
BIN
game-site/breed/abtenauer.swf
Normal file
Binary file not shown.
BIN
game-site/breed/akhalteke.swf
Normal file
BIN
game-site/breed/akhalteke.swf
Normal file
Binary file not shown.
BIN
game-site/breed/alterreal.swf
Normal file
BIN
game-site/breed/alterreal.swf
Normal file
Binary file not shown.
BIN
game-site/breed/americanpaint.swf
Normal file
BIN
game-site/breed/americanpaint.swf
Normal file
Binary file not shown.
BIN
game-site/breed/americanwhite.swf
Normal file
BIN
game-site/breed/americanwhite.swf
Normal file
Binary file not shown.
BIN
game-site/breed/andalusian.swf
Normal file
BIN
game-site/breed/andalusian.swf
Normal file
Binary file not shown.
BIN
game-site/breed/angloarab.swf
Normal file
BIN
game-site/breed/angloarab.swf
Normal file
Binary file not shown.
BIN
game-site/breed/appaloosa.swf
Normal file
BIN
game-site/breed/appaloosa.swf
Normal file
Binary file not shown.
BIN
game-site/breed/appendixqh.swf
Normal file
BIN
game-site/breed/appendixqh.swf
Normal file
Binary file not shown.
BIN
game-site/breed/aqh.swf
Normal file
BIN
game-site/breed/aqh.swf
Normal file
Binary file not shown.
BIN
game-site/breed/arabian.swf
Normal file
BIN
game-site/breed/arabian.swf
Normal file
Binary file not shown.
BIN
game-site/breed/ardennais.swf
Normal file
BIN
game-site/breed/ardennais.swf
Normal file
Binary file not shown.
BIN
game-site/breed/argentine.swf
Normal file
BIN
game-site/breed/argentine.swf
Normal file
Binary file not shown.
BIN
game-site/breed/australianstock.swf
Normal file
BIN
game-site/breed/australianstock.swf
Normal file
Binary file not shown.
BIN
game-site/breed/azteca.swf
Normal file
BIN
game-site/breed/azteca.swf
Normal file
Binary file not shown.
BIN
game-site/breed/barb.swf
Normal file
BIN
game-site/breed/barb.swf
Normal file
Binary file not shown.
BIN
game-site/breed/bashkir.swf
Normal file
BIN
game-site/breed/bashkir.swf
Normal file
Binary file not shown.
BIN
game-site/breed/belgian.swf
Normal file
BIN
game-site/breed/belgian.swf
Normal file
Binary file not shown.
BIN
game-site/breed/blackforest.swf
Normal file
BIN
game-site/breed/blackforest.swf
Normal file
Binary file not shown.
BIN
game-site/breed/boerperd.swf
Normal file
BIN
game-site/breed/boerperd.swf
Normal file
Binary file not shown.
BIN
game-site/breed/britishappaloosa.swf
Normal file
BIN
game-site/breed/britishappaloosa.swf
Normal file
Binary file not shown.
BIN
game-site/breed/britishspotted.swf
Normal file
BIN
game-site/breed/britishspotted.swf
Normal file
Binary file not shown.
BIN
game-site/breed/brumby.swf
Normal file
BIN
game-site/breed/brumby.swf
Normal file
Binary file not shown.
BIN
game-site/breed/budyonny.swf
Normal file
BIN
game-site/breed/budyonny.swf
Normal file
Binary file not shown.
BIN
game-site/breed/calabrese.swf
Normal file
BIN
game-site/breed/calabrese.swf
Normal file
Binary file not shown.
BIN
game-site/breed/camargue.swf
Normal file
BIN
game-site/breed/camargue.swf
Normal file
Binary file not shown.
BIN
game-site/breed/camarillo.swf
Normal file
BIN
game-site/breed/camarillo.swf
Normal file
Binary file not shown.
BIN
game-site/breed/camel.swf
Normal file
BIN
game-site/breed/camel.swf
Normal file
Binary file not shown.
BIN
game-site/breed/campolina.swf
Normal file
BIN
game-site/breed/campolina.swf
Normal file
Binary file not shown.
BIN
game-site/breed/canadian.swf
Normal file
BIN
game-site/breed/canadian.swf
Normal file
Binary file not shown.
BIN
game-site/breed/carolina.swf
Normal file
BIN
game-site/breed/carolina.swf
Normal file
Binary file not shown.
BIN
game-site/breed/caspian.swf
Normal file
BIN
game-site/breed/caspian.swf
Normal file
Binary file not shown.
BIN
game-site/breed/chincoteaguepony.swf
Normal file
BIN
game-site/breed/chincoteaguepony.swf
Normal file
Binary file not shown.
BIN
game-site/breed/clevelandbay.swf
Normal file
BIN
game-site/breed/clevelandbay.swf
Normal file
Binary file not shown.
BIN
game-site/breed/clydesdale.swf
Normal file
BIN
game-site/breed/clydesdale.swf
Normal file
Binary file not shown.
BIN
game-site/breed/connemara.swf
Normal file
BIN
game-site/breed/connemara.swf
Normal file
Binary file not shown.
BIN
game-site/breed/creamdraft.swf
Normal file
BIN
game-site/breed/creamdraft.swf
Normal file
Binary file not shown.
BIN
game-site/breed/criollo.swf
Normal file
BIN
game-site/breed/criollo.swf
Normal file
Binary file not shown.
BIN
game-site/breed/dalespony.swf
Normal file
BIN
game-site/breed/dalespony.swf
Normal file
Binary file not shown.
BIN
game-site/breed/danish.swf
Normal file
BIN
game-site/breed/danish.swf
Normal file
Binary file not shown.
BIN
game-site/breed/dartmoor.swf
Normal file
BIN
game-site/breed/dartmoor.swf
Normal file
Binary file not shown.
BIN
game-site/breed/datong.swf
Normal file
BIN
game-site/breed/datong.swf
Normal file
Binary file not shown.
BIN
game-site/breed/dole.swf
Normal file
BIN
game-site/breed/dole.swf
Normal file
Binary file not shown.
BIN
game-site/breed/don.swf
Normal file
BIN
game-site/breed/don.swf
Normal file
Binary file not shown.
BIN
game-site/breed/dutchwarmblood.swf
Normal file
BIN
game-site/breed/dutchwarmblood.swf
Normal file
Binary file not shown.
BIN
game-site/breed/egyptian.swf
Normal file
BIN
game-site/breed/egyptian.swf
Normal file
Binary file not shown.
BIN
game-site/breed/eriskay.swf
Normal file
BIN
game-site/breed/eriskay.swf
Normal file
Binary file not shown.
BIN
game-site/breed/estonian.swf
Normal file
BIN
game-site/breed/estonian.swf
Normal file
Binary file not shown.
BIN
game-site/breed/exmoor.swf
Normal file
BIN
game-site/breed/exmoor.swf
Normal file
Binary file not shown.
BIN
game-site/breed/falabella.swf
Normal file
BIN
game-site/breed/falabella.swf
Normal file
Binary file not shown.
BIN
game-site/breed/fell.swf
Normal file
BIN
game-site/breed/fell.swf
Normal file
Binary file not shown.
BIN
game-site/breed/finnhorse.swf
Normal file
BIN
game-site/breed/finnhorse.swf
Normal file
Binary file not shown.
BIN
game-site/breed/floridacracker.swf
Normal file
BIN
game-site/breed/floridacracker.swf
Normal file
Binary file not shown.
BIN
game-site/breed/foxtrotter.swf
Normal file
BIN
game-site/breed/foxtrotter.swf
Normal file
Binary file not shown.
BIN
game-site/breed/franches.swf
Normal file
BIN
game-site/breed/franches.swf
Normal file
Binary file not shown.
BIN
game-site/breed/fred.swf
Normal file
BIN
game-site/breed/fred.swf
Normal file
Binary file not shown.
BIN
game-site/breed/frenchtrotter.swf
Normal file
BIN
game-site/breed/frenchtrotter.swf
Normal file
Binary file not shown.
BIN
game-site/breed/friesian.swf
Normal file
BIN
game-site/breed/friesian.swf
Normal file
Binary file not shown.
BIN
game-site/breed/furioso.swf
Normal file
BIN
game-site/breed/furioso.swf
Normal file
Binary file not shown.
BIN
game-site/breed/galiceno.swf
Normal file
BIN
game-site/breed/galiceno.swf
Normal file
Binary file not shown.
BIN
game-site/breed/gelderlander.swf
Normal file
BIN
game-site/breed/gelderlander.swf
Normal file
Binary file not shown.
BIN
game-site/breed/georgian.swf
Normal file
BIN
game-site/breed/georgian.swf
Normal file
Binary file not shown.
BIN
game-site/breed/germanpony.swf
Normal file
BIN
game-site/breed/germanpony.swf
Normal file
Binary file not shown.
BIN
game-site/breed/gotland.swf
Normal file
BIN
game-site/breed/gotland.swf
Normal file
Binary file not shown.
BIN
game-site/breed/gronigen.swf
Normal file
BIN
game-site/breed/gronigen.swf
Normal file
Binary file not shown.
BIN
game-site/breed/guoxia.swf
Normal file
BIN
game-site/breed/guoxia.swf
Normal file
Binary file not shown.
BIN
game-site/breed/hackney.swf
Normal file
BIN
game-site/breed/hackney.swf
Normal file
Binary file not shown.
BIN
game-site/breed/haflinger.swf
Normal file
BIN
game-site/breed/haflinger.swf
Normal file
Binary file not shown.
BIN
game-site/breed/hanoverian.swf
Normal file
BIN
game-site/breed/hanoverian.swf
Normal file
Binary file not shown.
BIN
game-site/breed/highland.swf
Normal file
BIN
game-site/breed/highland.swf
Normal file
Binary file not shown.
BIN
game-site/breed/hokkaido.swf
Normal file
BIN
game-site/breed/hokkaido.swf
Normal file
Binary file not shown.
BIN
game-site/breed/holsteiner.swf
Normal file
BIN
game-site/breed/holsteiner.swf
Normal file
Binary file not shown.
BIN
game-site/breed/hucul.swf
Normal file
BIN
game-site/breed/hucul.swf
Normal file
Binary file not shown.
BIN
game-site/breed/iberian.swf
Normal file
BIN
game-site/breed/iberian.swf
Normal file
Binary file not shown.
BIN
game-site/breed/icelandic.swf
Normal file
BIN
game-site/breed/icelandic.swf
Normal file
Binary file not shown.
BIN
game-site/breed/iomud.swf
Normal file
BIN
game-site/breed/iomud.swf
Normal file
Binary file not shown.
BIN
game-site/breed/irishdraught.swf
Normal file
BIN
game-site/breed/irishdraught.swf
Normal file
Binary file not shown.
BIN
game-site/breed/irishsport.swf
Normal file
BIN
game-site/breed/irishsport.swf
Normal file
Binary file not shown.
BIN
game-site/breed/israeli.swf
Normal file
BIN
game-site/breed/israeli.swf
Normal file
Binary file not shown.
BIN
game-site/breed/java.swf
Normal file
BIN
game-site/breed/java.swf
Normal file
Binary file not shown.
BIN
game-site/breed/jutland.swf
Normal file
BIN
game-site/breed/jutland.swf
Normal file
Binary file not shown.
BIN
game-site/breed/kaimanawa.swf
Normal file
BIN
game-site/breed/kaimanawa.swf
Normal file
Binary file not shown.
BIN
game-site/breed/karabair.swf
Normal file
BIN
game-site/breed/karabair.swf
Normal file
Binary file not shown.
BIN
game-site/breed/karabakh.swf
Normal file
BIN
game-site/breed/karabakh.swf
Normal file
Binary file not shown.
BIN
game-site/breed/kathiawari.swf
Normal file
BIN
game-site/breed/kathiawari.swf
Normal file
Binary file not shown.
BIN
game-site/breed/kentucky.swf
Normal file
BIN
game-site/breed/kentucky.swf
Normal file
Binary file not shown.
BIN
game-site/breed/kerrybog.swf
Normal file
BIN
game-site/breed/kerrybog.swf
Normal file
Binary file not shown.
BIN
game-site/breed/kiger.swf
Normal file
BIN
game-site/breed/kiger.swf
Normal file
Binary file not shown.
BIN
game-site/breed/kinsky.swf
Normal file
BIN
game-site/breed/kinsky.swf
Normal file
Binary file not shown.
BIN
game-site/breed/kladruby.swf
Normal file
BIN
game-site/breed/kladruby.swf
Normal file
Binary file not shown.
BIN
game-site/breed/knabstrup.swf
Normal file
BIN
game-site/breed/knabstrup.swf
Normal file
Binary file not shown.
BIN
game-site/breed/landais.swf
Normal file
BIN
game-site/breed/landais.swf
Normal file
Binary file not shown.
BIN
game-site/breed/lipizzan.swf
Normal file
BIN
game-site/breed/lipizzan.swf
Normal file
Binary file not shown.
BIN
game-site/breed/llama.swf
Normal file
BIN
game-site/breed/llama.swf
Normal file
Binary file not shown.
BIN
game-site/breed/lokai.swf
Normal file
BIN
game-site/breed/lokai.swf
Normal file
Binary file not shown.
BIN
game-site/breed/lusitano.swf
Normal file
BIN
game-site/breed/lusitano.swf
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue