mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-07 13:45:42 +12:00
DERP! Fix color changing bug and cap mood/basic stats
This commit is contained in:
parent
168d534381
commit
c2c2db6b84
16 changed files with 404 additions and 3545 deletions
|
@ -57,10 +57,10 @@ namespace HISP.Game.Horse
|
|||
magicUsed = loadMagicUsed;
|
||||
leaseTime = leaseTimer;
|
||||
hidden = loadHidden;
|
||||
if(color != null)
|
||||
if(loadColor != null)
|
||||
color = loadColor;
|
||||
else
|
||||
color = breed.Colors[GameServer.RandomNumberGenerator.Next(0, breed.Colors.Length)];
|
||||
color = breed.Colors[GameServer.RandomNumberGenerator.Next(0, breed.Colors.Length)];
|
||||
Leaser = 0;
|
||||
}
|
||||
public int Leaser;
|
||||
|
|
|
@ -875,12 +875,24 @@ namespace HISP.Server
|
|||
|
||||
string msgs = "";
|
||||
if (horsePetInst.BasicStats.Mood + randMoodAddition >= 1000)
|
||||
{
|
||||
msgs += Messages.HorsePetTooHappy;
|
||||
if (horsePetInst.BasicStats.Tiredness - randTiredMinus <= 0)
|
||||
msgs += Messages.HorsePetTooTired;
|
||||
}
|
||||
else
|
||||
{
|
||||
horsePetInst.BasicStats.Mood += randMoodAddition;
|
||||
}
|
||||
|
||||
horsePetInst.BasicStats.Tiredness -= randTiredMinus;
|
||||
horsePetInst.BasicStats.Mood += randMoodAddition;
|
||||
if (horsePetInst.BasicStats.Tiredness - randTiredMinus <= 0)
|
||||
{
|
||||
msgs += Messages.HorsePetTooTired;
|
||||
}
|
||||
else
|
||||
{
|
||||
horsePetInst.BasicStats.Tiredness -= randTiredMinus;
|
||||
}
|
||||
|
||||
|
||||
|
||||
byte[] petMessagePacket = PacketBuilder.CreateChat(Messages.FormatHorsePetMessage(msgs,randMoodAddition, randTiredMinus), PacketBuilder.CHAT_BOTTOM_RIGHT);
|
||||
sender.SendPacket(petMessagePacket);
|
||||
|
@ -1456,45 +1468,58 @@ namespace HISP.Server
|
|||
case "HEALTH":
|
||||
if (horseInstance.BasicStats.Health + effect.EffectAmount > 1000)
|
||||
tooMuch = true;
|
||||
horseInstance.BasicStats.Health += effect.EffectAmount;
|
||||
else
|
||||
horseInstance.BasicStats.Health += effect.EffectAmount;
|
||||
break;
|
||||
case "HUNGER":
|
||||
if (horseInstance.BasicStats.Hunger + effect.EffectAmount > 1000)
|
||||
tooMuch = true;
|
||||
horseInstance.BasicStats.Hunger += effect.EffectAmount;
|
||||
else
|
||||
horseInstance.BasicStats.Hunger += effect.EffectAmount;
|
||||
break;
|
||||
case "MOOD":
|
||||
if (horseInstance.BasicStats.Mood + effect.EffectAmount > 1000)
|
||||
tooMuch = true;
|
||||
horseInstance.BasicStats.Mood += effect.EffectAmount;
|
||||
else
|
||||
horseInstance.BasicStats.Mood += effect.EffectAmount;
|
||||
break;
|
||||
case "GROOM":
|
||||
if (horseInstance.BasicStats.Groom + effect.EffectAmount > 1000)
|
||||
tooMuch = true;
|
||||
horseInstance.BasicStats.Groom += effect.EffectAmount;
|
||||
else
|
||||
horseInstance.BasicStats.Groom += effect.EffectAmount;
|
||||
break;
|
||||
case "SHOES":
|
||||
if (horseInstance.BasicStats.Shoes + effect.EffectAmount > 1000)
|
||||
tooMuch = true;
|
||||
horseInstance.BasicStats.Shoes += effect.EffectAmount;
|
||||
else
|
||||
horseInstance.BasicStats.Shoes += effect.EffectAmount;
|
||||
break;
|
||||
case "THIRST":
|
||||
if (horseInstance.BasicStats.Thirst + effect.EffectAmount > 1000)
|
||||
tooMuch = true;
|
||||
horseInstance.BasicStats.Thirst += effect.EffectAmount;
|
||||
else
|
||||
horseInstance.BasicStats.Thirst += effect.EffectAmount;
|
||||
break;
|
||||
case "TIREDNESS":
|
||||
if (horseInstance.BasicStats.Tiredness + effect.EffectAmount > 1000)
|
||||
tooMuch = true;
|
||||
horseInstance.BasicStats.Tiredness += effect.EffectAmount;
|
||||
else
|
||||
horseInstance.BasicStats.Tiredness += effect.EffectAmount;
|
||||
break;
|
||||
case "INTELLIGENCEOFFSET":
|
||||
horseInstance.AdvancedStats.Inteligence += effect.EffectAmount;
|
||||
changeInteligence = true;
|
||||
if (horseInstance.AdvancedStats.Inteligence + effect.EffectAmount < horseInstance.Breed.BaseStats.Inteligence * 2)
|
||||
{
|
||||
horseInstance.AdvancedStats.Inteligence += effect.EffectAmount;
|
||||
changeInteligence = true;
|
||||
}
|
||||
break;
|
||||
case "PERSONALITYOFFSET":
|
||||
horseInstance.AdvancedStats.Personality += effect.EffectAmount;
|
||||
changePersonality = true;
|
||||
if (horseInstance.AdvancedStats.Personality + effect.EffectAmount < horseInstance.Breed.BaseStats.Personality * 2)
|
||||
{
|
||||
horseInstance.AdvancedStats.Personality += effect.EffectAmount;
|
||||
changePersonality = true;
|
||||
}
|
||||
break;
|
||||
case "SPOILED":
|
||||
horseInstance.Spoiled += effect.EffectAmount;
|
||||
|
|
166
WebInterface/game-site/web/checks.php
Normal file
166
WebInterface/game-site/web/checks.php
Normal file
|
@ -0,0 +1,166 @@
|
|||
<HEAD>
|
||||
<TITLE>HORSE ISLE - Online Multiplayer Horse Game</TITLE>
|
||||
<META NAME="keywords" CONTENT="Horse Game Online MMORPG Multiplayer Horses RPG Girls Girly Isle World Island Virtual Horseisle Sim Virtual">
|
||||
<META NAME="description" CONTENT="A multiplayer online horse world where players can capture, train, care for and compete their horses against other players. A very unique virtual sim horse game.">
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="meta" href="//horseisle.com/labels.rdf" type="application/rdf+xml" title="ICRA labels" />
|
||||
<meta http-equiv="pics-Label" content='(pics-1.1 "//www.icra.org/pics/vocabularyv03/" l gen true for "//horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1) gen true for "//hi1.horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1))' />
|
||||
<style type="text/css">
|
||||
hr {
|
||||
height: 1;
|
||||
color: #000000;
|
||||
background-color: #000000;
|
||||
border: 0;
|
||||
}
|
||||
a {
|
||||
font: bold 14px arial;
|
||||
color: #6E3278;
|
||||
}
|
||||
TH {
|
||||
background-color: #EDE5B4;
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
font: small-caps 900 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TR.a0 {
|
||||
background-color: #EDE5B4;
|
||||
}
|
||||
TR.a1 {
|
||||
background-color: #D4CCA1;
|
||||
}
|
||||
TD {
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forum {
|
||||
font: 12px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumlist {
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: center;
|
||||
font: bold 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumpost {
|
||||
padding: 5px 10px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: left;
|
||||
}
|
||||
TD.newslist {
|
||||
padding: 4px 4px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #FFDDEE;
|
||||
text-align: left;
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
FORUMSUBJECT {
|
||||
font: bold 14px arial;
|
||||
color: #004400;
|
||||
}
|
||||
FORUMUSER {
|
||||
font: 12px arial;
|
||||
color: #000044;
|
||||
}
|
||||
FORUMDATE {
|
||||
font: 12px arial;
|
||||
color: #444444;
|
||||
}
|
||||
FORUMTEXT {
|
||||
font: 14px arial;
|
||||
color: #440000;
|
||||
}
|
||||
|
||||
</style>
|
||||
</HEAD>
|
||||
<BODY BGCOLOR=E0D8AA>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR WIDTH=100%>
|
||||
<TD WIDTH=512 ROWSPAN=3><A HREF=/><IMG SRC=/web/hoilgui1.gif ALT="Welcome to Horse Isle" BORDER=0></A></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui2.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui3.gif></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui4.gif align=right>
|
||||
<B>
|
||||
|
||||
|
||||
|
||||
<TABLE CELLPADDING=0 CELLSPACING=2 BORDER=0><FORM METHOD=POST ACTION=/account.php>
|
||||
<TR><TD><B>USER:</B></TD><TD><INPUT TYPE=TEXT SIZE=14 NAME=USER></TD></TR>
|
||||
<TR><TD><B>PASS:</B></TD><TD><INPUT TYPE=PASSWORD SIZE=14 NAME=PASS></TD></TR>
|
||||
<TR><TD></TD><TD><INPUT TYPE=SUBMIT VALUE=LOGIN> (<A HREF=//master.horseisle.com/web/forgotpass.php>Forgot?</A>)</TD></TR></FORM></TABLE>
|
||||
|
||||
</TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui5.gif></TD></TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui6.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui7.gif></TD></TR>
|
||||
</TABLE>
|
||||
<CENTER>
|
||||
<TABLE WIDTH=100% CELLPADDING=10><TR><TD>
|
||||
<FONT COLOR=880000 SIZE=+1><B>Alternative Payment Methods</B></FONT><BR>
|
||||
If you cannot use PayPal(recommended) you may send a payment via snail mail to our U.S. Post Office Box.<BR>
|
||||
Currency MUST be in U.S. Dollars. [ USA Check / Money Order / USD Cash Accepted ]<BR>
|
||||
(One exception, Canadian personal checks made out for slightly more than the current exchange rate in canadian funds can be accepted. No other countries personal checks can be accepted.)<BR>
|
||||
Checks <B>must be written out to 'Horse Isle'</B>.<BR>
|
||||
If your check "bounces" we will block the account until our fees have been reimbursed by you.<BR>
|
||||
Cash is not recommended, but if you need to send it, be sure to wrap it in another piece of paper so that it cannot be seen through the envelope!<BR>
|
||||
<B>(Do not send Cash without Parental Permission!)</B><BR>
|
||||
<BR>
|
||||
<B>Horse Isle Postal Mailing Address:</B><BR>
|
||||
<UL><FONT COLOR=440044 SIZE=+0>
|
||||
Horse Isle<BR>
|
||||
PO Box 3619<BR>
|
||||
Duluth, MN 55803-2633<BR>
|
||||
USA<BR>
|
||||
</UL></FONT>
|
||||
<B>Identify Your Payment:</B><BR>
|
||||
Be sure to include a CLEAR note of what account this is for. Include your email address in case there are problems identifying the account.<BR>
|
||||
<UL><FONT COLOR=440044 SIZE=+0>
|
||||
Your USERNAME = <B></B><BR>
|
||||
Your ACCOUNT ID = <B></B><BR>
|
||||
Your SERVER = <B>pinto</B> (make sure this is the one you play on)<BR>
|
||||
|
||||
</UL></FONT>
|
||||
<B>Finally, let us know what it is for:</B><BR>
|
||||
<UL><FONT COLOR=440044 SIZE=+0>
|
||||
One Month Horse Isle Membership - $5 (or 2 for $10, etc.)<BR>
|
||||
One Year Horse Isle Membership - $40 (or 2 for $80, etc.)<BR>
|
||||
Horse Isle Game Money - $10,000 per $1 ($15 = $150,000 Horse Isle Money)<BR>
|
||||
Pawneer Order - $8 (or 2 for $16, etc.)<BR>
|
||||
Pawneer Order Pack(5) - $30 (or 2 for $60, etc.)<BR>
|
||||
</UL></FONT>
|
||||
Payments will be credited when received. Mail is handled at least twice per week, so between mail transit and pickup times, expect up to a week for the account to be credited. Payments lost in the mail are not our responsibility. Checks which cannot be identified to an account will not be cashed.<BR>
|
||||
Remember PayPal Payments are instant and more secure! <BR>
|
||||
Thanks!<BR>
|
||||
<CENTER>[ <A HREF=/account.php>Return to Account Page</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=http://hi1.horseisle.com/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=http://hi1.horseisle.com/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2021 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>
|
196
WebInterface/game-site/web/reasonstosubscribe.php
Normal file
196
WebInterface/game-site/web/reasonstosubscribe.php
Normal file
|
@ -0,0 +1,196 @@
|
|||
<HEAD>
|
||||
<TITLE>HORSE ISLE - Online Multiplayer Horse Game</TITLE>
|
||||
<META NAME="keywords" CONTENT="Horse Game Online MMORPG Multiplayer Horses RPG Girls Girly Isle World Island Virtual Horseisle Sim Virtual">
|
||||
<META NAME="description" CONTENT="A multiplayer online horse world where players can capture, train, care for and compete their horses against other players. A very unique virtual sim horse game.">
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="meta" href="//horseisle.com/labels.rdf" type="application/rdf+xml" title="ICRA labels" />
|
||||
<meta http-equiv="pics-Label" content='(pics-1.1 "//www.icra.org/pics/vocabularyv03/" l gen true for "//horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1) gen true for "//hi1.horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1))' />
|
||||
<style type="text/css">
|
||||
hr {
|
||||
height: 1;
|
||||
color: #000000;
|
||||
background-color: #000000;
|
||||
border: 0;
|
||||
}
|
||||
a {
|
||||
font: bold 14px arial;
|
||||
color: #6E3278;
|
||||
}
|
||||
TH {
|
||||
background-color: #EDE5B4;
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
font: small-caps 900 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TR.a0 {
|
||||
background-color: #EDE5B4;
|
||||
}
|
||||
TR.a1 {
|
||||
background-color: #D4CCA1;
|
||||
}
|
||||
TD {
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forum {
|
||||
font: 12px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumlist {
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: center;
|
||||
font: bold 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumpost {
|
||||
padding: 5px 10px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: left;
|
||||
}
|
||||
TD.newslist {
|
||||
padding: 4px 4px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #FFDDEE;
|
||||
text-align: left;
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
FORUMSUBJECT {
|
||||
font: bold 14px arial;
|
||||
color: #004400;
|
||||
}
|
||||
FORUMUSER {
|
||||
font: 12px arial;
|
||||
color: #000044;
|
||||
}
|
||||
FORUMDATE {
|
||||
font: 12px arial;
|
||||
color: #444444;
|
||||
}
|
||||
FORUMTEXT {
|
||||
font: 14px arial;
|
||||
color: #440000;
|
||||
}
|
||||
|
||||
</style>
|
||||
</HEAD>
|
||||
<BODY BGCOLOR=E0D8AA>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR WIDTH=100%>
|
||||
<TD WIDTH=512 ROWSPAN=3><A HREF=/><IMG SRC=/web/hoilgui1.gif ALT="Welcome to Horse Isle" BORDER=0></A></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui2.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui3.gif></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui4.gif align=right>
|
||||
<B>
|
||||
|
||||
|
||||
|
||||
<TABLE CELLPADDING=0 CELLSPACING=2 BORDER=0><FORM METHOD=POST ACTION=/account.php>
|
||||
<TR><TD><B>USER:</B></TD><TD><INPUT TYPE=TEXT SIZE=14 NAME=USER></TD></TR>
|
||||
<TR><TD><B>PASS:</B></TD><TD><INPUT TYPE=PASSWORD SIZE=14 NAME=PASS></TD></TR>
|
||||
<TR><TD></TD><TD><INPUT TYPE=SUBMIT VALUE=LOGIN> (<A HREF=//master.horseisle.com/web/forgotpass.php>Forgot?</A>)</TD></TR></FORM></TABLE>
|
||||
|
||||
</TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui5.gif></TD></TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui6.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui7.gif></TD></TR>
|
||||
</TABLE>
|
||||
<CENTER>
|
||||
<BR>
|
||||
<CENTER><TABLE CELLPADDING=5><TR><TD>
|
||||
|
||||
<div style="TEXT-ALIGN:center">
|
||||
<font size="4"><span style="COLOR:#990000; FONT-WEIGHT:bold"> Subscription Benefits</span></font><br/>
|
||||
</div>
|
||||
<br/>
|
||||
|
||||
<font size="2" style="FONT-WEIGHT:bold"><span style="FONT-WEIGHT:bold; COLOR:#990000"> #1:</span>
|
||||
Support:</font><br/>
|
||||
Support continued Horse Isle development employing many talented artists.<br/>
|
||||
<br/>
|
||||
<span style="FONT-WEIGHT:bold; COLOR:#990000">
|
||||
#2:</span><span style="FONT-WEIGHT:bold"> Access:</span><br/>
|
||||
Unlimited play time. Also, priority access to the server if it is nearing
|
||||
capacity.<br/>
|
||||
<br/>
|
||||
<span style="FONT-WEIGHT:bold; COLOR:#990000">
|
||||
#3:</span><span style="FONT-WEIGHT:bold"> Ranch ownership:</span><br/>
|
||||
Once you can afford a ranch, it grants many optional benefits:<br/>
|
||||
<ul>
|
||||
<li>
|
||||
Carry more items with sheds (up to 80 total)
|
||||
</li>
|
||||
<li>
|
||||
Own more horses several for each barn on your ranch
|
||||
</li>
|
||||
<li>
|
||||
Being able to sell horses while offline
|
||||
</li>
|
||||
<li>
|
||||
Easier feeding/watering/training of horses with silo,well,training
|
||||
pen
|
||||
</li>
|
||||
<li>
|
||||
Free wagon transport with a wagon
|
||||
</li>
|
||||
<li>
|
||||
Earn money while on/offline with windmills
|
||||
</li>
|
||||
</ul>
|
||||
<br style="FONT-WEIGHT:bold; COLOR:#990000"/>
|
||||
<span style="FONT-WEIGHT:bold; COLOR:#990000">
|
||||
#4:</span><span style="FONT-WEIGHT:bold"> Game Identification:</span><br/>
|
||||
A Horse Isle Subscriber is identified in-game with a Star next to the player's name
|
||||
in the player lists. A fancier star identifies longer term subscribers.<br/>
|
||||
<br/>
|
||||
<span style="FONT-WEIGHT:bold; COLOR:#990000">
|
||||
#5:</span><span style="FONT-WEIGHT:bold"> Train Horses Twice as often:</span><br/>
|
||||
A Horse Isle Subscriber can train horses again in 1/2 the time.<br/>
|
||||
<br/>
|
||||
<span style="FONT-WEIGHT:bold; COLOR:#990000">#6:</span><span style="FONT-WEIGHT:bold">
|
||||
Parental Controls:</span><br/>
|
||||
The ability to set the number of hours a child can play per day, or even
|
||||
disabling the ability to send and receive chat.<br/>
|
||||
<br/>
|
||||
<span style="FONT-WEIGHT:bold; COLOR:#990000">#7:</span><span style="FONT-WEIGHT:bold">
|
||||
Double Global Chats:</span><br/>
|
||||
Subscribers earn one global chat per minute rather than every other minute.<br/>
|
||||
<BR>
|
||||
<span style="FONT-WEIGHT:bold; COLOR:#990000">#8:</span><span style="FONT-WEIGHT:bold">
|
||||
Art Room Access:</span><br/>
|
||||
Subscribers are allowed to draw in the group art rooms.<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=http://hi1.horseisle.com/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=http://hi1.horseisle.com/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/credits.php>Credits</A> ]<BR>
|
||||
<FONT FACE=Verdana,Arial SIZE=-2>Copyright © 2021 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,300 +0,0 @@
|
|||
<HEAD>
|
||||
<TITLE>HORSE ISLE - Online Multiplayer Horse Game</TITLE>
|
||||
<META NAME="keywords" CONTENT="Horse Game Online MMORPG Multiplayer Horses RPG Girls Girly Isle World Island Virtual Horseisle Sim Virtual">
|
||||
<META NAME="description" CONTENT="A multiplayer online horse world where players can capture, train, care for and compete their horses against other players. A very unique virtual sim horse game.">
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="meta" href="//horseisle.com/labels.rdf" type="application/rdf+xml" title="ICRA labels" />
|
||||
<meta http-equiv="pics-Label" content='(pics-1.1 "//www.icra.org/pics/vocabularyv03/" l gen true for "//horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1) gen true for "//hi1.horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1))' />
|
||||
<style type="text/css">
|
||||
hr {
|
||||
height: 1;
|
||||
color: #000000;
|
||||
background-color: #000000;
|
||||
border: 0;
|
||||
}
|
||||
a {
|
||||
font: bold 14px arial;
|
||||
color: #6E3278;
|
||||
}
|
||||
TH {
|
||||
background-color: #EDE5B4;
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
font: small-caps 900 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TR.a0 {
|
||||
background-color: #EDE5B4;
|
||||
}
|
||||
TR.a1 {
|
||||
background-color: #D4CCA1;
|
||||
}
|
||||
TD {
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forum {
|
||||
font: 12px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumlist {
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: center;
|
||||
font: bold 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumpost {
|
||||
padding: 5px 10px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: left;
|
||||
}
|
||||
TD.newslist {
|
||||
padding: 4px 4px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #FFDDEE;
|
||||
text-align: left;
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
FORUMSUBJECT {
|
||||
font: bold 14px arial;
|
||||
color: #004400;
|
||||
}
|
||||
FORUMUSER {
|
||||
font: 12px arial;
|
||||
color: #000044;
|
||||
}
|
||||
FORUMDATE {
|
||||
font: 12px arial;
|
||||
color: #444444;
|
||||
}
|
||||
FORUMTEXT {
|
||||
font: 14px arial;
|
||||
color: #440000;
|
||||
}
|
||||
|
||||
</style>
|
||||
</HEAD>
|
||||
<BODY BGCOLOR=E0D8AA>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR WIDTH=100%>
|
||||
<TD WIDTH=512 ROWSPAN=3><A HREF=/><IMG SRC=/web/hoilgui1.gif ALT="Welcome to Horse Isle" BORDER=0></A></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui2.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui3.gif></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui4.gif align=right>
|
||||
<B>
|
||||
|
||||
|
||||
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B><A HREF=/account.php>PINTO.HORSEISLE.COM</A><BR>Logged in as: PopularGem<BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=//hi1.horseisle.com/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=//hi1.horseisle.com/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/helpcenter.php><img src=/web/but-helpcenter.gif border=0></A></TD></TR></TABLE>
|
||||
|
||||
</TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui5.gif></TD></TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui6.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui7.gif></TD></TR>
|
||||
</TABLE>
|
||||
<CENTER>
|
||||
|
||||
|
||||
|
||||
<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() {
|
||||
ajax('web/playersonline.php?id=589828','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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', '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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', 'popup', 846, 542); return false;">bigger borders version</A>)<BR>(<A HREF=horseisle.php?USER=PopularGem>same window version</A>)</TD><TD VALIGN=top>Welcome back <B>PopularGem</B>, Here is your account info and Horse Isle server status: (<A HREF=?>refresh</A>)<BR><BR>It has been: 0.2 hours since you were last online. You have logged in 8 times.<BR>You have <B><FONT COLOR=005500>$0</FONT></B> in Horse Isle money on hand and <B><FONT COLOR=005500>$2,824</FONT></B> in the bank.<BR>You have earned <B>0</B> of <B>63005</B> total quest points (<B>0%</B> Complete)<BR>You have <B>259</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>POPULARGEM'S PINTO SUBSCRIPTION STATUS:<BR></FONT><FONT SIZE=+2>NOT SUBSCRIBED</FONT><BR>(You have not yet subscribed)</FONT> (<A HREF=web/reasonstosubscribe.php>Subscription Benefits</A>)<BR><FONT SIZE=+1><FONT COLOR=RED>NOTE:</FONT> HI1 Is End-Of-Life. Server may permanently shut down at any time. We do NOT recommend buying anything. We left the option to purchase in case you need to for final enjoyment of game. No refunds.</FONT>
|
||||
</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="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="One Month Horse Isle Membership-on pinto.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="5.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>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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="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="Pawneer Order-on pinto.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="8.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><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="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="Five Pawneer Order-on pinto.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="30.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 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=//hi1.horseisle.com/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><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=http://hi1.horseisle.com/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=http://hi1.horseisle.com/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/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,228 +0,0 @@
|
|||
<HEAD>
|
||||
<TITLE>HORSE ISLE - Online Multiplayer Horse Game</TITLE>
|
||||
<META NAME="keywords" CONTENT="Horse Game Online MMORPG Multiplayer Horses RPG Girls Girly Isle World Island Virtual Horseisle Sim Virtual">
|
||||
<META NAME="description" CONTENT="A multiplayer online horse world where players can capture, train, care for and compete their horses against other players. A very unique virtual sim horse game.">
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="meta" href="http://horseisle.com/labels.rdf" type="application/rdf+xml" title="ICRA labels" />
|
||||
<meta http-equiv="pics-Label" content='(pics-1.1 "http://www.icra.org/pics/vocabularyv03/" l gen true for "http://horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1) gen true for "http://hi1.horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1))' />
|
||||
<style type="text/css">
|
||||
hr {
|
||||
height: 1;
|
||||
color: #000000;
|
||||
background-color: #000000;
|
||||
border: 0;
|
||||
}
|
||||
a {
|
||||
font: bold 14px arial;
|
||||
color: #6E3278;
|
||||
}
|
||||
TH {
|
||||
background-color: #EDE5B4;
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
font: small-caps 900 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TR.a0 {
|
||||
background-color: #EDE5B4;
|
||||
}
|
||||
TR.a1 {
|
||||
background-color: #D4CCA1;
|
||||
}
|
||||
TD {
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forum {
|
||||
font: 12px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumlist {
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: center;
|
||||
font: bold 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumpost {
|
||||
padding: 5px 10px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: left;
|
||||
}
|
||||
TD.adminforumpost {
|
||||
padding: 5px 20px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #BFE9C9;
|
||||
text-align: left;
|
||||
}
|
||||
TD.newslist {
|
||||
padding: 4px 4px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #FFDDEE;
|
||||
text-align: left;
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
FORUMSUBJECT {
|
||||
font: bold 14px arial;
|
||||
color: #004400;
|
||||
}
|
||||
FORUMUSER {
|
||||
font: 12px arial;
|
||||
color: #000044;
|
||||
}
|
||||
FORUMDATE {
|
||||
font: 12px arial;
|
||||
color: #444444;
|
||||
}
|
||||
FORUMTEXT {
|
||||
font: 14px arial;
|
||||
color: #440000;
|
||||
}
|
||||
|
||||
</style>
|
||||
</HEAD>
|
||||
<BODY BGCOLOR=E0D8AA>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR WIDTH=100%>
|
||||
<TD WIDTH=512 ROWSPAN=3><A HREF=/><IMG SRC=/web/hoilgui1.gif ALT="Welcome to Horse Isle" BORDER=0></A></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui2.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui3.gif></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui4.gif align=right>
|
||||
<B>
|
||||
|
||||
<TABLE CELLPADDING=0 CELLSPACING=2 BORDER=0><FORM METHOD=POST ACTION=/account.php>
|
||||
<TR><TD><B>USER:</B></TD><TD><INPUT TYPE=TEXT SIZE=14 NAME=USER></TD></TR>
|
||||
<TR><TD><B>PASS:</B></TD><TD><INPUT TYPE=PASSWORD SIZE=14 NAME=PASS></TD></TR>
|
||||
<TR><TD></TD><TD><INPUT TYPE=SUBMIT VALUE=LOGIN> (<A HREF=/web/forgotpass.php>Forgot?</A>)</TD></TR></FORM></TABLE>
|
||||
|
||||
</TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui5.gif></TD></TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui6.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui7.gif></TD></TR>
|
||||
</TABLE>
|
||||
<CENTER>
|
||||
|
||||
|
||||
<CENTER><TABLE WIDTH=90% BORDER=0><TR><TD>
|
||||
<FONT FACE=Verdana,arial SIZE=-1>
|
||||
<TABLE><TR><TD WIDTH=100%>
|
||||
<FONT FACE=Verdana,arial SIZE=-1>
|
||||
<TABLE BORDER=0 CELLPADDING=3>
|
||||
<TR><TD><CENTER><A HREF=/web/rules.php?ACCEPT=1><IMG src=/web/screenshots/createaccount.png BORDER=0><BR>Create a FREE Account</A></TD>
|
||||
|
||||
<TD><CENTER><B><FONT COLOR=880000>OR Log into your existing Horse Isle account at upper right</FONT></TD>
|
||||
|
||||
<TD><CENTER>OR Give a <A HREF=web/giftmembership.php>Gift Membership or Bonus</A> to an existing player</CENTER></TD>
|
||||
</TR></TABLE>
|
||||
<BR>
|
||||
<B>Fan Art Competition Winners: <A HREF="http://horsesareawesome.com/">View Fan Art</A></B> Contests from 2009 and 2011.<BR>
|
||||
<BR>
|
||||
<B>Parents!</B> Please click for some important information: <A HREF=/web/parents.php>Parent's Guide</A><BR>
|
||||
<BR>
|
||||
|
||||
<B>CURRENTLY:</B><BR><FONT COLOR=550000><B>0</B></FONT> Players Online Now<BR><FONT COLOR=550000><B>0</B></FONT> Subscribers Online Now<BR><FONT COLOR=550000><B>0</B></FONT> Moderators Online Now<BR><FONT COLOR=550000><B>3,197</B></FONT> Active Accounts<BR><BR><B>ABOUT:</B><BR>
|
||||
Horse Isle is a vast multi-player horse based world. It allows for many players to interact while searching for wild
|
||||
horses roaming the lands. Once you have a horse, you can train it, take care of it, and compete with other players. Although the world graphics are simple 2D, they have been beautifully designed to create an interesting and vast world to explore. This land is completely non-violent. A great place for any aged player to have fun.
|
||||
<BR>
|
||||
|
||||
</TD><TD WIDTH=416 VALIGN=top>
|
||||
<CENTER><embed src=web/frontpage.swf width=416 height=288><BR>
|
||||
<FONT FACE=Verdana,arial SIZE=-1 COLOR=880000>
|
||||
(If you can see the scene above, it should tell you if you have the necessary software required to play the game)<BR>
|
||||
(If not, you would need to download/upgrade for free <A HREF=http://www.adobe.com/products/flashplayer/>Flash Player</A>)
|
||||
</FONT>
|
||||
|
||||
</TD></TR></TABLE>
|
||||
<BR><B>COSTS:</B><BR>
|
||||
You can play Horse Isle for FREE! or $5/mo USD game memberships provide many <A HREF="web/reasonstosubscribe.php">benefits</A>.<BR>
|
||||
|
||||
<BR><B>FEATURES:</B><BR>
|
||||
Several different entertaining game activities:<BR>
|
||||
<UL>
|
||||
<LI>Capturing, training, and competing with your horses. These involve racing, jumping, dressage - all many-player games. Winning these events takes a combination of your horse's abilities, and your skill at the particular game.</LI>
|
||||
<LI>Completing mini-games throughout the world for fun and game money. Many are multiplayer also.</LI>
|
||||
<LI>Solving story-based quests and adventures by talking with characters in the game. There is a large variation of quests, from buried treasure, labyrinths, and painting, to simply returning someone's books!</LI>
|
||||
<LI>Buying and building up your very own ranch, making a piece of Horse Isle your very own!</LI>
|
||||
<LI>Naming and taking care of your horses. Finding them better tack, or even finding your horse a nice pet!</LI>
|
||||
<LI>Interacting with other players via chat, private chat, postal messages, actions, trading, competitive mini-games, and cooperative mini-games. Group activities include drawing rooms, music rooms, and poetry rooms!</LI>
|
||||
<LI>Searching the world for buried treasures, rare items, and hidden adventures.</LI>
|
||||
<LI>Trying to get the highest score or best times of many different tracked games.</LI>
|
||||
</UL>
|
||||
Ever-expanding content within the world includes:<BR>
|
||||
<UL>
|
||||
<LI>20+ unique communities located on different islands and climates. With unique weather systems.</LI>
|
||||
<LI>Over 100 unique horse breeds, very detailed with professional renderings of each breed in each color. More added regularly.</LI>
|
||||
<LI>500+ computer characters (residents) which you can interact with to complete adventures and learn things.</LI>
|
||||
<LI>500+ Adventure Quests. Completing these can earn you awards and bonuses.</LI>
|
||||
<LI>Hundreds of unique objects that can be found in the world or handled during quests.</LI>
|
||||
<LI>60+ unique minigames, many horse-based. </LI>
|
||||
<LI>Many completely original soundtracks and game musics, professionally produced.</LI>
|
||||
</UL>
|
||||
<BR>
|
||||
<B>REQUIRES:</B><BR>
|
||||
The game requires Flash 8. So any computer with Flash 8 should be able to run it (PC, MAC, and Linux (with Flash Player 9)).
|
||||
However it does use a lot of graphics, so a slow computer may have troubles. Any computer bought in the last 3-5 years should be fine. It also needs quick Internet, so dialup users may not enjoy the game fully.
|
||||
|
||||
<BR><BR><B>SCREEN SHOTS:</B> (Pause your mouse over an image to popup details)<BR><CENTER>
|
||||
<IMG SRC=web/screenshots/screen1.png
|
||||
ALT="The Group Drawing Room. Great place for pictionary, tictactoe or just drawing!"
|
||||
TITLE="The Group Drawing Room. Great place for pictionary, tictactoe or just drawing!">
|
||||
<IMG SRC=web/screenshots/screen2.png
|
||||
ALT="The Library. Viewing one of the breeds of Horse Isle."
|
||||
TITLE="The Library. Viewing one of the breeds of Horse Isle.">
|
||||
<IMG SRC=web/screenshots/screen3.png
|
||||
ALT="Treeton. One of the towns in Horse Isle."
|
||||
TITLE="Treeton. One of the towns in Horse Isle.">
|
||||
<IMG SRC=web/screenshots/screen7.png BORDER=1
|
||||
ALT="Quite the gathering of horse riders in the Desert!"
|
||||
TITLE="Quite the gathering of horse riders in the Desert!">
|
||||
<IMG SRC=web/screenshots/screen8.png BORDER=1
|
||||
ALT="A cold little community in Horse Isle."
|
||||
TITLE="A cold little community in Horse Isle.">
|
||||
<IMG SRC=web/screenshots/screen9.png BORDER=1
|
||||
ALT="A Drawing Room competition area on Art Isle."
|
||||
TITLE="A Drawing Room competition area on Art Isle." >
|
||||
<IMG SRC=web/screenshots/screen10.png BORDER=1
|
||||
ALT="Giant flowers and Rainbows make Flower Isle a special Island to visit."
|
||||
TITLE="Giant flowers and Rainbows make Flower Isle a special Island to visit.">
|
||||
<IMG SRC=web/screenshots/screen11.png BORDER=1
|
||||
ALT="One of the Arena MiniGames, This is Horse Racing."
|
||||
TITLE="One of the Arena MiniGames, This is Horse Racing." >
|
||||
|
||||
|
||||
<BR>
|
||||
</TD></TR></TABLE>
|
||||
<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>
|
||||
|
|
@ -1,300 +0,0 @@
|
|||
<HEAD>
|
||||
<TITLE>HORSE ISLE - Online Multiplayer Horse Game</TITLE>
|
||||
<META NAME="keywords" CONTENT="Horse Game Online MMORPG Multiplayer Horses RPG Girls Girly Isle World Island Virtual Horseisle Sim Virtual">
|
||||
<META NAME="description" CONTENT="A multiplayer online horse world where players can capture, train, care for and compete their horses against other players. A very unique virtual sim horse game.">
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="meta" href="//horseisle.com/labels.rdf" type="application/rdf+xml" title="ICRA labels" />
|
||||
<meta http-equiv="pics-Label" content='(pics-1.1 "//www.icra.org/pics/vocabularyv03/" l gen true for "//horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1) gen true for "//hi1.horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1))' />
|
||||
<style type="text/css">
|
||||
hr {
|
||||
height: 1;
|
||||
color: #000000;
|
||||
background-color: #000000;
|
||||
border: 0;
|
||||
}
|
||||
a {
|
||||
font: bold 14px arial;
|
||||
color: #6E3278;
|
||||
}
|
||||
TH {
|
||||
background-color: #EDE5B4;
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
font: small-caps 900 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TR.a0 {
|
||||
background-color: #EDE5B4;
|
||||
}
|
||||
TR.a1 {
|
||||
background-color: #D4CCA1;
|
||||
}
|
||||
TD {
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forum {
|
||||
font: 12px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumlist {
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: center;
|
||||
font: bold 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumpost {
|
||||
padding: 5px 10px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: left;
|
||||
}
|
||||
TD.newslist {
|
||||
padding: 4px 4px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #FFDDEE;
|
||||
text-align: left;
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
FORUMSUBJECT {
|
||||
font: bold 14px arial;
|
||||
color: #004400;
|
||||
}
|
||||
FORUMUSER {
|
||||
font: 12px arial;
|
||||
color: #000044;
|
||||
}
|
||||
FORUMDATE {
|
||||
font: 12px arial;
|
||||
color: #444444;
|
||||
}
|
||||
FORUMTEXT {
|
||||
font: 14px arial;
|
||||
color: #440000;
|
||||
}
|
||||
|
||||
</style>
|
||||
</HEAD>
|
||||
<BODY BGCOLOR=E0D8AA>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR WIDTH=100%>
|
||||
<TD WIDTH=512 ROWSPAN=3><A HREF=/><IMG SRC=/web/hoilgui1.gif ALT="Welcome to Horse Isle" BORDER=0></A></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui2.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui3.gif></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui4.gif align=right>
|
||||
<B>
|
||||
|
||||
|
||||
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B><A HREF=/account.php>BAY.HORSEISLE.COM</A><BR>Logged in as: PopularGem<BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=//hi1.horseisle.com/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=//hi1.horseisle.com/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/helpcenter.php><img src=/web/but-helpcenter.gif border=0></A></TD></TR></TABLE>
|
||||
|
||||
</TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui5.gif></TD></TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui6.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui7.gif></TD></TR>
|
||||
</TABLE>
|
||||
<CENTER>
|
||||
|
||||
|
||||
|
||||
<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() {
|
||||
ajax('web/playersonline.php?id=589828','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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', '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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', 'popup', 846, 542); return false;">bigger borders version</A>)<BR>(<A HREF=horseisle.php?USER=PopularGem>same window version</A>)</TD><TD VALIGN=top>Welcome back <B>PopularGem</B>, Here is your account info and Horse Isle server status: (<A HREF=?>refresh</A>)<BR><BR>You have a new account and have not yet logged in!<BR>You have <B><FONT COLOR=005500>$0</FONT></B> in Horse Isle money on hand and <B><FONT COLOR=005500>$0</FONT></B> in the bank.<BR>You have earned <B>0</B> of <B>63005</B> total quest points (<B>0%</B> Complete)<BR>You have <B>0</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>POPULARGEM'S BAY SUBSCRIPTION STATUS:<BR></FONT><FONT SIZE=+2>NOT SUBSCRIBED</FONT><BR>(You have not yet subscribed)</FONT> (<A HREF=web/reasonstosubscribe.php>Subscription Benefits</A>)<BR><FONT SIZE=+1><FONT COLOR=RED>NOTE:</FONT> HI1 Is End-Of-Life. Server may permanently shut down at any time. We do NOT recommend buying anything. We left the option to purchase in case you need to for final enjoyment of game. No refunds.</FONT>
|
||||
</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="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="One Month Horse Isle Membership-on bay.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="5.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://bay.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://bay.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>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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="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="Pawneer Order-on bay.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="8.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://bay.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://bay.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><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="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="Five Pawneer Order-on bay.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="30.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://bay.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://bay.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 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=//hi1.horseisle.com/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><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=http://hi1.horseisle.com/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=http://hi1.horseisle.com/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/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,300 +0,0 @@
|
|||
<HEAD>
|
||||
<TITLE>HORSE ISLE - Online Multiplayer Horse Game</TITLE>
|
||||
<META NAME="keywords" CONTENT="Horse Game Online MMORPG Multiplayer Horses RPG Girls Girly Isle World Island Virtual Horseisle Sim Virtual">
|
||||
<META NAME="description" CONTENT="A multiplayer online horse world where players can capture, train, care for and compete their horses against other players. A very unique virtual sim horse game.">
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="meta" href="//horseisle.com/labels.rdf" type="application/rdf+xml" title="ICRA labels" />
|
||||
<meta http-equiv="pics-Label" content='(pics-1.1 "//www.icra.org/pics/vocabularyv03/" l gen true for "//horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1) gen true for "//hi1.horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1))' />
|
||||
<style type="text/css">
|
||||
hr {
|
||||
height: 1;
|
||||
color: #000000;
|
||||
background-color: #000000;
|
||||
border: 0;
|
||||
}
|
||||
a {
|
||||
font: bold 14px arial;
|
||||
color: #6E3278;
|
||||
}
|
||||
TH {
|
||||
background-color: #EDE5B4;
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
font: small-caps 900 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TR.a0 {
|
||||
background-color: #EDE5B4;
|
||||
}
|
||||
TR.a1 {
|
||||
background-color: #D4CCA1;
|
||||
}
|
||||
TD {
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forum {
|
||||
font: 12px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumlist {
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: center;
|
||||
font: bold 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumpost {
|
||||
padding: 5px 10px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: left;
|
||||
}
|
||||
TD.newslist {
|
||||
padding: 4px 4px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #FFDDEE;
|
||||
text-align: left;
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
FORUMSUBJECT {
|
||||
font: bold 14px arial;
|
||||
color: #004400;
|
||||
}
|
||||
FORUMUSER {
|
||||
font: 12px arial;
|
||||
color: #000044;
|
||||
}
|
||||
FORUMDATE {
|
||||
font: 12px arial;
|
||||
color: #444444;
|
||||
}
|
||||
FORUMTEXT {
|
||||
font: 14px arial;
|
||||
color: #440000;
|
||||
}
|
||||
|
||||
</style>
|
||||
</HEAD>
|
||||
<BODY BGCOLOR=E0D8AA>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR WIDTH=100%>
|
||||
<TD WIDTH=512 ROWSPAN=3><A HREF=/><IMG SRC=/web/hoilgui1.gif ALT="Welcome to Horse Isle" BORDER=0></A></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui2.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui3.gif></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui4.gif align=right>
|
||||
<B>
|
||||
|
||||
|
||||
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B><A HREF=/account.php>BLACK.HORSEISLE.COM</A><BR>Logged in as: PopularGem<BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=//hi1.horseisle.com/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=//hi1.horseisle.com/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/helpcenter.php><img src=/web/but-helpcenter.gif border=0></A></TD></TR></TABLE>
|
||||
|
||||
</TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui5.gif></TD></TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui6.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui7.gif></TD></TR>
|
||||
</TABLE>
|
||||
<CENTER>
|
||||
|
||||
|
||||
|
||||
<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() {
|
||||
ajax('web/playersonline.php?id=589828','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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', '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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', 'popup', 846, 542); return false;">bigger borders version</A>)<BR>(<A HREF=horseisle.php?USER=PopularGem>same window version</A>)</TD><TD VALIGN=top>Welcome back <B>PopularGem</B>, Here is your account info and Horse Isle server status: (<A HREF=?>refresh</A>)<BR><BR>You have a new account and have not yet logged in!<BR>You have <B><FONT COLOR=005500>$0</FONT></B> in Horse Isle money on hand and <B><FONT COLOR=005500>$0</FONT></B> in the bank.<BR>You have earned <B>0</B> of <B>63005</B> total quest points (<B>0%</B> Complete)<BR>You have <B>0</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>POPULARGEM'S BLACK SUBSCRIPTION STATUS:<BR></FONT><FONT SIZE=+2>NOT SUBSCRIBED</FONT><BR>(You have not yet subscribed)</FONT> (<A HREF=web/reasonstosubscribe.php>Subscription Benefits</A>)<BR><FONT SIZE=+1><FONT COLOR=RED>NOTE:</FONT> HI1 Is End-Of-Life. Server may permanently shut down at any time. We do NOT recommend buying anything. We left the option to purchase in case you need to for final enjoyment of game. No refunds.</FONT>
|
||||
</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="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="One Month Horse Isle Membership-on black.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="5.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://black.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://black.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>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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="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="Pawneer Order-on black.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="8.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://black.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://black.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><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="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="Five Pawneer Order-on black.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="30.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://black.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://black.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 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=//hi1.horseisle.com/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><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=http://hi1.horseisle.com/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=http://hi1.horseisle.com/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/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,300 +0,0 @@
|
|||
<HEAD>
|
||||
<TITLE>HORSE ISLE - Online Multiplayer Horse Game</TITLE>
|
||||
<META NAME="keywords" CONTENT="Horse Game Online MMORPG Multiplayer Horses RPG Girls Girly Isle World Island Virtual Horseisle Sim Virtual">
|
||||
<META NAME="description" CONTENT="A multiplayer online horse world where players can capture, train, care for and compete their horses against other players. A very unique virtual sim horse game.">
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="meta" href="//horseisle.com/labels.rdf" type="application/rdf+xml" title="ICRA labels" />
|
||||
<meta http-equiv="pics-Label" content='(pics-1.1 "//www.icra.org/pics/vocabularyv03/" l gen true for "//horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1) gen true for "//hi1.horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1))' />
|
||||
<style type="text/css">
|
||||
hr {
|
||||
height: 1;
|
||||
color: #000000;
|
||||
background-color: #000000;
|
||||
border: 0;
|
||||
}
|
||||
a {
|
||||
font: bold 14px arial;
|
||||
color: #6E3278;
|
||||
}
|
||||
TH {
|
||||
background-color: #EDE5B4;
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
font: small-caps 900 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TR.a0 {
|
||||
background-color: #EDE5B4;
|
||||
}
|
||||
TR.a1 {
|
||||
background-color: #D4CCA1;
|
||||
}
|
||||
TD {
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forum {
|
||||
font: 12px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumlist {
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: center;
|
||||
font: bold 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumpost {
|
||||
padding: 5px 10px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: left;
|
||||
}
|
||||
TD.newslist {
|
||||
padding: 4px 4px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #FFDDEE;
|
||||
text-align: left;
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
FORUMSUBJECT {
|
||||
font: bold 14px arial;
|
||||
color: #004400;
|
||||
}
|
||||
FORUMUSER {
|
||||
font: 12px arial;
|
||||
color: #000044;
|
||||
}
|
||||
FORUMDATE {
|
||||
font: 12px arial;
|
||||
color: #444444;
|
||||
}
|
||||
FORUMTEXT {
|
||||
font: 14px arial;
|
||||
color: #440000;
|
||||
}
|
||||
|
||||
</style>
|
||||
</HEAD>
|
||||
<BODY BGCOLOR=E0D8AA>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR WIDTH=100%>
|
||||
<TD WIDTH=512 ROWSPAN=3><A HREF=/><IMG SRC=/web/hoilgui1.gif ALT="Welcome to Horse Isle" BORDER=0></A></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui2.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui3.gif></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui4.gif align=right>
|
||||
<B>
|
||||
|
||||
|
||||
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B><A HREF=/account.php>BROWN.HORSEISLE.COM</A><BR>Logged in as: PopularGem<BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=//hi1.horseisle.com/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=//hi1.horseisle.com/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/helpcenter.php><img src=/web/but-helpcenter.gif border=0></A></TD></TR></TABLE>
|
||||
|
||||
</TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui5.gif></TD></TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui6.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui7.gif></TD></TR>
|
||||
</TABLE>
|
||||
<CENTER>
|
||||
|
||||
|
||||
|
||||
<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() {
|
||||
ajax('web/playersonline.php?id=589828','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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', '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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', 'popup', 846, 542); return false;">bigger borders version</A>)<BR>(<A HREF=horseisle.php?USER=PopularGem>same window version</A>)</TD><TD VALIGN=top>Welcome back <B>PopularGem</B>, Here is your account info and Horse Isle server status: (<A HREF=?>refresh</A>)<BR><BR>You have a new account and have not yet logged in!<BR>You have <B><FONT COLOR=005500>$0</FONT></B> in Horse Isle money on hand and <B><FONT COLOR=005500>$0</FONT></B> in the bank.<BR>You have earned <B>0</B> of <B>63005</B> total quest points (<B>0%</B> Complete)<BR>You have <B>0</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>POPULARGEM'S BROWN SUBSCRIPTION STATUS:<BR></FONT><FONT SIZE=+2>NOT SUBSCRIBED</FONT><BR>(You have not yet subscribed)</FONT> (<A HREF=web/reasonstosubscribe.php>Subscription Benefits</A>)<BR><FONT SIZE=+1><FONT COLOR=RED>NOTE:</FONT> HI1 Is End-Of-Life. Server may permanently shut down at any time. We do NOT recommend buying anything. We left the option to purchase in case you need to for final enjoyment of game. No refunds.</FONT>
|
||||
</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="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="One Month Horse Isle Membership-on brown.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="5.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://brown.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://brown.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>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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="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="Pawneer Order-on brown.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="8.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://brown.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://brown.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><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="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="Five Pawneer Order-on brown.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="30.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://brown.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://brown.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 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=//hi1.horseisle.com/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><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=http://hi1.horseisle.com/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=http://hi1.horseisle.com/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/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,300 +0,0 @@
|
|||
<HEAD>
|
||||
<TITLE>HORSE ISLE - Online Multiplayer Horse Game</TITLE>
|
||||
<META NAME="keywords" CONTENT="Horse Game Online MMORPG Multiplayer Horses RPG Girls Girly Isle World Island Virtual Horseisle Sim Virtual">
|
||||
<META NAME="description" CONTENT="A multiplayer online horse world where players can capture, train, care for and compete their horses against other players. A very unique virtual sim horse game.">
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="meta" href="//horseisle.com/labels.rdf" type="application/rdf+xml" title="ICRA labels" />
|
||||
<meta http-equiv="pics-Label" content='(pics-1.1 "//www.icra.org/pics/vocabularyv03/" l gen true for "//horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1) gen true for "//hi1.horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1))' />
|
||||
<style type="text/css">
|
||||
hr {
|
||||
height: 1;
|
||||
color: #000000;
|
||||
background-color: #000000;
|
||||
border: 0;
|
||||
}
|
||||
a {
|
||||
font: bold 14px arial;
|
||||
color: #6E3278;
|
||||
}
|
||||
TH {
|
||||
background-color: #EDE5B4;
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
font: small-caps 900 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TR.a0 {
|
||||
background-color: #EDE5B4;
|
||||
}
|
||||
TR.a1 {
|
||||
background-color: #D4CCA1;
|
||||
}
|
||||
TD {
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forum {
|
||||
font: 12px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumlist {
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: center;
|
||||
font: bold 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumpost {
|
||||
padding: 5px 10px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: left;
|
||||
}
|
||||
TD.newslist {
|
||||
padding: 4px 4px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #FFDDEE;
|
||||
text-align: left;
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
FORUMSUBJECT {
|
||||
font: bold 14px arial;
|
||||
color: #004400;
|
||||
}
|
||||
FORUMUSER {
|
||||
font: 12px arial;
|
||||
color: #000044;
|
||||
}
|
||||
FORUMDATE {
|
||||
font: 12px arial;
|
||||
color: #444444;
|
||||
}
|
||||
FORUMTEXT {
|
||||
font: 14px arial;
|
||||
color: #440000;
|
||||
}
|
||||
|
||||
</style>
|
||||
</HEAD>
|
||||
<BODY BGCOLOR=E0D8AA>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR WIDTH=100%>
|
||||
<TD WIDTH=512 ROWSPAN=3><A HREF=/><IMG SRC=/web/hoilgui1.gif ALT="Welcome to Horse Isle" BORDER=0></A></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui2.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui3.gif></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui4.gif align=right>
|
||||
<B>
|
||||
|
||||
|
||||
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B><A HREF=/account.php>CHESTNUT.HORSEISLE.COM</A><BR>Logged in as: PopularGem<BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=//hi1.horseisle.com/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=//hi1.horseisle.com/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/helpcenter.php><img src=/web/but-helpcenter.gif border=0></A></TD></TR></TABLE>
|
||||
|
||||
</TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui5.gif></TD></TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui6.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui7.gif></TD></TR>
|
||||
</TABLE>
|
||||
<CENTER>
|
||||
|
||||
|
||||
|
||||
<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() {
|
||||
ajax('web/playersonline.php?id=589828','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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', '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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', 'popup', 846, 542); return false;">bigger borders version</A>)<BR>(<A HREF=horseisle.php?USER=PopularGem>same window version</A>)</TD><TD VALIGN=top>Welcome back <B>PopularGem</B>, Here is your account info and Horse Isle server status: (<A HREF=?>refresh</A>)<BR><BR>You have a new account and have not yet logged in!<BR>You have <B><FONT COLOR=005500>$0</FONT></B> in Horse Isle money on hand and <B><FONT COLOR=005500>$0</FONT></B> in the bank.<BR>You have earned <B>0</B> of <B>63005</B> total quest points (<B>0%</B> Complete)<BR>You have <B>0</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>POPULARGEM'S CHESTNUT SUBSCRIPTION STATUS:<BR></FONT><FONT SIZE=+2>NOT SUBSCRIBED</FONT><BR>(You have not yet subscribed)</FONT> (<A HREF=web/reasonstosubscribe.php>Subscription Benefits</A>)<BR><FONT SIZE=+1><FONT COLOR=RED>NOTE:</FONT> HI1 Is End-Of-Life. Server may permanently shut down at any time. We do NOT recommend buying anything. We left the option to purchase in case you need to for final enjoyment of game. No refunds.</FONT>
|
||||
</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="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="One Month Horse Isle Membership-on chestnut.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="5.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://chestnut.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://chestnut.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>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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="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="Pawneer Order-on chestnut.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="8.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://chestnut.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://chestnut.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><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="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="Five Pawneer Order-on chestnut.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="30.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://chestnut.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://chestnut.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 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=//hi1.horseisle.com/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><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=http://hi1.horseisle.com/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=http://hi1.horseisle.com/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/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,300 +0,0 @@
|
|||
<HEAD>
|
||||
<TITLE>HORSE ISLE - Online Multiplayer Horse Game</TITLE>
|
||||
<META NAME="keywords" CONTENT="Horse Game Online MMORPG Multiplayer Horses RPG Girls Girly Isle World Island Virtual Horseisle Sim Virtual">
|
||||
<META NAME="description" CONTENT="A multiplayer online horse world where players can capture, train, care for and compete their horses against other players. A very unique virtual sim horse game.">
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="meta" href="//horseisle.com/labels.rdf" type="application/rdf+xml" title="ICRA labels" />
|
||||
<meta http-equiv="pics-Label" content='(pics-1.1 "//www.icra.org/pics/vocabularyv03/" l gen true for "//horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1) gen true for "//hi1.horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1))' />
|
||||
<style type="text/css">
|
||||
hr {
|
||||
height: 1;
|
||||
color: #000000;
|
||||
background-color: #000000;
|
||||
border: 0;
|
||||
}
|
||||
a {
|
||||
font: bold 14px arial;
|
||||
color: #6E3278;
|
||||
}
|
||||
TH {
|
||||
background-color: #EDE5B4;
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
font: small-caps 900 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TR.a0 {
|
||||
background-color: #EDE5B4;
|
||||
}
|
||||
TR.a1 {
|
||||
background-color: #D4CCA1;
|
||||
}
|
||||
TD {
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forum {
|
||||
font: 12px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumlist {
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: center;
|
||||
font: bold 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumpost {
|
||||
padding: 5px 10px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: left;
|
||||
}
|
||||
TD.newslist {
|
||||
padding: 4px 4px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #FFDDEE;
|
||||
text-align: left;
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
FORUMSUBJECT {
|
||||
font: bold 14px arial;
|
||||
color: #004400;
|
||||
}
|
||||
FORUMUSER {
|
||||
font: 12px arial;
|
||||
color: #000044;
|
||||
}
|
||||
FORUMDATE {
|
||||
font: 12px arial;
|
||||
color: #444444;
|
||||
}
|
||||
FORUMTEXT {
|
||||
font: 14px arial;
|
||||
color: #440000;
|
||||
}
|
||||
|
||||
</style>
|
||||
</HEAD>
|
||||
<BODY BGCOLOR=E0D8AA>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR WIDTH=100%>
|
||||
<TD WIDTH=512 ROWSPAN=3><A HREF=/><IMG SRC=/web/hoilgui1.gif ALT="Welcome to Horse Isle" BORDER=0></A></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui2.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui3.gif></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui4.gif align=right>
|
||||
<B>
|
||||
|
||||
|
||||
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B><A HREF=/account.php>CREMELLO.HORSEISLE.COM</A><BR>Logged in as: PopularGem<BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=//hi1.horseisle.com/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=//hi1.horseisle.com/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/helpcenter.php><img src=/web/but-helpcenter.gif border=0></A></TD></TR></TABLE>
|
||||
|
||||
</TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui5.gif></TD></TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui6.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui7.gif></TD></TR>
|
||||
</TABLE>
|
||||
<CENTER>
|
||||
|
||||
|
||||
|
||||
<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() {
|
||||
ajax('web/playersonline.php?id=589828','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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', '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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', 'popup', 846, 542); return false;">bigger borders version</A>)<BR>(<A HREF=horseisle.php?USER=PopularGem>same window version</A>)</TD><TD VALIGN=top>Welcome back <B>PopularGem</B>, Here is your account info and Horse Isle server status: (<A HREF=?>refresh</A>)<BR><BR>You have a new account and have not yet logged in!<BR>You have <B><FONT COLOR=005500>$0</FONT></B> in Horse Isle money on hand and <B><FONT COLOR=005500>$0</FONT></B> in the bank.<BR>You have earned <B>0</B> of <B>63005</B> total quest points (<B>0%</B> Complete)<BR>You have <B>0</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>POPULARGEM'S CREMELLO SUBSCRIPTION STATUS:<BR></FONT><FONT SIZE=+2>NOT SUBSCRIBED</FONT><BR>(You have not yet subscribed)</FONT> (<A HREF=web/reasonstosubscribe.php>Subscription Benefits</A>)<BR><FONT SIZE=+1><FONT COLOR=RED>NOTE:</FONT> HI1 Is End-Of-Life. Server may permanently shut down at any time. We do NOT recommend buying anything. We left the option to purchase in case you need to for final enjoyment of game. No refunds.</FONT>
|
||||
</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="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="One Month Horse Isle Membership-on cremello.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="5.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://cremello.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://cremello.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>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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="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="Pawneer Order-on cremello.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="8.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://cremello.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://cremello.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><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="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="Five Pawneer Order-on cremello.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="30.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://cremello.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://cremello.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 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=//hi1.horseisle.com/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><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=http://hi1.horseisle.com/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=http://hi1.horseisle.com/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/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,300 +0,0 @@
|
|||
<HEAD>
|
||||
<TITLE>HORSE ISLE - Online Multiplayer Horse Game</TITLE>
|
||||
<META NAME="keywords" CONTENT="Horse Game Online MMORPG Multiplayer Horses RPG Girls Girly Isle World Island Virtual Horseisle Sim Virtual">
|
||||
<META NAME="description" CONTENT="A multiplayer online horse world where players can capture, train, care for and compete their horses against other players. A very unique virtual sim horse game.">
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="meta" href="//horseisle.com/labels.rdf" type="application/rdf+xml" title="ICRA labels" />
|
||||
<meta http-equiv="pics-Label" content='(pics-1.1 "//www.icra.org/pics/vocabularyv03/" l gen true for "//horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1) gen true for "//hi1.horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1))' />
|
||||
<style type="text/css">
|
||||
hr {
|
||||
height: 1;
|
||||
color: #000000;
|
||||
background-color: #000000;
|
||||
border: 0;
|
||||
}
|
||||
a {
|
||||
font: bold 14px arial;
|
||||
color: #6E3278;
|
||||
}
|
||||
TH {
|
||||
background-color: #EDE5B4;
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
font: small-caps 900 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TR.a0 {
|
||||
background-color: #EDE5B4;
|
||||
}
|
||||
TR.a1 {
|
||||
background-color: #D4CCA1;
|
||||
}
|
||||
TD {
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forum {
|
||||
font: 12px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumlist {
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: center;
|
||||
font: bold 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumpost {
|
||||
padding: 5px 10px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: left;
|
||||
}
|
||||
TD.newslist {
|
||||
padding: 4px 4px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #FFDDEE;
|
||||
text-align: left;
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
FORUMSUBJECT {
|
||||
font: bold 14px arial;
|
||||
color: #004400;
|
||||
}
|
||||
FORUMUSER {
|
||||
font: 12px arial;
|
||||
color: #000044;
|
||||
}
|
||||
FORUMDATE {
|
||||
font: 12px arial;
|
||||
color: #444444;
|
||||
}
|
||||
FORUMTEXT {
|
||||
font: 14px arial;
|
||||
color: #440000;
|
||||
}
|
||||
|
||||
</style>
|
||||
</HEAD>
|
||||
<BODY BGCOLOR=E0D8AA>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR WIDTH=100%>
|
||||
<TD WIDTH=512 ROWSPAN=3><A HREF=/><IMG SRC=/web/hoilgui1.gif ALT="Welcome to Horse Isle" BORDER=0></A></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui2.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui3.gif></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui4.gif align=right>
|
||||
<B>
|
||||
|
||||
|
||||
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B><A HREF=/account.php>DUN.HORSEISLE.COM</A><BR>Logged in as: PopularGem<BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=//hi1.horseisle.com/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=//hi1.horseisle.com/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/helpcenter.php><img src=/web/but-helpcenter.gif border=0></A></TD></TR></TABLE>
|
||||
|
||||
</TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui5.gif></TD></TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui6.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui7.gif></TD></TR>
|
||||
</TABLE>
|
||||
<CENTER>
|
||||
|
||||
|
||||
|
||||
<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() {
|
||||
ajax('web/playersonline.php?id=589828','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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', '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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', 'popup', 846, 542); return false;">bigger borders version</A>)<BR>(<A HREF=horseisle.php?USER=PopularGem>same window version</A>)</TD><TD VALIGN=top>Welcome back <B>PopularGem</B>, Here is your account info and Horse Isle server status: (<A HREF=?>refresh</A>)<BR><BR>You have a new account and have not yet logged in!<BR>You have <B><FONT COLOR=005500>$0</FONT></B> in Horse Isle money on hand and <B><FONT COLOR=005500>$0</FONT></B> in the bank.<BR>You have earned <B>0</B> of <B>63005</B> total quest points (<B>0%</B> Complete)<BR>You have <B>0</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>POPULARGEM'S DUN SUBSCRIPTION STATUS:<BR></FONT><FONT SIZE=+2>NOT SUBSCRIBED</FONT><BR>(You have not yet subscribed)</FONT> (<A HREF=web/reasonstosubscribe.php>Subscription Benefits</A>)<BR><FONT SIZE=+1><FONT COLOR=RED>NOTE:</FONT> HI1 Is End-Of-Life. Server may permanently shut down at any time. We do NOT recommend buying anything. We left the option to purchase in case you need to for final enjoyment of game. No refunds.</FONT>
|
||||
</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="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="One Month Horse Isle Membership-on dun.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="5.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://dun.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://dun.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>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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="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="Pawneer Order-on dun.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="8.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://dun.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://dun.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><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="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="Five Pawneer Order-on dun.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="30.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://dun.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://dun.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 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=//hi1.horseisle.com/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><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=http://hi1.horseisle.com/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=http://hi1.horseisle.com/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/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,300 +0,0 @@
|
|||
<HEAD>
|
||||
<TITLE>HORSE ISLE - Online Multiplayer Horse Game</TITLE>
|
||||
<META NAME="keywords" CONTENT="Horse Game Online MMORPG Multiplayer Horses RPG Girls Girly Isle World Island Virtual Horseisle Sim Virtual">
|
||||
<META NAME="description" CONTENT="A multiplayer online horse world where players can capture, train, care for and compete their horses against other players. A very unique virtual sim horse game.">
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="meta" href="//horseisle.com/labels.rdf" type="application/rdf+xml" title="ICRA labels" />
|
||||
<meta http-equiv="pics-Label" content='(pics-1.1 "//www.icra.org/pics/vocabularyv03/" l gen true for "//horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1) gen true for "//hi1.horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1))' />
|
||||
<style type="text/css">
|
||||
hr {
|
||||
height: 1;
|
||||
color: #000000;
|
||||
background-color: #000000;
|
||||
border: 0;
|
||||
}
|
||||
a {
|
||||
font: bold 14px arial;
|
||||
color: #6E3278;
|
||||
}
|
||||
TH {
|
||||
background-color: #EDE5B4;
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
font: small-caps 900 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TR.a0 {
|
||||
background-color: #EDE5B4;
|
||||
}
|
||||
TR.a1 {
|
||||
background-color: #D4CCA1;
|
||||
}
|
||||
TD {
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forum {
|
||||
font: 12px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumlist {
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: center;
|
||||
font: bold 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumpost {
|
||||
padding: 5px 10px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: left;
|
||||
}
|
||||
TD.newslist {
|
||||
padding: 4px 4px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #FFDDEE;
|
||||
text-align: left;
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
FORUMSUBJECT {
|
||||
font: bold 14px arial;
|
||||
color: #004400;
|
||||
}
|
||||
FORUMUSER {
|
||||
font: 12px arial;
|
||||
color: #000044;
|
||||
}
|
||||
FORUMDATE {
|
||||
font: 12px arial;
|
||||
color: #444444;
|
||||
}
|
||||
FORUMTEXT {
|
||||
font: 14px arial;
|
||||
color: #440000;
|
||||
}
|
||||
|
||||
</style>
|
||||
</HEAD>
|
||||
<BODY BGCOLOR=E0D8AA>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR WIDTH=100%>
|
||||
<TD WIDTH=512 ROWSPAN=3><A HREF=/><IMG SRC=/web/hoilgui1.gif ALT="Welcome to Horse Isle" BORDER=0></A></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui2.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui3.gif></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui4.gif align=right>
|
||||
<B>
|
||||
|
||||
|
||||
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B><A HREF=/account.php>GREY.HORSEISLE.COM</A><BR>Logged in as: PopularGem<BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=//hi1.horseisle.com/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=//hi1.horseisle.com/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/helpcenter.php><img src=/web/but-helpcenter.gif border=0></A></TD></TR></TABLE>
|
||||
|
||||
</TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui5.gif></TD></TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui6.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui7.gif></TD></TR>
|
||||
</TABLE>
|
||||
<CENTER>
|
||||
|
||||
|
||||
|
||||
<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() {
|
||||
ajax('web/playersonline.php?id=589828','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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', '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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', 'popup', 846, 542); return false;">bigger borders version</A>)<BR>(<A HREF=horseisle.php?USER=PopularGem>same window version</A>)</TD><TD VALIGN=top>Welcome back <B>PopularGem</B>, Here is your account info and Horse Isle server status: (<A HREF=?>refresh</A>)<BR><BR>You have a new account and have not yet logged in!<BR>You have <B><FONT COLOR=005500>$0</FONT></B> in Horse Isle money on hand and <B><FONT COLOR=005500>$0</FONT></B> in the bank.<BR>You have earned <B>0</B> of <B>63005</B> total quest points (<B>0%</B> Complete)<BR>You have <B>0</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>POPULARGEM'S GREY SUBSCRIPTION STATUS:<BR></FONT><FONT SIZE=+2>NOT SUBSCRIBED</FONT><BR>(You have not yet subscribed)</FONT> (<A HREF=web/reasonstosubscribe.php>Subscription Benefits</A>)<BR><FONT SIZE=+1><FONT COLOR=RED>NOTE:</FONT> HI1 Is End-Of-Life. Server may permanently shut down at any time. We do NOT recommend buying anything. We left the option to purchase in case you need to for final enjoyment of game. No refunds.</FONT>
|
||||
</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="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="One Month Horse Isle Membership-on grey.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="5.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://grey.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://grey.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>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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="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="Pawneer Order-on grey.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="8.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://grey.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://grey.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><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="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="Five Pawneer Order-on grey.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="30.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://grey.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://grey.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 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=//hi1.horseisle.com/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><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=http://hi1.horseisle.com/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=http://hi1.horseisle.com/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/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,300 +0,0 @@
|
|||
<HEAD>
|
||||
<TITLE>HORSE ISLE - Online Multiplayer Horse Game</TITLE>
|
||||
<META NAME="keywords" CONTENT="Horse Game Online MMORPG Multiplayer Horses RPG Girls Girly Isle World Island Virtual Horseisle Sim Virtual">
|
||||
<META NAME="description" CONTENT="A multiplayer online horse world where players can capture, train, care for and compete their horses against other players. A very unique virtual sim horse game.">
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="meta" href="//horseisle.com/labels.rdf" type="application/rdf+xml" title="ICRA labels" />
|
||||
<meta http-equiv="pics-Label" content='(pics-1.1 "//www.icra.org/pics/vocabularyv03/" l gen true for "//horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1) gen true for "//hi1.horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1))' />
|
||||
<style type="text/css">
|
||||
hr {
|
||||
height: 1;
|
||||
color: #000000;
|
||||
background-color: #000000;
|
||||
border: 0;
|
||||
}
|
||||
a {
|
||||
font: bold 14px arial;
|
||||
color: #6E3278;
|
||||
}
|
||||
TH {
|
||||
background-color: #EDE5B4;
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
font: small-caps 900 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TR.a0 {
|
||||
background-color: #EDE5B4;
|
||||
}
|
||||
TR.a1 {
|
||||
background-color: #D4CCA1;
|
||||
}
|
||||
TD {
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forum {
|
||||
font: 12px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumlist {
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: center;
|
||||
font: bold 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumpost {
|
||||
padding: 5px 10px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: left;
|
||||
}
|
||||
TD.newslist {
|
||||
padding: 4px 4px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #FFDDEE;
|
||||
text-align: left;
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
FORUMSUBJECT {
|
||||
font: bold 14px arial;
|
||||
color: #004400;
|
||||
}
|
||||
FORUMUSER {
|
||||
font: 12px arial;
|
||||
color: #000044;
|
||||
}
|
||||
FORUMDATE {
|
||||
font: 12px arial;
|
||||
color: #444444;
|
||||
}
|
||||
FORUMTEXT {
|
||||
font: 14px arial;
|
||||
color: #440000;
|
||||
}
|
||||
|
||||
</style>
|
||||
</HEAD>
|
||||
<BODY BGCOLOR=E0D8AA>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR WIDTH=100%>
|
||||
<TD WIDTH=512 ROWSPAN=3><A HREF=/><IMG SRC=/web/hoilgui1.gif ALT="Welcome to Horse Isle" BORDER=0></A></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui2.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui3.gif></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui4.gif align=right>
|
||||
<B>
|
||||
|
||||
|
||||
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B><A HREF=/account.php>PALOMINO.HORSEISLE.COM</A><BR>Logged in as: PopularGem<BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=//hi1.horseisle.com/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=//hi1.horseisle.com/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/helpcenter.php><img src=/web/but-helpcenter.gif border=0></A></TD></TR></TABLE>
|
||||
|
||||
</TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui5.gif></TD></TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui6.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui7.gif></TD></TR>
|
||||
</TABLE>
|
||||
<CENTER>
|
||||
|
||||
|
||||
|
||||
<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() {
|
||||
ajax('web/playersonline.php?id=589828','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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', '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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', 'popup', 846, 542); return false;">bigger borders version</A>)<BR>(<A HREF=horseisle.php?USER=PopularGem>same window version</A>)</TD><TD VALIGN=top>Welcome back <B>PopularGem</B>, Here is your account info and Horse Isle server status: (<A HREF=?>refresh</A>)<BR><BR>You have a new account and have not yet logged in!<BR>You have <B><FONT COLOR=005500>$0</FONT></B> in Horse Isle money on hand and <B><FONT COLOR=005500>$0</FONT></B> in the bank.<BR>You have earned <B>0</B> of <B>63005</B> total quest points (<B>0%</B> Complete)<BR>You have <B>0</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>POPULARGEM'S PALOMINO SUBSCRIPTION STATUS:<BR></FONT><FONT SIZE=+2>NOT SUBSCRIBED</FONT><BR>(You have not yet subscribed)</FONT> (<A HREF=web/reasonstosubscribe.php>Subscription Benefits</A>)<BR><FONT SIZE=+1><FONT COLOR=RED>NOTE:</FONT> HI1 Is End-Of-Life. Server may permanently shut down at any time. We do NOT recommend buying anything. We left the option to purchase in case you need to for final enjoyment of game. No refunds.</FONT>
|
||||
</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="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="One Month Horse Isle Membership-on palomino.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="5.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://palomino.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://palomino.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>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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="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="Pawneer Order-on palomino.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="8.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://palomino.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://palomino.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><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="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="Five Pawneer Order-on palomino.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="30.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://palomino.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://palomino.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 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=//hi1.horseisle.com/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><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=http://hi1.horseisle.com/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=http://hi1.horseisle.com/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/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,300 +0,0 @@
|
|||
<HEAD>
|
||||
<TITLE>HORSE ISLE - Online Multiplayer Horse Game</TITLE>
|
||||
<META NAME="keywords" CONTENT="Horse Game Online MMORPG Multiplayer Horses RPG Girls Girly Isle World Island Virtual Horseisle Sim Virtual">
|
||||
<META NAME="description" CONTENT="A multiplayer online horse world where players can capture, train, care for and compete their horses against other players. A very unique virtual sim horse game.">
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="meta" href="//horseisle.com/labels.rdf" type="application/rdf+xml" title="ICRA labels" />
|
||||
<meta http-equiv="pics-Label" content='(pics-1.1 "//www.icra.org/pics/vocabularyv03/" l gen true for "//horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1) gen true for "//hi1.horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1))' />
|
||||
<style type="text/css">
|
||||
hr {
|
||||
height: 1;
|
||||
color: #000000;
|
||||
background-color: #000000;
|
||||
border: 0;
|
||||
}
|
||||
a {
|
||||
font: bold 14px arial;
|
||||
color: #6E3278;
|
||||
}
|
||||
TH {
|
||||
background-color: #EDE5B4;
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
font: small-caps 900 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TR.a0 {
|
||||
background-color: #EDE5B4;
|
||||
}
|
||||
TR.a1 {
|
||||
background-color: #D4CCA1;
|
||||
}
|
||||
TD {
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forum {
|
||||
font: 12px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumlist {
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: center;
|
||||
font: bold 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumpost {
|
||||
padding: 5px 10px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: left;
|
||||
}
|
||||
TD.newslist {
|
||||
padding: 4px 4px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #FFDDEE;
|
||||
text-align: left;
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
FORUMSUBJECT {
|
||||
font: bold 14px arial;
|
||||
color: #004400;
|
||||
}
|
||||
FORUMUSER {
|
||||
font: 12px arial;
|
||||
color: #000044;
|
||||
}
|
||||
FORUMDATE {
|
||||
font: 12px arial;
|
||||
color: #444444;
|
||||
}
|
||||
FORUMTEXT {
|
||||
font: 14px arial;
|
||||
color: #440000;
|
||||
}
|
||||
|
||||
</style>
|
||||
</HEAD>
|
||||
<BODY BGCOLOR=E0D8AA>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR WIDTH=100%>
|
||||
<TD WIDTH=512 ROWSPAN=3><A HREF=/><IMG SRC=/web/hoilgui1.gif ALT="Welcome to Horse Isle" BORDER=0></A></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui2.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui3.gif></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui4.gif align=right>
|
||||
<B>
|
||||
|
||||
|
||||
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B><A HREF=/account.php>ROAN.HORSEISLE.COM</A><BR>Logged in as: PopularGem<BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=//hi1.horseisle.com/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=//hi1.horseisle.com/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/helpcenter.php><img src=/web/but-helpcenter.gif border=0></A></TD></TR></TABLE>
|
||||
|
||||
</TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui5.gif></TD></TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui6.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui7.gif></TD></TR>
|
||||
</TABLE>
|
||||
<CENTER>
|
||||
|
||||
|
||||
|
||||
<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() {
|
||||
ajax('web/playersonline.php?id=589828','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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', '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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', 'popup', 846, 542); return false;">bigger borders version</A>)<BR>(<A HREF=horseisle.php?USER=PopularGem>same window version</A>)</TD><TD VALIGN=top>Welcome back <B>PopularGem</B>, Here is your account info and Horse Isle server status: (<A HREF=?>refresh</A>)<BR><BR>You have a new account and have not yet logged in!<BR>You have <B><FONT COLOR=005500>$0</FONT></B> in Horse Isle money on hand and <B><FONT COLOR=005500>$0</FONT></B> in the bank.<BR>You have earned <B>0</B> of <B>63005</B> total quest points (<B>0%</B> Complete)<BR>You have <B>0</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>POPULARGEM'S ROAN SUBSCRIPTION STATUS:<BR></FONT><FONT SIZE=+2>NOT SUBSCRIBED</FONT><BR>(You have not yet subscribed)</FONT> (<A HREF=web/reasonstosubscribe.php>Subscription Benefits</A>)<BR><FONT SIZE=+1><FONT COLOR=RED>NOTE:</FONT> HI1 Is End-Of-Life. Server may permanently shut down at any time. We do NOT recommend buying anything. We left the option to purchase in case you need to for final enjoyment of game. No refunds.</FONT>
|
||||
</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="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="One Month Horse Isle Membership-on roan.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="5.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://roan.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://roan.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>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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="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="Pawneer Order-on roan.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="8.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://roan.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://roan.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><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="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="Five Pawneer Order-on roan.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="30.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://roan.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://roan.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 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=//hi1.horseisle.com/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><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=http://hi1.horseisle.com/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=http://hi1.horseisle.com/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/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,300 +0,0 @@
|
|||
<HEAD>
|
||||
<TITLE>HORSE ISLE - Online Multiplayer Horse Game</TITLE>
|
||||
<META NAME="keywords" CONTENT="Horse Game Online MMORPG Multiplayer Horses RPG Girls Girly Isle World Island Virtual Horseisle Sim Virtual">
|
||||
<META NAME="description" CONTENT="A multiplayer online horse world where players can capture, train, care for and compete their horses against other players. A very unique virtual sim horse game.">
|
||||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
<link rel="meta" href="//horseisle.com/labels.rdf" type="application/rdf+xml" title="ICRA labels" />
|
||||
<meta http-equiv="pics-Label" content='(pics-1.1 "//www.icra.org/pics/vocabularyv03/" l gen true for "//horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1) gen true for "//hi1.horseisle.com" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 1))' />
|
||||
<style type="text/css">
|
||||
hr {
|
||||
height: 1;
|
||||
color: #000000;
|
||||
background-color: #000000;
|
||||
border: 0;
|
||||
}
|
||||
a {
|
||||
font: bold 14px arial;
|
||||
color: #6E3278;
|
||||
}
|
||||
TH {
|
||||
background-color: #EDE5B4;
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
font: small-caps 900 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TR.a0 {
|
||||
background-color: #EDE5B4;
|
||||
}
|
||||
TR.a1 {
|
||||
background-color: #D4CCA1;
|
||||
}
|
||||
TD {
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forum {
|
||||
font: 12px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumlist {
|
||||
padding: 1px 6px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: center;
|
||||
font: bold 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
TD.forumpost {
|
||||
padding: 5px 10px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #EDE5B4;
|
||||
text-align: left;
|
||||
}
|
||||
TD.newslist {
|
||||
padding: 4px 4px;
|
||||
border: 2px dotted #6E3278;
|
||||
background-color: #FFDDEE;
|
||||
text-align: left;
|
||||
font: 14px arial;
|
||||
color: #000000;
|
||||
}
|
||||
FORUMSUBJECT {
|
||||
font: bold 14px arial;
|
||||
color: #004400;
|
||||
}
|
||||
FORUMUSER {
|
||||
font: 12px arial;
|
||||
color: #000044;
|
||||
}
|
||||
FORUMDATE {
|
||||
font: 12px arial;
|
||||
color: #444444;
|
||||
}
|
||||
FORUMTEXT {
|
||||
font: 14px arial;
|
||||
color: #440000;
|
||||
}
|
||||
|
||||
</style>
|
||||
</HEAD>
|
||||
<BODY BGCOLOR=E0D8AA>
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
|
||||
<TR WIDTH=100%>
|
||||
<TD WIDTH=512 ROWSPAN=3><A HREF=/><IMG SRC=/web/hoilgui1.gif ALT="Welcome to Horse Isle" BORDER=0></A></TD>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui2.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui3.gif></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui4.gif align=right>
|
||||
<B>
|
||||
|
||||
|
||||
|
||||
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B><A HREF=/account.php>WHITE.HORSEISLE.COM</A><BR>Logged in as: PopularGem<BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=//hi1.horseisle.com/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=//hi1.horseisle.com/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=//hi1.horseisle.com/web/helpcenter.php><img src=/web/but-helpcenter.gif border=0></A></TD></TR></TABLE>
|
||||
|
||||
</TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui5.gif></TD></TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui6.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui7.gif></TD></TR>
|
||||
</TABLE>
|
||||
<CENTER>
|
||||
|
||||
|
||||
|
||||
<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() {
|
||||
ajax('web/playersonline.php?id=589828','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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', '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=PopularGem' target=popup onClick="wopen('/horseisle.php?USER=PopularGem', 'popup', 846, 542); return false;">bigger borders version</A>)<BR>(<A HREF=horseisle.php?USER=PopularGem>same window version</A>)</TD><TD VALIGN=top>Welcome back <B>PopularGem</B>, Here is your account info and Horse Isle server status: (<A HREF=?>refresh</A>)<BR><BR>You have a new account and have not yet logged in!<BR>You have <B><FONT COLOR=005500>$0</FONT></B> in Horse Isle money on hand and <B><FONT COLOR=005500>$0</FONT></B> in the bank.<BR>You have earned <B>0</B> of <B>63005</B> total quest points (<B>0%</B> Complete)<BR>You have <B>0</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>POPULARGEM'S WHITE SUBSCRIPTION STATUS:<BR></FONT><FONT SIZE=+2>NOT SUBSCRIBED</FONT><BR>(You have not yet subscribed)</FONT> (<A HREF=web/reasonstosubscribe.php>Subscription Benefits</A>)<BR><FONT SIZE=+1><FONT COLOR=RED>NOTE:</FONT> HI1 Is End-Of-Life. Server may permanently shut down at any time. We do NOT recommend buying anything. We left the option to purchase in case you need to for final enjoyment of game. No refunds.</FONT>
|
||||
</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="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="One Month Horse Isle Membership-on white.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="5.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://white.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://white.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>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</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="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="Pawneer Order-on white.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="8.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://white.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://white.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><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="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="Five Pawneer Order-on white.horseisle.com">
|
||||
<input type="hidden" name="item_number" value="589828">
|
||||
<input type="hidden" name="custom" value="589828">
|
||||
<input type="hidden" name="amount" value="30.00">
|
||||
<input type="hidden" name="no_shipping" value="1">
|
||||
<input type="hidden" name="return" value="http://white.horseisle.com/web/paypalpayment.php">
|
||||
<input type="hidden" name="notify_url" value="http://white.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 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=//hi1.horseisle.com/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><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=http://hi1.horseisle.com/web/rules.php>Rules</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/termsandconditions.php>Terms and Conditions</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/privacypolicy.php>Privacy Policy</A> ]</B><BR>
|
||||
[ <A HREF=http://hi1.horseisle.com/web/expectedbehavior.php>Expected Behavior</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/web/contactus.php>Contact Us</A> ]
|
||||
[ <A HREF=http://hi1.horseisle.com/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>
|
||||
|
Loading…
Add table
Reference in a new issue