Add gametime support, and other stuff
BIN
WebInterface/game-site/breed/abaco.swf
Normal file
BIN
WebInterface/game-site/breed/abtenauer.swf
Normal file
BIN
WebInterface/game-site/breed/akhalteke.swf
Normal file
BIN
WebInterface/game-site/breed/alterreal.swf
Normal file
BIN
WebInterface/game-site/breed/americanpaint.swf
Normal file
BIN
WebInterface/game-site/breed/angloarab.swf
Normal file
BIN
WebInterface/game-site/breed/appendixqh.swf
Normal file
BIN
WebInterface/game-site/breed/arabian.swf
Normal file
BIN
WebInterface/game-site/breed/creamdraft.swf
Normal file
BIN
WebInterface/game-site/breed/gronigen.swf
Normal file
BIN
WebInterface/game-site/breed/kaimanawa.swf
Normal file
BIN
WebInterface/game-site/breed/karabakh.swf
Normal file
BIN
WebInterface/game-site/breed/mustang.swf
Normal file
BIN
WebInterface/game-site/breed/nezperce.swf
Normal file
BIN
WebInterface/game-site/breed/oldenburg.swf
Normal file
BIN
WebInterface/game-site/breed/saddlebred.swf
Normal file
BIN
WebInterface/game-site/breed/unipeg.swf
Normal file
BIN
WebInterface/game-site/breed/welshmountain.swf
Normal file
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
202
WebInterface/game-site/horseisle.php
Normal file
|
@ -0,0 +1,202 @@
|
|||
<html lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<title>HORSEISLE - Secret Land of Horses</title>
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
||||
|
||||
<script language="javascript"><!--
|
||||
// Intercept Browser X and give user choice (on firefox)
|
||||
|
||||
//window.onbeforeunload= function (evt) { return false; }
|
||||
|
||||
var ConfirmClose = true;
|
||||
|
||||
window.onbeforeunload = confirmExit;
|
||||
function confirmExit()
|
||||
{
|
||||
if (ConfirmClose)
|
||||
return "[ Please use QUIT GAME button to exit Horse Isle ]";
|
||||
}
|
||||
function allowExit()
|
||||
{
|
||||
ConfirmClose = false;
|
||||
}
|
||||
|
||||
|
||||
/// Every half second, put focus on Flash window.
|
||||
//function getfocus(){
|
||||
// horseisle.focus();
|
||||
// mytimer = setTimeout('getfocus()', 500);
|
||||
//}
|
||||
//-->
|
||||
</script>
|
||||
<script language="JavaScript" type="text/javascript">
|
||||
<!--
|
||||
// -----------------------------------------------------------------------------
|
||||
// Globals
|
||||
// Major version of Flash required
|
||||
var requiredMajorVersion = 8;
|
||||
// Minor version of Flash required
|
||||
var requiredMinorVersion = 0;
|
||||
// Revision of Flash required
|
||||
var requiredRevision = 0;
|
||||
// the version of javascript supported
|
||||
var jsVersion = 1.0;
|
||||
// -----------------------------------------------------------------------------
|
||||
// -->
|
||||
</script>
|
||||
<script language="VBScript" type="text/vbscript">
|
||||
<!-- // Visual basic helper required to detect Flash Player ActiveX control version information
|
||||
Function VBGetSwfVer(i)
|
||||
on error resume next
|
||||
Dim swControl, swVersion
|
||||
swVersion = 0
|
||||
|
||||
set swControl = CreateObject("ShockwaveFlash.ShockwaveFlash." + CStr(i))
|
||||
if (IsObject(swControl)) then
|
||||
swVersion = swControl.GetVariable("$version")
|
||||
end if
|
||||
VBGetSwfVer = swVersion
|
||||
End Function
|
||||
// -->
|
||||
</script>
|
||||
<script language="JavaScript1.1" type="text/javascript">
|
||||
<!-- // Detect Client Browser type
|
||||
var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
|
||||
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
|
||||
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
|
||||
jsVersion = 1.1;
|
||||
// JavaScript helper required to detect Flash Player PlugIn version information
|
||||
function JSGetSwfVer(i){
|
||||
// NS/Opera version >= 3 check for Flash plugin in plugin array
|
||||
if (navigator.plugins != null && navigator.plugins.length > 0) {
|
||||
if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
|
||||
var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
|
||||
var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
|
||||
descArray = flashDescription.split(" ");
|
||||
tempArrayMajor = descArray[2].split(".");
|
||||
versionMajor = tempArrayMajor[0];
|
||||
versionMinor = tempArrayMajor[1];
|
||||
if ( descArray[3] != "" ) {
|
||||
tempArrayMinor = descArray[3].split("r");
|
||||
} else {
|
||||
tempArrayMinor = descArray[4].split("r");
|
||||
}
|
||||
versionRevision = tempArrayMinor[1] > 0 ? tempArrayMinor[1] : 0;
|
||||
flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
|
||||
} else {
|
||||
flashVer = -1;
|
||||
}
|
||||
}
|
||||
// MSN/WebTV 2.6 supports Flash 4
|
||||
else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
|
||||
// WebTV 2.5 supports Flash 3
|
||||
else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
|
||||
// older WebTV supports Flash 2
|
||||
else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
|
||||
// Can't detect in all other cases
|
||||
else {
|
||||
|
||||
flashVer = -1;
|
||||
}
|
||||
return flashVer;
|
||||
}
|
||||
// If called with no parameters this function returns a floating point value
|
||||
// which should be the version of the Flash Player or 0.0
|
||||
// ex: Flash Player 7r14 returns 7.14
|
||||
// If called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
|
||||
function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
|
||||
{
|
||||
reqVer = parseFloat(reqMajorVer + "." + reqRevision);
|
||||
// loop backwards through the versions until we find the newest version
|
||||
for (i=25;i>0;i--) {
|
||||
if (isIE && isWin && !isOpera) {
|
||||
versionStr = VBGetSwfVer(i);
|
||||
} else {
|
||||
versionStr = JSGetSwfVer(i);
|
||||
}
|
||||
if (versionStr == -1 ) {
|
||||
return false;
|
||||
} else if (versionStr != 0) {
|
||||
if(isIE && isWin && !isOpera) {
|
||||
tempArray = versionStr.split(" ");
|
||||
tempString = tempArray[1];
|
||||
versionArray = tempString .split(",");
|
||||
} else {
|
||||
versionArray = versionStr.split(".");
|
||||
}
|
||||
versionMajor = versionArray[0];
|
||||
versionMinor = versionArray[1];
|
||||
versionRevision = versionArray[2];
|
||||
|
||||
versionString = versionMajor + "." + versionRevision; // 7.0r24 == 7.24
|
||||
versionNum = parseFloat(versionString);
|
||||
// is the major.revision >= requested major.revision AND the minor version >= requested minor
|
||||
if ( (versionMajor > reqMajorVer) && (versionNum >= reqVer) ) {
|
||||
return true;
|
||||
} else {
|
||||
return ((versionNum >= reqVer && versionMinor >= reqMinorVer) ? true : false );
|
||||
}
|
||||
}
|
||||
}
|
||||
return (reqVer ? false : 0.0);
|
||||
}
|
||||
// -->
|
||||
</script>
|
||||
</head>
|
||||
<body bgcolor="#A797A7" MARGINWIDTH=0 MARGINHEIGHT=0 LEFTMARGIN=0 TOPMARGIN=0 onLoad="">
|
||||
<!--url's used in the movie-->
|
||||
<!--text used in the movie-->
|
||||
<CENTER>
|
||||
<!--
|
||||
<p align="center"></p>
|
||||
<p align="left"></p>
|
||||
<p align="left"><font face="Arial" size="9" color="#000000" letterSpacing="0.000000" kerning="1"><b>FPS</b></font></p>
|
||||
<p align="center"><font face="Times New Roman" size="18" color="#000000" letterSpacing="0.000000" kerning="1"><b>CONNECTION TO SERVER LOST:</b></font></p><p align="center"></p><p align="center"><font face="Times New Roman" size="18" color="#000000" letterSpacing="0.000000" kerning="1"><b> Either your Internet connection is down, or the <sbr />server is restarting or possibly down. </b></font></p><p align="center"></p><p align="center"><font face="Times New Roman" size="18" color="#000000" letterSpacing="0.000000" kerning="1"><b>Please try again shortly.</b></font></p><p align="center"></p><p align="center"><font face="Times New Roman" size="18" color="#000066" letterSpacing="0.000000" kerning="1"><a href="http://hi1.horseisle.com/" target = "_self"><b>HI1.HORSEISLE.COM</b></a></font></p>
|
||||
-->
|
||||
<script language="JavaScript" type="text/javascript">
|
||||
<!--
|
||||
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
|
||||
if(hasRightVersion) { // if we've detected an acceptable version
|
||||
var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
|
||||
+ 'width="790" height="500" id="horseisle" name="horseisle"'
|
||||
+ 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
|
||||
+ '<param name="movie" value="horseisle.swf?SERVER=beta&PORT=12321&USER=&2158322" /><param name="loop" value="false" /><param name="menu" value="false" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="salign" value="t" /><param name="bgcolor" value="#ffffff" />'
|
||||
+ '<embed src="horseisle.swf?SERVER=beta&PORT=12321&USER=&2158322" loop="false" menu="false" quality="high" scale="noscale" salign="t" bgcolor="#ffffff" '
|
||||
+ 'width="790" height="500" name="horseisle" align="top"'
|
||||
+ 'play="true"'
|
||||
+ 'loop="false"'
|
||||
+ 'quality="high"'
|
||||
+ 'allowScriptAccess="sameDomain"'
|
||||
+ 'type="application/x-shockwave-flash"'
|
||||
+ 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
|
||||
+ '<\/embed>'
|
||||
+ '<\/object>';
|
||||
document.write(oeTags); // embed the flash movie
|
||||
} else { // flash is too old or we can't detect the plugin
|
||||
var alternateContent = 'Alternate HTML content should be placed here.'
|
||||
+ 'This content requires the Macromedia Flash Player.'
|
||||
+ '<a href=http://www.macromedia.com/go/getflash/>Get Flash</a>';
|
||||
document.write(alternateContent); // insert non-flash content
|
||||
}
|
||||
// -->
|
||||
</script>
|
||||
<noscript><CENTER>
|
||||
It appears you do not have the required Flash Player Software.<BR>
|
||||
<B>Horse Isle requires the Adobe Flash Player 9+.</B><BR>
|
||||
It is a free and easy download - <a href="http://www.macromedia.com/go/getflash/">Get Flash</a><BR>
|
||||
</noscript>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
BIN
WebInterface/game-site/horseisle.swf
Normal file
BIN
WebInterface/game-site/mod/bank.swf
Normal file
BIN
WebInterface/game-site/mod/barn.swf
Normal file
BIN
WebInterface/game-site/mod/bees.swf
Normal file
BIN
WebInterface/game-site/mod/bees_new.swf
Normal file
BIN
WebInterface/game-site/mod/boatcutscene.swf
Normal file
BIN
WebInterface/game-site/mod/boatdock.swf
Normal file
BIN
WebInterface/game-site/mod/bonesflag.swf
Normal file
BIN
WebInterface/game-site/mod/breedviewer.swf
Normal file
BIN
WebInterface/game-site/mod/brickpoet.swf
Normal file
BIN
WebInterface/game-site/mod/clothesshop.swf
Normal file
BIN
WebInterface/game-site/mod/flowershop.swf
Normal file
BIN
WebInterface/game-site/mod/foodstore.swf
Normal file
BIN
WebInterface/game-site/mod/fountain.swf
Normal file
BIN
WebInterface/game-site/mod/gemslider.swf
Normal file
BIN
WebInterface/game-site/mod/groomer.swf
Normal file
BIN
WebInterface/game-site/mod/horseequipment.swf
Normal file
BIN
WebInterface/game-site/mod/horsefeed.swf
Normal file
BIN
WebInterface/game-site/mod/inn.swf
Normal file
BIN
WebInterface/game-site/mod/jail.swf
Normal file
BIN
WebInterface/game-site/mod/jungletemple.swf
Normal file
BIN
WebInterface/game-site/mod/jungletempleinside.swf
Normal file
BIN
WebInterface/game-site/mod/library.swf
Normal file
BIN
WebInterface/game-site/mod/oasis.swf
Normal file
BIN
WebInterface/game-site/mod/painting.swf
Normal file
BIN
WebInterface/game-site/mod/petshop.swf
Normal file
BIN
WebInterface/game-site/mod/pianist.swf
Normal file
BIN
WebInterface/game-site/mod/pirateship.swf
Normal file
BIN
WebInterface/game-site/mod/pond.swf
Normal file
BIN
WebInterface/game-site/mod/pyramidmaze.swf
Normal file
BIN
WebInterface/game-site/mod/ranchviewer.swf
Normal file
BIN
WebInterface/game-site/mod/rockshop.swf
Normal file
BIN
WebInterface/game-site/mod/rowboat.swf
Normal file
BIN
WebInterface/game-site/mod/sandcastlemoat.swf
Normal file
BIN
WebInterface/game-site/mod/sign.swf
Normal file
BIN
WebInterface/game-site/mod/tanagrama.swf
Normal file
BIN
WebInterface/game-site/mod/townhall.swf
Normal file
BIN
WebInterface/game-site/mod/vet.swf
Normal file
BIN
WebInterface/game-site/mod/wagoncutscene.swf
Normal file
BIN
WebInterface/game-site/mod/wagonstation.swf
Normal file
BIN
WebInterface/game-site/mod/welcomesign.swf
Normal file
BIN
WebInterface/game-site/mod/welcomewilly.swf
Normal file
BIN
WebInterface/game-site/mod/wishingwell.swf
Normal file
BIN
WebInterface/game-site/mod/wordguess.swf
Normal file
BIN
WebInterface/game-site/mod/workshop.swf
Normal file
BIN
WebInterface/game-site/resource/bgm2
Normal file
BIN
WebInterface/game-site/resource/bgm3
Normal file
BIN
WebInterface/game-site/resource/bgm4
Normal file
BIN
WebInterface/game-site/resource/bgm5
Normal file
BIN
WebInterface/game-site/resource/bgm6
Normal file
BIN
WebInterface/game-site/resource/bgm7
Normal file
1
WebInterface/game-site/robots.txt
Normal file
|
@ -0,0 +1 @@
|
|||
#empty file to avoid errors in error log
|
BIN
WebInterface/game-site/tack/bridle-jackrabbit.swf
Normal file
BIN
WebInterface/game-site/tack/pet-parrot.swf
Normal file
BIN
WebInterface/game-site/tack/saddle-jackrabbit.swf
Normal file
BIN
WebInterface/game-site/tack/saddlepad-jackrabbit.swf
Normal file
|
@ -109,26 +109,26 @@ color: #440000;
|
|||
</TABLE>
|
||||
<CENTER>
|
||||
|
||||
<B>Username or Password is not valid or your account has timed out. Please Log in again.</B><BR><BR></TD></TR></TABLE><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR>
|
||||
<TD><IMG SRC=/web/hoilgui10.gif></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui11.gif></TD>
|
||||
<TD><IMG SRC=/web/hoilgui12.gif></TD>
|
||||
</TR></TABLE>
|
||||
<CENTER><B>
|
||||
[ <A HREF=//master.horseisle.com/beginnerguide/>New Player Guide</A> ]<BR>
|
||||
[ <A HREF=/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2020 Horse Isle</FONT>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
||||
<B>Username or Password is not valid or your account has timed out. Please Log in again.</B><BR><BR></TD></TR></TABLE><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR>
|
||||
<TD><IMG SRC=/web/hoilgui10.gif></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui11.gif></TD>
|
||||
<TD><IMG SRC=/web/hoilgui12.gif></TD>
|
||||
</TR></TABLE>
|
||||
<CENTER><B>
|
||||
[ <A HREF=//master.horseisle.com/beginnerguide/>New Player Guide</A> ]<BR>
|
||||
[ <A HREF=/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2020 Horse Isle</FONT>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
|
@ -1,15 +1,15 @@
|
|||
<?php
|
||||
|
||||
function hash_salt(string $input, string $salt)
|
||||
{
|
||||
$output = hash('sha512',$input,true);
|
||||
$len=strlen(bin2hex($output))/2;
|
||||
$xor_hash = "";
|
||||
for($i = 0; $i < $len; $i++)
|
||||
{
|
||||
$xor_hash .= $output[$i] ^ $salt[$i];
|
||||
}
|
||||
|
||||
return hash('sha512',$xor_hash,false);
|
||||
}
|
||||
<?php
|
||||
|
||||
function hash_salt(string $input, string $salt)
|
||||
{
|
||||
$output = hash('sha512',$input,true);
|
||||
$len=strlen(bin2hex($output))/2;
|
||||
$xor_hash = "";
|
||||
for($i = 0; $i < $len; $i++)
|
||||
{
|
||||
$xor_hash .= $output[$i] ^ $salt[$i];
|
||||
}
|
||||
|
||||
return hash('sha512',$xor_hash,false);
|
||||
}
|
||||
?>
|
|
@ -1,8 +1,8 @@
|
|||
<?php
|
||||
$dbname = 'beta';
|
||||
$dbuser = 'root';
|
||||
$dbpass = 'test123';
|
||||
$dbhost = '127.0.0.1';
|
||||
|
||||
|
||||
<?php
|
||||
$dbname = 'beta';
|
||||
$dbuser = 'root';
|
||||
$dbpass = 'test123';
|
||||
$dbhost = '127.0.0.1';
|
||||
|
||||
|
||||
?>
|
BIN
WebInterface/master-site/favicon.ico
Normal file
After Width: | Height: | Size: 3.1 KiB |
|
@ -202,27 +202,27 @@ TITLE="One of the Arena MiniGames, This is Horse Racing." >
|
|||
<CENTER>
|
||||
Horse Isle tested and developed using Firefox Browser<BR>
|
||||
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR>
|
||||
<TD><IMG SRC=/web/hoilgui10.gif></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui11.gif></TD>
|
||||
<TD><IMG SRC=/web/hoilgui12.gif></TD>
|
||||
</TR></TABLE>
|
||||
<CENTER><B>
|
||||
[ <A HREF=//master.horseisle.com/beginnerguide/>New Player Guide</A> ]<BR>
|
||||
[ <A HREF=/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2020 Horse Isle</FONT>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR>
|
||||
<TD><IMG SRC=/web/hoilgui10.gif></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui11.gif></TD>
|
||||
<TD><IMG SRC=/web/hoilgui12.gif></TD>
|
||||
</TR></TABLE>
|
||||
<CENTER><B>
|
||||
[ <A HREF=//master.horseisle.com/beginnerguide/>New Player Guide</A> ]<BR>
|
||||
[ <A HREF=/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2020 Horse Isle</FONT>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
||||
|
|
@ -108,26 +108,26 @@ color: #440000;
|
|||
<TD WIDTH=29><IMG SRC=/web/hoilgui7.gif></TD></TR>
|
||||
</TABLE>
|
||||
<CENTER>
|
||||
<B>Must be logged in to use this tool!<BR><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR>
|
||||
<TD><IMG SRC=/web/hoilgui10.gif></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui11.gif></TD>
|
||||
<TD><IMG SRC=/web/hoilgui12.gif></TD>
|
||||
</TR></TABLE>
|
||||
<CENTER><B>
|
||||
[ <A HREF=//master.horseisle.com/beginnerguide/>New Player Guide</A> ]<BR>
|
||||
[ <A HREF=/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2020 Horse Isle</FONT>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
||||
<B>Must be logged in to use this tool!<BR><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR>
|
||||
<TD><IMG SRC=/web/hoilgui10.gif></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui11.gif></TD>
|
||||
<TD><IMG SRC=/web/hoilgui12.gif></TD>
|
||||
</TR></TABLE>
|
||||
<CENTER><B>
|
||||
[ <A HREF=//master.horseisle.com/beginnerguide/>New Player Guide</A> ]<BR>
|
||||
[ <A HREF=/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2020 Horse Isle</FONT>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
|
@ -145,27 +145,27 @@ We prefer that this form be used, otherwise you can email direct at: <A HREF=ma
|
|||
<BR>
|
||||
<CENTER>[ <A HREF=/account.php>Return to Account Information</A> ]
|
||||
</TD></TR></TABLE>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR>
|
||||
<TD><IMG SRC=/web/hoilgui10.gif></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui11.gif></TD>
|
||||
<TD><IMG SRC=/web/hoilgui12.gif></TD>
|
||||
</TR></TABLE>
|
||||
<CENTER><B>
|
||||
[ <A HREF=//master.horseisle.com/beginnerguide/>New Player Guide</A> ]<BR>
|
||||
[ <A HREF=/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2020 Horse Isle</FONT>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR>
|
||||
<TD><IMG SRC=/web/hoilgui10.gif></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui11.gif></TD>
|
||||
<TD><IMG SRC=/web/hoilgui12.gif></TD>
|
||||
</TR></TABLE>
|
||||
<CENTER><B>
|
||||
[ <A HREF=//master.horseisle.com/beginnerguide/>New Player Guide</A> ]<BR>
|
||||
[ <A HREF=/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2020 Horse Isle</FONT>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
||||
|
|
@ -206,27 +206,27 @@ BETA TESTERS: Marked in game with awards
|
|||
</TD></TR></TABLE>
|
||||
|
||||
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR>
|
||||
<TD><IMG SRC=/web/hoilgui10.gif></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui11.gif></TD>
|
||||
<TD><IMG SRC=/web/hoilgui12.gif></TD>
|
||||
</TR></TABLE>
|
||||
<CENTER><B>
|
||||
[ <A HREF=//master.horseisle.com/beginnerguide/>New Player Guide</A> ]<BR>
|
||||
[ <A HREF=/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2020 Horse Isle</FONT>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR>
|
||||
<TD><IMG SRC=/web/hoilgui10.gif></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui11.gif></TD>
|
||||
<TD><IMG SRC=/web/hoilgui12.gif></TD>
|
||||
</TR></TABLE>
|
||||
<CENTER><B>
|
||||
[ <A HREF=//master.horseisle.com/beginnerguide/>New Player Guide</A> ]<BR>
|
||||
[ <A HREF=/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2020 Horse Isle</FONT>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
||||
|
|
@ -230,27 +230,27 @@ is responsible for what happens on their account.<br/>
|
|||
<BR>
|
||||
<CENTER>[ <A HREF=/account.php>Return to Account Information</A> ]
|
||||
</TD></TR></TABLE>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR>
|
||||
<TD><IMG SRC=/web/hoilgui10.gif></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui11.gif></TD>
|
||||
<TD><IMG SRC=/web/hoilgui12.gif></TD>
|
||||
</TR></TABLE>
|
||||
<CENTER><B>
|
||||
[ <A HREF=//master.horseisle.com/beginnerguide/>New Player Guide</A> ]<BR>
|
||||
[ <A HREF=/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2020 Horse Isle</FONT>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR>
|
||||
<TD><IMG SRC=/web/hoilgui10.gif></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui11.gif></TD>
|
||||
<TD><IMG SRC=/web/hoilgui12.gif></TD>
|
||||
</TR></TABLE>
|
||||
<CENTER><B>
|
||||
[ <A HREF=//master.horseisle.com/beginnerguide/>New Player Guide</A> ]<BR>
|
||||
[ <A HREF=/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2020 Horse Isle</FONT>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
||||
|
|
@ -108,40 +108,40 @@ color: #440000;
|
|||
<TD WIDTH=29><IMG SRC=/web/hoilgui7.gif></TD></TR>
|
||||
</TABLE>
|
||||
<CENTER>
|
||||
|
||||
<TABLE BORDER=0 WIDTH=100% CELLPADDING=10><TR><TD>
|
||||
<CENTER>
|
||||
<FORM METHOD=POST>
|
||||
<FONT COLOR=880000 SIZE=+1>Forgot your password?</FONT><BR>
|
||||
Use this to answer your security question, and then your password will be emailed to you.<BR>
|
||||
Enter your Horse Isle Username AND the Email that the account was setup with:<BR><BR>
|
||||
<B>USERNAME:</B> <INPUT TYPE=TEXT NAME=FORGOTUSER size=20><BR>
|
||||
<I>- AND -</I><BR>
|
||||
<B>EMAIL:</B> <INPUT TYPE=TEXT NAME=FORGOTEMAIL size=30><BR><BR>
|
||||
<INPUT TYPE=SUBMIT VALUE="Lookup Security Question">
|
||||
</FORM>
|
||||
</TD></TR></TABLE>
|
||||
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR>
|
||||
<TD><IMG SRC=/web/hoilgui10.gif></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui11.gif></TD>
|
||||
<TD><IMG SRC=/web/hoilgui12.gif></TD>
|
||||
</TR></TABLE>
|
||||
<CENTER><B>
|
||||
[ <A HREF=//master.horseisle.com/beginnerguide/>New Player Guide</A> ]<BR>
|
||||
[ <A HREF=/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2020 Horse Isle</FONT>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
||||
|
||||
<TABLE BORDER=0 WIDTH=100% CELLPADDING=10><TR><TD>
|
||||
<CENTER>
|
||||
<FORM METHOD=POST>
|
||||
<FONT COLOR=880000 SIZE=+1>Forgot your password?</FONT><BR>
|
||||
Use this to answer your security question, and then your password will be emailed to you.<BR>
|
||||
Enter your Horse Isle Username AND the Email that the account was setup with:<BR><BR>
|
||||
<B>USERNAME:</B> <INPUT TYPE=TEXT NAME=FORGOTUSER size=20><BR>
|
||||
<I>- AND -</I><BR>
|
||||
<B>EMAIL:</B> <INPUT TYPE=TEXT NAME=FORGOTEMAIL size=30><BR><BR>
|
||||
<INPUT TYPE=SUBMIT VALUE="Lookup Security Question">
|
||||
</FORM>
|
||||
</TD></TR></TABLE>
|
||||
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR>
|
||||
<TD><IMG SRC=/web/hoilgui10.gif></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui11.gif></TD>
|
||||
<TD><IMG SRC=/web/hoilgui12.gif></TD>
|
||||
</TR></TABLE>
|
||||
<CENTER><B>
|
||||
[ <A HREF=//master.horseisle.com/beginnerguide/>New Player Guide</A> ]<BR>
|
||||
[ <A HREF=/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2020 Horse Isle</FONT>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
|
@ -112,26 +112,26 @@ color: #440000;
|
|||
<CENTER><B>Gift membership payments.</B></CENTER><BR>
|
||||
The following will enable you to buy a subscription or bonus for any existing account on Horse Isle.
|
||||
Please BE SURE you know the EXACT playername and server that they play on, we cannot refund accidental payments on the wrong account. No refunds. ONLY make a payment if over 18.
|
||||
<BR><CENTER>Horse Isle Gift Purchase For:<BR><FORM METHOD=POST>PLAYER NAME:(<B><FONT COLOR=RED>Exact Game Name!</FONT></B>) <INPUT TYPE=INPUT NAME=PLAYERNAME><BR>ON SERVER: (<B><FONT COLOR=RED>Be Sure!</FONT></B>) <SElECT name=SERVER><OPTION>bay<OPTION>black<OPTION>brown<OPTION>chestnut<OPTION>cremello<OPTION>dun<OPTION>grey<OPTION>palomino<OPTION>pinto<OPTION>roan<OPTION>white</SELECT><BR><BR><INPUT TYPE=SUBMIT VALUE='SHOW PURCHASE OPTIONS'></FORM><FONT SIZE=-1>NOTE: The player given the gift is in no way notified that they have been given the gift. It is left up to you to notify them. They also have no way to access your payment info whatsoever.</FONT></TD></TR></TABLE><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR>
|
||||
<TD><IMG SRC=/web/hoilgui10.gif></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui11.gif></TD>
|
||||
<TD><IMG SRC=/web/hoilgui12.gif></TD>
|
||||
</TR></TABLE>
|
||||
<CENTER><B>
|
||||
[ <A HREF=//master.horseisle.com/beginnerguide/>New Player Guide</A> ]<BR>
|
||||
[ <A HREF=/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2020 Horse Isle</FONT>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
||||
<BR><CENTER>Horse Isle Gift Purchase For:<BR><FORM METHOD=POST>PLAYER NAME:(<B><FONT COLOR=RED>Exact Game Name!</FONT></B>) <INPUT TYPE=INPUT NAME=PLAYERNAME><BR>ON SERVER: (<B><FONT COLOR=RED>Be Sure!</FONT></B>) <SElECT name=SERVER><OPTION>bay<OPTION>black<OPTION>brown<OPTION>chestnut<OPTION>cremello<OPTION>dun<OPTION>grey<OPTION>palomino<OPTION>pinto<OPTION>roan<OPTION>white</SELECT><BR><BR><INPUT TYPE=SUBMIT VALUE='SHOW PURCHASE OPTIONS'></FORM><FONT SIZE=-1>NOTE: The player given the gift is in no way notified that they have been given the gift. It is left up to you to notify them. They also have no way to access your payment info whatsoever.</FONT></TD></TR></TABLE><TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR>
|
||||
<TD><IMG SRC=/web/hoilgui10.gif></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui11.gif></TD>
|
||||
<TD><IMG SRC=/web/hoilgui12.gif></TD>
|
||||
</TR></TABLE>
|
||||
<CENTER><B>
|
||||
[ <A HREF=//master.horseisle.com/beginnerguide/>New Player Guide</A> ]<BR>
|
||||
[ <A HREF=/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2020 Horse Isle</FONT>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 583 B After Width: | Height: | Size: 583 B |
Before Width: | Height: | Size: 343 B After Width: | Height: | Size: 343 B |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 925 B After Width: | Height: | Size: 925 B |
Before Width: | Height: | Size: 560 B After Width: | Height: | Size: 560 B |
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
|
@ -169,29 +169,29 @@ if(!isset($_POST['user'],$_POST['pass1'],$_POST['pass2'],$_POST['sex'],$_POST['e
|
|||
DesertWhisper<BR>GrapeHorsey<BR>CourageousEquine<BR>SunsetDream<BR>QueenDream<BR>RubyEagerCrow<BR>CoolDearBug<BR>CosmicWorker<BR>CoolTinkerer<BR>OverTheArt<BR>NonsenseTree<BR>CrystalPioneer<BR>BashfulMule<BR>MillionWater<BR>MissBee<BR>TalentAlly<BR>FinalFillyExmoor<BR>HandyRaspberry<BR>MeekIdiotNut<BR>FinalFiend<BR>TanVillagePrince<BR>NormalAdventure<BR>DynastyRider<BR>AbsoluteCreation<BR>FlyingPoet<BR>RightArabian<BR>StarryFriend<BR>VictoriousLight<BR>ClownStory<BR>SappyPinkBreeze<BR></FONT></TD><TD><FONT SIZE=-1><CENTER>ZeroWater<BR>PleasantGuard<BR>ZappySorcerous<BR>IllusionSnow<BR>LackingWizard<BR>DearMonkey<BR>FillyRose<BR>RightEquine<BR>LightEquine<BR>SimpleSilence<BR>EmeraldWonder<BR>FastGemstone<BR>YogurtFlower<BR>FabulousHorsey<BR>SappyMadamTalker<BR>WhitePal<BR>DarkSteed<BR>PiggyMonkey<BR>UberBlackHeart<BR>MeekFantasy<BR>SillyAmatuer<BR>HighlightDaisey<BR>DynastyWitch<BR>RicketyGem<BR>BlackLake<BR>JumpyCuteOrange<BR>LoveHorsey<BR>MythicalShimmer<BR>RightTeacher<BR>DrearyCat<BR></FONT></TD></TR></TABLE>
|
||||
</TD></TR></TABLE>
|
||||
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR>
|
||||
<TD><IMG SRC=/web/hoilgui10.gif></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui11.gif></TD>
|
||||
<TD><IMG SRC=/web/hoilgui12.gif></TD>
|
||||
</TR></TABLE>
|
||||
<CENTER><B>
|
||||
[ <A HREF=//master.horseisle.com/beginnerguide/>New Player Guide</A> ]<BR>
|
||||
[ <A HREF=/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2020 Horse Isle</FONT>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR>
|
||||
<TD><IMG SRC=/web/hoilgui10.gif></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui11.gif></TD>
|
||||
<TD><IMG SRC=/web/hoilgui12.gif></TD>
|
||||
</TR></TABLE>
|
||||
<CENTER><B>
|
||||
[ <A HREF=//master.horseisle.com/beginnerguide/>New Player Guide</A> ]<BR>
|
||||
[ <A HREF=/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2020 Horse Isle</FONT>
|
||||
|
||||
<!-- Google Analytics -->
|
||||
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
_uacct = "UA-1805076-1";
|
||||
urchinTracker();
|
||||
</script>
|
||||
');
|
||||
}
|
||||
else
|