archive fourms
|
@ -128,6 +128,19 @@
|
|||
"map_all_buddies_format":"^T4Show all of your buddies on map:^B1M%BUDDYXYLIST%^R1",
|
||||
"map_all_players_format":"^T4Show all players online on map:^B1M%ALLXYLIST%^R1",
|
||||
"abuse_report":"^R1^T4If you witness a rule violation:^D28c1|ABUSE REPORT^R1",
|
||||
|
||||
"online_buddy_header":"^ATYour Buddies Currently Online^H",
|
||||
"online_buddy_format":"^I%ICON%^T3%USERNAME% (on %TIME% min)^B1L%PLAYERID%^B1R%PLAYERID%^B1M%MAPXY%^B1P%USERNAME%^R1",
|
||||
"offline_buddys":"H^LBuddies Currently Offline:^R1",
|
||||
"offline_buddy_format":"^T3%USERNAME% (off %TIME% min)^B1R%PLAYERID%^R1",
|
||||
"online_format":"^I%ICON%^T3%USERNAME% (on %TIME% min)^B1L%PLAYERID%B1M%MAPXY%^B1I%PLAYERID%^B1P%USERNAME%^R1",
|
||||
"icon_info":"^L [Star = Subscriber] [A = Admin] [M = Moderator]^R1",
|
||||
"icon_subbed_3month":415,
|
||||
"icon_subbed_year":416,
|
||||
"icon_new":417,
|
||||
"icon_subbed_month":418,
|
||||
"icon_admin":419,
|
||||
"icon_mod":420
|
||||
},
|
||||
"misc_stats":{
|
||||
"no_stats_recorded":"<BR>None Yet.",
|
||||
|
|
|
@ -231,7 +231,20 @@ namespace HISP.Game
|
|||
public static string PlayerListMapAllBuddiesForamt;
|
||||
public static string PlayerListMapAllPlayersFormat;
|
||||
public static string PlayerListAbuseReport;
|
||||
|
||||
|
||||
public static int ThreeMonthSubscripitionIcon;
|
||||
public static int YearSubscriptionIcon;
|
||||
public static int NewUserIcon;
|
||||
public static int MonthSubscriptionIcon;
|
||||
public static int AdminIcon;
|
||||
public static int ModeratorIcon;
|
||||
|
||||
public static string BuddyListHeader;
|
||||
public static string BuddyListOnlineBuddyEntryFormat;
|
||||
public static string BuddyListOfflineBuddys;
|
||||
public static string BuddyListOfflineBuddyEntryFormat;
|
||||
|
||||
public static string PlayerListIconInformation;
|
||||
|
||||
// Meta
|
||||
public static string IsleFormat;
|
||||
|
@ -267,6 +280,15 @@ namespace HISP.Game
|
|||
// Click
|
||||
public static string NothingInterestingHere;
|
||||
|
||||
public static string FormatOnlineBuddyEntry(int iconId, string username, int userId, int time, int x, int y)
|
||||
{
|
||||
string xy = FormatMapLocation(x, y);
|
||||
return BuddyListOnlineBuddyEntryFormat.Replace("%ICON%", iconId.ToString()).Replace("%USERNAME%", username).Replace("%TIME%", time.ToString("N0")).Replace("%PLAYERID%", userId.ToString()).Replace("%MAPXY%", xy);
|
||||
}
|
||||
public static string FormatOfflineBuddyEntry(string username, int userId, int time)
|
||||
{
|
||||
return BuddyListOfflineBuddyEntryFormat.Replace("%USERNAME%", username).Replace("%TIME%", time.ToString("N0")).Replace("%PLAYERID%", userId.ToString());
|
||||
}
|
||||
public static string FormatConsumeItemMessaege(string itemName)
|
||||
{
|
||||
return ConsumeItemFormat.Replace("%ITEM%", itemName);
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
using HISP.Player;
|
||||
using HISP.Server;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace HISP.Game
|
||||
{
|
||||
|
@ -407,6 +408,21 @@ namespace HISP.Game
|
|||
return message;
|
||||
}
|
||||
|
||||
|
||||
public static string BuildBuddyList(User user)
|
||||
{
|
||||
string message = Messages.BuddyListHeader;
|
||||
foreach(int id in user.Friends.List.ToArray())
|
||||
{
|
||||
try
|
||||
{
|
||||
User friend = GameServer.GetUserById(id);
|
||||
message += Messages.FormatOnlineBuddyEntry()
|
||||
}
|
||||
catch (KeyNotFoundException) { };
|
||||
}
|
||||
}
|
||||
|
||||
public static string BuildSpecialTileInfo(User user, World.SpecialTile specialTile)
|
||||
{
|
||||
string message = "";
|
||||
|
|
|
@ -29,7 +29,22 @@ namespace HISP.Player
|
|||
|
||||
}
|
||||
|
||||
|
||||
public void RemoveFriend(int userid)
|
||||
{
|
||||
Database.RemoveBuddy(baseUser.Id, userid);
|
||||
|
||||
// Remove buddy from there list if they are logged in
|
||||
try
|
||||
{
|
||||
|
||||
User removeFrom = GameServer.GetUserById(userid);
|
||||
removeFrom.Friends.List.Remove(baseUser.Id);
|
||||
}
|
||||
catch (KeyNotFoundException) { /* User is ofline, remove from database is sufficent */ };
|
||||
|
||||
|
||||
baseUser.Friends.List.Remove(userid);
|
||||
}
|
||||
public void AddFriend(User userToFriend)
|
||||
{
|
||||
bool pendingRequest = Database.IsPendingBuddyRequestExist(baseUser.Id, userToFriend.Id);
|
||||
|
|
|
@ -41,6 +41,7 @@ namespace HISP.Player
|
|||
public PlayerQuests Quests;
|
||||
public Highscore Highscores;
|
||||
public Award Awards;
|
||||
public DateTime LoginTime;
|
||||
public int FreeMinutes
|
||||
{
|
||||
get
|
||||
|
@ -387,11 +388,9 @@ namespace HISP.Player
|
|||
|
||||
|
||||
Friends = new Friends(this);
|
||||
|
||||
LoginTime = DateTime.UtcNow;
|
||||
LoggedinClient = baseClient;
|
||||
|
||||
Inventory = new PlayerInventory(this);
|
||||
|
||||
Quests = new PlayerQuests(this);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -562,7 +562,19 @@ namespace HISP.Server
|
|||
Messages.PlayerListMapAllPlayersFormat = gameData.messages.meta.player_list.map_all_players_format;
|
||||
Messages.PlayerListAbuseReport = gameData.messages.meta.player_list.abuse_report;
|
||||
|
||||
Messages.ThreeMonthSubscripitionIcon = gameData.messages.meta.player_list.icon_subbed_3month;
|
||||
Messages.YearSubscriptionIcon = gameData.messages.meta.player_list.icon_subbed_year;
|
||||
Messages.NewUserIcon = gameData.messages.meta.player_list.icon_new;
|
||||
Messages.MonthSubscriptionIcon = gameData.messages.meta.player_list.icon_subbed_month;
|
||||
Messages.AdminIcon = gameData.messages.meta.player_list.icon_admin;
|
||||
Messages.ModeratorIcon = gameData.messages.meta.player_list.icon_mod;
|
||||
|
||||
Messages.BuddyListHeader = gameData.messages.meta.player_list.online_buddy_header;
|
||||
Messages.BuddyListOnlineBuddyEntryFormat = gameData.messages.meta.player_list.online_buddy_format;
|
||||
Messages.BuddyListOfflineBuddys = gameData.messages.meta.offline_buddys;
|
||||
Messages.BuddyListOfflineBuddyEntryFormat = gameData.messages.player_list.offline_buddy_format;
|
||||
|
||||
Messages.PlayerListIconInformation = gameData.messages.player_list.icon_info;
|
||||
// Consume
|
||||
|
||||
Messages.ConsumeItemFormat = gameData.messages.consume.consumed_item_format;
|
||||
|
|
|
@ -1972,6 +1972,18 @@ namespace HISP.Server
|
|||
}
|
||||
throw new KeyNotFoundException("User was not found.");
|
||||
}
|
||||
|
||||
public static User GetUserById(int id)
|
||||
{
|
||||
foreach(GameClient client in ConnectedClients)
|
||||
{
|
||||
if (client.LoggedIn)
|
||||
if (client.LoggedinUser.Id == id)
|
||||
return client.LoggedinUser;
|
||||
}
|
||||
|
||||
throw new KeyNotFoundException("User not found (not online?)");
|
||||
}
|
||||
public static User[] GetNearbyUsers(int x, int y, bool includeStealth=false, bool includeMuted=false)
|
||||
{
|
||||
int startX = x - 15;
|
||||
|
|
300
WebInterface/master-site/account.php@CONNECT=pinto
Normal file
|
@ -0,0 +1,300 @@
|
|||
<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>
|
||||
|
BIN
WebInterface/master-site/fanart/Appypower-Brown.jpg
Normal file
After Width: | Height: | Size: 98 KiB |
BIN
WebInterface/master-site/fanart/PaintNani-Grey.jpg
Normal file
After Width: | Height: | Size: 78 KiB |
1
WebInterface/master-site/fanart/index.html
Normal file
|
@ -0,0 +1 @@
|
|||
<BODY BGCOLOR=B0B0B0><FONT FACE=ARIAL><CENTER><HR>Horse Isle: Secret Land of Horses fan art submission winners! The following are in no particular order whatsoever.<BR>We also added some corney blurbage to the top of each work. Feel free to ignore that :) -- Enjoy!<HR><B>[<A HREF='/'>HOME</A>]</B> <B>[<A HREF='?I=1'>NEXT</A>]</B> <BR>(1 of 69) Player: Appypower Main Server: Brown.<BR><FONT SIZE=+1><B><I>Modeled Logo!</I></B></FONT><BR><IMG BORDER=1 SRC=Appypower-Brown.jpg><BR><FONT SIZE=-2>Copyright © 2009 HorseIsle and the respective artist of each work.
|
1
WebInterface/master-site/fanart/index.html@I=0
Normal file
|
@ -0,0 +1 @@
|
|||
<BODY BGCOLOR=B0B0B0><FONT FACE=ARIAL><CENTER><HR>Horse Isle: Secret Land of Horses fan art submission winners! The following are in no particular order whatsoever.<BR>We also added some corney blurbage to the top of each work. Feel free to ignore that :) -- Enjoy!<HR><B>[<A HREF='/'>HOME</A>]</B> <B>[<A HREF='?I=1'>NEXT</A>]</B> <BR>(1 of 69) Player: Appypower Main Server: Brown.<BR><FONT SIZE=+1><B><I>Modeled Logo!</I></B></FONT><BR><IMG BORDER=1 SRC=Appypower-Brown.jpg><BR><FONT SIZE=-2>Copyright © 2009 HorseIsle and the respective artist of each work.
|
1
WebInterface/master-site/fanart/index.html@I=1
Normal file
|
@ -0,0 +1 @@
|
|||
<BODY BGCOLOR=B0B0B0><FONT FACE=ARIAL><CENTER><B>[<A HREF='?I=0'>BACK</A>]</B> <B>[<A HREF='/'>HOME</A>]</B> <B>[<A HREF='?I=2'>NEXT</A>]</B> <BR>(2 of 69) Player: PaintNani Main Server: Grey.<BR><FONT SIZE=+1><B><I>Oooompa! That's some hair.</I></B></FONT><BR><IMG BORDER=1 SRC=PaintNani-Grey.jpg><BR><FONT SIZE=-2>Copyright © 2009 HorseIsle and the respective artist of each work.
|
1
WebInterface/master-site/fanart/index.html@I=2
Normal file
|
@ -0,0 +1 @@
|
|||
<BODY BGCOLOR=B0B0B0><FONT FACE=ARIAL><CENTER><B>[<A HREF='?I=1'>BACK</A>]</B> <B>[<A HREF='/'>HOME</A>]</B> <B>[<A HREF='?I=3'>NEXT</A>]</B> <BR>(3 of 69) Player: AeroZaine Main Server: White.<BR><FONT SIZE=+1><B><I>I feel a sunburn coming on... </I></B></FONT><BR><IMG BORDER=1 SRC=AeroZaine-White.jpg><BR><FONT SIZE=-2>Copyright © 2009 HorseIsle and the respective artist of each work.
|
228
WebInterface/master-site/index.html@LOGOUT=1
Normal file
|
@ -0,0 +1,228 @@
|
|||
<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>
|
||||
|
300
WebInterface/master-site/joinserver.php@SERVER=bay
Normal file
|
@ -0,0 +1,300 @@
|
|||
<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>
|
||||
|
300
WebInterface/master-site/joinserver.php@SERVER=black
Normal file
|
@ -0,0 +1,300 @@
|
|||
<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>
|
||||
|
300
WebInterface/master-site/joinserver.php@SERVER=brown
Normal file
|
@ -0,0 +1,300 @@
|
|||
<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>
|
||||
|
300
WebInterface/master-site/joinserver.php@SERVER=chestnut
Normal file
|
@ -0,0 +1,300 @@
|
|||
<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>
|
||||
|
300
WebInterface/master-site/joinserver.php@SERVER=cremello
Normal file
|
@ -0,0 +1,300 @@
|
|||
<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>
|
||||
|
300
WebInterface/master-site/joinserver.php@SERVER=dun
Normal file
|
@ -0,0 +1,300 @@
|
|||
<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>
|
||||
|
300
WebInterface/master-site/joinserver.php@SERVER=grey
Normal file
|
@ -0,0 +1,300 @@
|
|||
<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>
|
||||
|
300
WebInterface/master-site/joinserver.php@SERVER=palomino
Normal file
|
@ -0,0 +1,300 @@
|
|||
<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>
|
||||
|
300
WebInterface/master-site/joinserver.php@SERVER=roan
Normal file
|
@ -0,0 +1,300 @@
|
|||
<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>
|
||||
|
300
WebInterface/master-site/joinserver.php@SERVER=white
Normal file
|
@ -0,0 +1,300 @@
|
|||
<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>
|
||||
|
BIN
WebInterface/master-site/web/but-forums.gif
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
WebInterface/master-site/web/but-helpcenter.gif
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
WebInterface/master-site/web/but-logout.gif
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
WebInterface/master-site/web/but-mainpage.gif
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
WebInterface/master-site/web/but-news.gif
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
WebInterface/master-site/web/but-serverlist.gif
Normal file
After Width: | Height: | Size: 1.3 KiB |
134
WebInterface/master-site/web/forums.php
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><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>
|
134
WebInterface/master-site/web/forums.php@
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=BUGS
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING BUGS FORUM</B> current server time: Dec 29 1:01am<BR><TABLE WIDTH=100%><TR><TH>TOPIC</TH><TH>POSTS</TH><TH>ORIGINAL POST</TH></TR><TR class=a1><TD class=forum><A HREF="?FORUM=BUGS&VIEWID=98478">Hi 1 if old flash is the bug</A></TD><TD class=forum><B>2</B> (last by <B><FONT COLOR=333399>DesertPaint</FONT></B> 39 days ago)</TD><TD class=forum>Nov 19 7:32pm by <B><FONT COLOR=333399>GingerCurtau</FONT></B></TD></TR><TR class=a0><TD class=forum><A HREF="?FORUM=BUGS&VIEWID=98449">Rafiki's Horrible, Terrible, Muddy Secret</A></TD><TD class=forum><B>5</B> (last by <B><FONT COLOR=333399>Cavallino</FONT></B> 100 days ago)</TD><TD class=forum>Jul 2 9:08pm by <B><FONT COLOR=333399>LittleGoldHorse</FONT></B></TD></TR><TR class=a1><TD class=forum><A HREF="?FORUM=BUGS&VIEWID=98457">Kier and the Lovesick Frog</A></TD><TD class=forum><B>2</B> (last by <B><FONT COLOR=333399>DesertPaint</FONT></B> 115 days ago)</TD><TD class=forum>Sep 4 10:52pm by <B><FONT COLOR=333399>Spudnick</FONT></B></TD></TR><TR class=a0><TD class=forum><A HREF="?FORUM=BUGS&VIEWID=98451">Appleton Riddles</A></TD><TD class=forum><B>4</B> (last by <B><FONT COLOR=333399>DesertPaint</FONT></B> 147 days ago)</TD><TD class=forum>Jul 5 9:32pm by <B><FONT COLOR=333399>Flame</FONT></B></TD></TR><TR class=a1><TD class=forum><A HREF="?FORUM=BUGS&VIEWID=98445">Competition Times</A></TD><TD class=forum><B>2</B> (last by <B><FONT COLOR=333399>Smaug</FONT></B> 181 days ago)</TD><TD class=forum>Jun 30 3:53am by <B><FONT COLOR=333399>SensationalCat</FONT></B></TD></TR><TR class=a0><TD class=forum><A HREF="?FORUM=BUGS&VIEWID=98426">QP Award Rewards</A></TD><TD class=forum><B>1</B> (last by <B><FONT COLOR=333399>Lief</FONT></B> 237 days ago)</TD><TD class=forum>May 5 11:57pm by <B><FONT COLOR=333399>Lief</FONT></B></TD></TR><TR class=a1><TD class=forum><A HREF="?FORUM=BUGS&VIEWID=98421">Loyada's Necklace</A></TD><TD class=forum><B>3</B> (last by <B><FONT COLOR=333399>EquusKay</FONT></B> 242 days ago)</TD><TD class=forum>Apr 29 7:54am by <B><FONT COLOR=333399>Coelacanth</FONT></B></TD></TR><TR class=a0><TD class=forum><A HREF="?FORUM=BUGS&VIEWID=98409">Not receiving the cash advance that windmills are suppose to give</A></TD><TD class=forum><B>2</B> (last by <B><FONT COLOR=333399>LucyPennykettle</FONT></B> 264 days ago)</TD><TD class=forum>Mar 31 1:41am by <B><FONT COLOR=333399>MightyHorse</FONT></B></TD></TR><TR class=a1><TD class=forum><A HREF="?FORUM=BUGS&VIEWID=98331">Farley's Extreme Makeover sage glitch</A></TD><TD class=forum><B>4</B> (last by <B><FONT COLOR=333399>Miranda</FONT></B> 612 days ago)</TD><TD class=forum>Dec 23 6:54pm by <B><FONT COLOR=333399>Aspen</FONT></B></TD></TR><TR class=a0><TD class=forum><A HREF="?FORUM=BUGS&VIEWID=98257">Error in Automatic Login Authentication!</A></TD><TD class=forum><B>8</B> (last by <B><FONT COLOR=333399>CookieDough</FONT></B> 976 days ago)</TD><TD class=forum>Apr 26 3:28pm by <B><FONT COLOR=333399>Manta</FONT></B></TD></TR><TR class=a1><TD class=forum><A HREF="?FORUM=BUGS&VIEWID=98156">Can't see what characters say?</A></TD><TD class=forum><B>5</B> (last by <B><FONT COLOR=333399>Miranda</FONT></B> 1003 days ago)</TD><TD class=forum>Sep 21 4:00pm by <B><FONT COLOR=333399>SaddlebredShow</FONT></B></TD></TR><TR class=a0><TD class=forum><A HREF="?FORUM=BUGS&VIEWID=98001">Flash crashing problems?</A></TD><TD class=forum><B>1</B> (last by <B><FONT COLOR=333399>DesertPaint</FONT></B> 1376 days ago)</TD><TD class=forum>Mar 24 12:27pm by <B><FONT COLOR=333399>DesertPaint</FONT></B></TD></TR><TR class=a1><TD class=forum><A HREF="?FORUM=BUGS&VIEWID=97939">Awards</A></TD><TD class=forum><B>2</B> (last by <B><FONT COLOR=333399>Miranda</FONT></B> 1417 days ago)</TD><TD class=forum>Dec 20 10:23pm by <B><FONT COLOR=333399>SilverBeauty</FONT></B></TD></TR><TR class=a0><TD class=forum><A HREF="?FORUM=BUGS&VIEWID=2">Welcome to BUGS forum.</A> [lock]</TD><TD class=forum><B>1</B> (last by <B><FONT COLOR=333399>Joe</FONT></B> 4988 days ago)</TD><TD class=forum>May 3 6:00pm by <B><FONT COLOR=333399>Joe</FONT></B></TD></TR></TABLE><HR><FORM METHOD=POST>Add a post to this forum: SUBJECT:<INPUT TYPE=TEXT NAME=SUBJECT SIZE=30><BR><TEXTAREA NAME=TEXT ROWS=4 COLS=60></TEXTAREA><BR><INPUT TYPE=SUBMIT VALUE='ADD TOPIC'><INPUT TYPE=HIDDEN NAME=FORUM VALUE='BUGS'></FORM>[ <A HREF=?>CLOSE FORUMS</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=BUGS&VIEWID=2
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING BUGS FORUM THREAD: <FONT SIZE=+1>Welcome to BUGS forum.</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>Welcome to BUGS forum.</FORUMSUBJECT> <FORUMUSER>(by Joe)</FORUMUSER> <FORUMDATE>May 3 2007 6:00pm</FORUMDATE><BR><FORUMTEXT>Please post any bugs you find in the game here.</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=BUGS'>GO BACK TO BUGS FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=BUGS&VIEWID=97939
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING BUGS FORUM THREAD: <FONT SIZE=+1>Awards</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by SilverBeauty)</FORUMUSER> <FORUMDATE>Dec 20 2016 10:23pm</FORUMDATE><BR><FORUMTEXT>Hi!
<BR>
<BR>I got the perseverance award (You have earned the Perseverance Award! $75,000 Bonus!) just now and got the 75k bonus that comes along with it.
<BR>However I was just looking through my awards and I noticed that the actual award still says it has a 15k bonus.
<BR>I know that the bonuses were changed to reflect our economy so I was just wondering if they were going to be changed in our awards lists (and I'm assuming the library? I forgot to check before I logged off) to show the new amount.
<BR>
<BR>Thanks,
<BR>SilverBeauty - Cremello</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Miranda)</FORUMUSER> <FORUMDATE>Feb 10 2017 2:15pm</FORUMDATE><BR><FORUMTEXT>It's multiplying off that number, so we can't change it on there without then removing the multiplier. We put in the multiplier instead so we wouldn't have to manually tweak all the values. :)</FORUMTEXT></TD></TR></TABLE><HR><FORM METHOD=POST>Add a reply to this topic:<BR><TABLE><TR><TD><TEXTAREA NAME=TEXT ROWS=4 COLS=60></TEXTAREA></TD><TD><INPUT TYPE=SUBMIT VALUE='ADD REPLY'></TD></TR></TABLE><BR><INPUT TYPE=HIDDEN NAME=SUBJECT VALUE='NOT NEEDED'><INPUT TYPE=HIDDEN NAME=FORUM VALUE='BUGS'><INPUT TYPE=HIDDEN NAME=VIEWID VALUE='97939'></FORM>[ <A HREF='?FORUM=BUGS'>GO BACK TO BUGS FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=BUGS&VIEWID=98001
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING BUGS FORUM THREAD: <FONT SIZE=+1>Flash crashing problems?</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Mar 24 2017 12:27pm</FORUMDATE><BR><FORUMTEXT>Please update to Adobe Flash Version 25.
<BR>
<BR>Version 24 crashes frequently, 25 works well. :)
<BR>
<BR>You can Google Adobe Flash update and get the link.
<BR>
<BR>Or the following without the spaces. (Yes, I know I have avoided the filter.) *laughing out loud!*
<BR>
<BR>h t t p s :// get . adobe . com / flashplayer/</FORUMTEXT></TD></TR></TABLE><HR><FORM METHOD=POST>Add a reply to this topic:<BR><TABLE><TR><TD><TEXTAREA NAME=TEXT ROWS=4 COLS=60></TEXTAREA></TD><TD><INPUT TYPE=SUBMIT VALUE='ADD REPLY'></TD></TR></TABLE><BR><INPUT TYPE=HIDDEN NAME=SUBJECT VALUE='NOT NEEDED'><INPUT TYPE=HIDDEN NAME=FORUM VALUE='BUGS'><INPUT TYPE=HIDDEN NAME=VIEWID VALUE='98001'></FORM>[ <A HREF='?FORUM=BUGS'>GO BACK TO BUGS FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=BUGS&VIEWID=98156
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING BUGS FORUM THREAD: <FONT SIZE=+1>Can't see what characters say?</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by SaddlebredShow)</FORUMUSER> <FORUMDATE>Sep 21 2017 4:00pm</FORUMDATE><BR><FORUMTEXT>Whenever I try to talk to a non-player character I can not see what they're saying. All of my responses I can choose from are all listed but I just can't see anything they are saying. I've cleared my cookies/cache thing and I use google chrome as my browser. This has been going on since I re-joined about a week ago. Is there anything else I can do that will fix this?</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Pathfinder)</FORUMUSER> <FORUMDATE>Sep 22 2017 9:06am</FORUMDATE><BR><FORUMTEXT>Put your mouse on where the chat should be, and scroll up or down. It works for me. :)</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Mouse)</FORUMUSER> <FORUMDATE>Sep 23 2017 8:54pm</FORUMDATE><BR><FORUMTEXT>You can try zooming in or out, or highlighting their text.
<BR> Once you highlight the "missing" text, you'll be able to read it. I've been having this problem for a long time, not sure why it started doing this, but it'd be cool if it sometime got fixed.</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Kagomo)</FORUMUSER> <FORUMDATE>Sep 25 2017 9:58pm</FORUMDATE><BR><FORUMTEXT>I had the same problem when I went into Witherton to get the Saddle Isle bridge password from that girl! Needless to say it didn't help much. XD I have not tried the little tricks to get around this yet though, I'll have to do that and see if it works!</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Miranda)</FORUMUSER> <FORUMDATE>Mar 31 2018 4:08pm</FORUMDATE><BR><FORUMTEXT>This seems to be attached to the browser you're using as well as if you're zoomed in or not. It's not something we can 'fix' because it's not an overall glitch. It's how Flash and the text is cooperating with the zoom level of your browser.
<BR>
<BR>So, if you run into this, I recommend changing the zoom of the game (on a Windows machine, go back to the website, hold Ctrl and scroll your mouse wheel or push + or -). If that doesn't help, I recommend trying a different browser to see if that one behaves better.</FORUMTEXT></TD></TR></TABLE><HR><FORM METHOD=POST>Add a reply to this topic:<BR><TABLE><TR><TD><TEXTAREA NAME=TEXT ROWS=4 COLS=60></TEXTAREA></TD><TD><INPUT TYPE=SUBMIT VALUE='ADD REPLY'></TD></TR></TABLE><BR><INPUT TYPE=HIDDEN NAME=SUBJECT VALUE='NOT NEEDED'><INPUT TYPE=HIDDEN NAME=FORUM VALUE='BUGS'><INPUT TYPE=HIDDEN NAME=VIEWID VALUE='98156'></FORM>[ <A HREF='?FORUM=BUGS'>GO BACK TO BUGS FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=BUGS&VIEWID=98257
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING BUGS FORUM THREAD: <FONT SIZE=+1>Error in Automatic Login Authentication!</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Manta)</FORUMUSER> <FORUMDATE>Apr 26 2018 3:28pm</FORUMDATE><BR><FORUMTEXT>I can log in fine, but when I click the server choices it logs me back out. Same if I try to go to the forums. I then have to log in again.</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Indesii)</FORUMUSER> <FORUMDATE>Apr 26 2018 4:31pm</FORUMDATE><BR><FORUMTEXT>This is happening to me also, since just after the server maintenance update.</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Apr 26 2018 8:28pm</FORUMDATE><BR><FORUMTEXT>Can you get on or is this blocking your ability to log in?
<BR>
<BR>What browser are you using?</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Indesii)</FORUMUSER> <FORUMDATE>Apr 26 2018 9:17pm</FORUMDATE><BR><FORUMTEXT>Not sure about Manta, but it lets me log in, I just have to keep re-logging in every time I click through to a new page. Log in - to forums - log in again - to the game forum - log in again - to the server list - log in again. I'm on Chrome.</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Apr 27 2018 12:21pm</FORUMDATE><BR><FORUMTEXT>Thanks, I'll pass this on to Miranda. I'm on Chrome and I'm not having that problem though.
<BR>
<BR>Hopefully she can fix it. :)</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Apr 27 2018 1:21pm</FORUMDATE><BR><FORUMTEXT>It's a privacy setting, change in privacy settings. The browser isn't saving the games cookies (data game stuff only cookies.) These keep you logged in between the web pages.
<BR>
<BR>Check your privacy settings on Chrome. You need to allow sites to save and read cookie data turned on.
<BR>
<BR>HI Cookies are not tracking cookies, they are just game data info to help you play the game and move from web page to web page.</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Indesii)</FORUMUSER> <FORUMDATE>Apr 28 2018 7:19am</FORUMDATE><BR><FORUMTEXT>Unfortunately it still does it for me! I can log into everything fine from mobile Chrome, so maybe it's an issue with my laptop. Not sure about Manta. Thank you though. I appreciate the help! I'll just log into the server through the direct link for now. :'D</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by CookieDough)</FORUMUSER> <FORUMDATE>Apr 28 2018 8:17am</FORUMDATE><BR><FORUMTEXT>I've been having the same problem if I log in from Firefox or mobile Puffin. I'll try changing the privacy settings.</FORUMTEXT></TD></TR></TABLE><HR><FORM METHOD=POST>Add a reply to this topic:<BR><TABLE><TR><TD><TEXTAREA NAME=TEXT ROWS=4 COLS=60></TEXTAREA></TD><TD><INPUT TYPE=SUBMIT VALUE='ADD REPLY'></TD></TR></TABLE><BR><INPUT TYPE=HIDDEN NAME=SUBJECT VALUE='NOT NEEDED'><INPUT TYPE=HIDDEN NAME=FORUM VALUE='BUGS'><INPUT TYPE=HIDDEN NAME=VIEWID VALUE='98257'></FORM>[ <A HREF='?FORUM=BUGS'>GO BACK TO BUGS FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=BUGS&VIEWID=98331
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING BUGS FORUM THREAD: <FONT SIZE=+1>Farley's Extreme Makeover sage glitch</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Aspen)</FORUMUSER> <FORUMDATE>Dec 23 2018 6:54pm</FORUMDATE><BR><FORUMTEXT>During Farley's Extreme Makeover, when you're raking in bushes looking for sage, you get the "You rake all over, but uncover nothing interesting" message in addition to the message telling you you found some sage.</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Miranda)</FORUMUSER> <FORUMDATE>Dec 24 2018 12:25pm</FORUMDATE><BR><FORUMTEXT>Could you let me know which location?</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Aspen)</FORUMUSER> <FORUMDATE>Dec 24 2018 12:49pm</FORUMDATE><BR><FORUMTEXT>This happens every time that you rake for sage and find a clump of it. It would be on the 2nd and 3rd Sand Isles, Dust Isle, and near Santon and Sandy Meadows, in the bushes of sage. There are 12 in total. As a follow-up, today I did the cowboy boots quest from Pirate Isle (forget the name) before the game update and did not have this issue with that quest, so it might be limited to just Farley's Extreme Makeover.</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Miranda)</FORUMUSER> <FORUMDATE>Apr 27 2019 1:52pm</FORUMDATE><BR><FORUMTEXT>It looks like those same sage plants are used for two different quests. Because of how our quest writing system is set up, I can't see a way to make it so that you don't end up getting that double message.
<BR>Sorry</FORUMTEXT></TD></TR></TABLE><HR><FORM METHOD=POST>Add a reply to this topic:<BR><TABLE><TR><TD><TEXTAREA NAME=TEXT ROWS=4 COLS=60></TEXTAREA></TD><TD><INPUT TYPE=SUBMIT VALUE='ADD REPLY'></TD></TR></TABLE><BR><INPUT TYPE=HIDDEN NAME=SUBJECT VALUE='NOT NEEDED'><INPUT TYPE=HIDDEN NAME=FORUM VALUE='BUGS'><INPUT TYPE=HIDDEN NAME=VIEWID VALUE='98331'></FORM>[ <A HREF='?FORUM=BUGS'>GO BACK TO BUGS FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=BUGS&VIEWID=98409
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING BUGS FORUM THREAD: <FONT SIZE=+1>Not receiving the cash advance that windmills are suppose to give</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by MightyHorse)</FORUMUSER> <FORUMDATE>Mar 31 2020 1:41am</FORUMDATE><BR><FORUMTEXT>I make about 35,000 from my windmills and have been off for at least 24hours and it is not adding the amount i enough from them to my interest?? Is it just mine or what?
<BR>[chestnut server]</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by LucyPennykettle)</FORUMUSER> <FORUMDATE>Apr 9 2020 12:31pm</FORUMDATE><BR><FORUMTEXT>I'm not sure if you mean you expect it to show when you go to the bank, but Windmill money goes into your cash on hand, and then you can deposit it and it will earn interest.</FORUMTEXT></TD></TR></TABLE><HR><FORM METHOD=POST>Add a reply to this topic:<BR><TABLE><TR><TD><TEXTAREA NAME=TEXT ROWS=4 COLS=60></TEXTAREA></TD><TD><INPUT TYPE=SUBMIT VALUE='ADD REPLY'></TD></TR></TABLE><BR><INPUT TYPE=HIDDEN NAME=SUBJECT VALUE='NOT NEEDED'><INPUT TYPE=HIDDEN NAME=FORUM VALUE='BUGS'><INPUT TYPE=HIDDEN NAME=VIEWID VALUE='98409'></FORM>[ <A HREF='?FORUM=BUGS'>GO BACK TO BUGS FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=BUGS&VIEWID=98421
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING BUGS FORUM THREAD: <FONT SIZE=+1>Loyada's Necklace</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Coelacanth)</FORUMUSER> <FORUMDATE>Apr 29 2020 7:54am</FORUMDATE><BR><FORUMTEXT>seems to be a bug with this quest. Loyada instructs to speak to Nolan, but when you go to speak with Nolan, there are no prompts for this quest.</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by EquusKay)</FORUMUSER> <FORUMDATE>Apr 30 2020 4:25pm</FORUMDATE><BR><FORUMTEXT>Hey Coelacanth,
<BR>
<BR>I just ran into and thought I had the same problem - it turns out you just need to talk to Fin first and find his anchor. Once you do that Nolan will should to you :)</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by EquusKay)</FORUMUSER> <FORUMDATE>Apr 30 2020 4:26pm</FORUMDATE><BR><FORUMTEXT>should talk to you* xD</FORUMTEXT></TD></TR></TABLE><HR><FORM METHOD=POST>Add a reply to this topic:<BR><TABLE><TR><TD><TEXTAREA NAME=TEXT ROWS=4 COLS=60></TEXTAREA></TD><TD><INPUT TYPE=SUBMIT VALUE='ADD REPLY'></TD></TR></TABLE><BR><INPUT TYPE=HIDDEN NAME=SUBJECT VALUE='NOT NEEDED'><INPUT TYPE=HIDDEN NAME=FORUM VALUE='BUGS'><INPUT TYPE=HIDDEN NAME=VIEWID VALUE='98421'></FORM>[ <A HREF='?FORUM=BUGS'>GO BACK TO BUGS FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=BUGS&VIEWID=98426
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING BUGS FORUM THREAD: <FONT SIZE=+1>QP Award Rewards</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Lief)</FORUMUSER> <FORUMDATE>May 5 2020 11:57pm</FORUMDATE><BR><FORUMTEXT>Not major but I just happened to notice today that on the awards page on our profiles, next to each QP award it still has the old cash reward listed (20k for 25%, 50k for 50%, 80k for 75%) instead of the updated rewards.</FORUMTEXT></TD></TR></TABLE><HR><FORM METHOD=POST>Add a reply to this topic:<BR><TABLE><TR><TD><TEXTAREA NAME=TEXT ROWS=4 COLS=60></TEXTAREA></TD><TD><INPUT TYPE=SUBMIT VALUE='ADD REPLY'></TD></TR></TABLE><BR><INPUT TYPE=HIDDEN NAME=SUBJECT VALUE='NOT NEEDED'><INPUT TYPE=HIDDEN NAME=FORUM VALUE='BUGS'><INPUT TYPE=HIDDEN NAME=VIEWID VALUE='98426'></FORM>[ <A HREF='?FORUM=BUGS'>GO BACK TO BUGS FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=BUGS&VIEWID=98445
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING BUGS FORUM THREAD: <FONT SIZE=+1>Competition Times</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by SensationalCat)</FORUMUSER> <FORUMDATE>Jun 30 2020 3:53am</FORUMDATE><BR><FORUMTEXT>Not sure if this is a bug or not but will add it here.
<BR>
<BR>Since the major hack a week ago when Joe/Miranda had to reset the server, I've realised that competitions such as esj no longer start at :00 or :05. For example, I would tab out to check other websites and know to tab back in at :44 because it would begin at :45.
<BR>
<BR>Now, it seems that top of the hour in game is more like :43 rather than :40, or :48 rather than :45, and so forth.
<BR>
<BR>A buddy also pointed out that the Cremello competition times/top of the hour used to occur before Pinto (thus making it easy for players to finish a comp on Crem and start the Pinto one). However now they're both on the same time, making me think that only Pinto was rolled back?
<BR>
<BR>Is this a bug though, and if so is it fixable? It's not a huge bother, just something I noticed whilst tabbed out today.
<BR>
<BR>- SensationalCat</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Smaug)</FORUMUSER> <FORUMDATE>Jun 30 2020 7:51pm</FORUMDATE><BR><FORUMTEXT>Another thing to add, simple jump won't load until :03-:05 sometimes and instantly reverts back to :00 once started... very weird</FORUMTEXT></TD></TR></TABLE><HR><FORM METHOD=POST>Add a reply to this topic:<BR><TABLE><TR><TD><TEXTAREA NAME=TEXT ROWS=4 COLS=60></TEXTAREA></TD><TD><INPUT TYPE=SUBMIT VALUE='ADD REPLY'></TD></TR></TABLE><BR><INPUT TYPE=HIDDEN NAME=SUBJECT VALUE='NOT NEEDED'><INPUT TYPE=HIDDEN NAME=FORUM VALUE='BUGS'><INPUT TYPE=HIDDEN NAME=VIEWID VALUE='98445'></FORM>[ <A HREF='?FORUM=BUGS'>GO BACK TO BUGS FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=BUGS&VIEWID=98449
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING BUGS FORUM THREAD: <FONT SIZE=+1>Rafiki's Horrible, Terrible, Muddy Secret</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by LittleGoldHorse)</FORUMUSER> <FORUMDATE>Jul 2 2020 9:08pm</FORUMDATE><BR><FORUMTEXT>When you get to Cabin isle, a message pops up in your right chat saying something along the lines of "you found purple scrap buried under the log/you better dig it out!"
<BR>But when you dig the log to the left of where you're standing, nothing happens. I tried digging all around it too, and still nothing. A couple players helped me and neither of them could figure it out either. I believe there is some bug?</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by SensationalCat)</FORUMUSER> <FORUMDATE>Jul 2 2020 10:19pm</FORUMDATE><BR><FORUMTEXT>I was actually on while you were struggling with this and I half-remembered what to do but I was so clocked out I couldn't remember at the time then, sorry hahaha.
<BR>
<BR>But have you tried digging on top of the tree stump/log? And digging where you first found the message?
<BR>
<BR>This quest does work, but this step always bugs players and I do remember it works but can't remember exactly how at the moment!</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by LittleGoldHorse)</FORUMUSER> <FORUMDATE>Jul 3 2020 2:20pm</FORUMDATE><BR><FORUMTEXT>I tried digging around the stump & log, all around the mud hole and dead tree, even tried raking and checked out other stumps on the isle. Couldn't figure it out!
<BR></FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Jul 3 2020 3:31pm</FORUMDATE><BR><FORUMTEXT>Make sure you are at the correct location. For the dead trees, they aren't involved with a mud hole. You are just dealing with a side of the dead tree. :)
<BR>
<BR></FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Cavallino)</FORUMUSER> <FORUMDATE>Sep 19 2020 8:05pm</FORUMDATE><BR><FORUMTEXT>I spent such a long time with the same problem! After I get to cabin and take a step left to the fallen tree and dig, nothing happens. I dug/searched/raked all over cabin and to no avail.</FORUMTEXT></TD></TR></TABLE><HR><FORM METHOD=POST>Add a reply to this topic:<BR><TABLE><TR><TD><TEXTAREA NAME=TEXT ROWS=4 COLS=60></TEXTAREA></TD><TD><INPUT TYPE=SUBMIT VALUE='ADD REPLY'></TD></TR></TABLE><BR><INPUT TYPE=HIDDEN NAME=SUBJECT VALUE='NOT NEEDED'><INPUT TYPE=HIDDEN NAME=FORUM VALUE='BUGS'><INPUT TYPE=HIDDEN NAME=VIEWID VALUE='98449'></FORM>[ <A HREF='?FORUM=BUGS'>GO BACK TO BUGS FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=BUGS&VIEWID=98451
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING BUGS FORUM THREAD: <FONT SIZE=+1>Appleton Riddles</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Flame)</FORUMUSER> <FORUMDATE>Jul 5 2020 9:32pm</FORUMDATE><BR><FORUMTEXT>Half of them are not displaying</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Jul 6 2020 12:06pm</FORUMDATE><BR><FORUMTEXT>Log off clear cache: Ctrl + Shift + Del for Windows.
<BR>
<BR>Then log back on, see if that helps.
<BR>
<BR>You may need to log off frequently to clear out the buffer if you have lag.
<BR></FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Flame)</FORUMUSER> <FORUMDATE>Aug 3 2020 8:08pm</FORUMDATE><BR><FORUMTEXT>Neither worked.</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Aug 4 2020 12:27pm</FORUMDATE><BR><FORUMTEXT>If you aren't using Google Chrome, try that and see if it helps.
<BR>
<BR>This is something regarding your computer vs the game. Your comp. is not loading everything it needs to load.
<BR>
<BR>You can also try zooming out, that sometimes helps.
<BR>
<BR>Make sure you don't have anything else running on your computer at the same time such as video's, music, social media. See if that makes a difference.</FORUMTEXT></TD></TR></TABLE><HR><FORM METHOD=POST>Add a reply to this topic:<BR><TABLE><TR><TD><TEXTAREA NAME=TEXT ROWS=4 COLS=60></TEXTAREA></TD><TD><INPUT TYPE=SUBMIT VALUE='ADD REPLY'></TD></TR></TABLE><BR><INPUT TYPE=HIDDEN NAME=SUBJECT VALUE='NOT NEEDED'><INPUT TYPE=HIDDEN NAME=FORUM VALUE='BUGS'><INPUT TYPE=HIDDEN NAME=VIEWID VALUE='98451'></FORM>[ <A HREF='?FORUM=BUGS'>GO BACK TO BUGS FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=BUGS&VIEWID=98457
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING BUGS FORUM THREAD: <FONT SIZE=+1>Kier and the Lovesick Frog</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Spudnick)</FORUMUSER> <FORUMDATE>Sep 4 2020 10:52pm</FORUMDATE><BR><FORUMTEXT>I've found 9 out of 10 gemstones and am missing the one "above the dock" which I believe should be on Rider Isle, but when I dig in the pond it says there is nothing?
<BR>
<BR>I've check with other players that remember it being there. Wondering if there is a glitch or bug or something that is keeping me from completing the quest or if I am just looking in the wrong spot?</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Sep 5 2020 11:47am</FORUMDATE><BR><FORUMTEXT>Keep looking there is more than 1 pond on Rider. :)</FORUMTEXT></TD></TR></TABLE><HR><FORM METHOD=POST>Add a reply to this topic:<BR><TABLE><TR><TD><TEXTAREA NAME=TEXT ROWS=4 COLS=60></TEXTAREA></TD><TD><INPUT TYPE=SUBMIT VALUE='ADD REPLY'></TD></TR></TABLE><BR><INPUT TYPE=HIDDEN NAME=SUBJECT VALUE='NOT NEEDED'><INPUT TYPE=HIDDEN NAME=FORUM VALUE='BUGS'><INPUT TYPE=HIDDEN NAME=VIEWID VALUE='98457'></FORM>[ <A HREF='?FORUM=BUGS'>GO BACK TO BUGS FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=BUGS&VIEWID=98478
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING BUGS FORUM THREAD: <FONT SIZE=+1>Hi 1 if old flash is the bug</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by GingerCurtau)</FORUMUSER> <FORUMDATE>Nov 19 2020 7:32pm</FORUMDATE><BR><FORUMTEXT>can you sell the game as is in virtual computer programmed to run old flash to the members that want to donate to keep the next 2 installments running</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Nov 19 2020 9:19pm</FORUMDATE><BR><FORUMTEXT>This is not a bug, I will reply to you via the mail you sent to support.</FORUMTEXT></TD></TR></TABLE><HR><FORM METHOD=POST>Add a reply to this topic:<BR><TABLE><TR><TD><TEXTAREA NAME=TEXT ROWS=4 COLS=60></TEXTAREA></TD><TD><INPUT TYPE=SUBMIT VALUE='ADD REPLY'></TD></TR></TABLE><BR><INPUT TYPE=HIDDEN NAME=SUBJECT VALUE='NOT NEEDED'><INPUT TYPE=HIDDEN NAME=FORUM VALUE='BUGS'><INPUT TYPE=HIDDEN NAME=VIEWID VALUE='98478'></FORM>[ <A HREF='?FORUM=BUGS'>GO BACK TO BUGS FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME
Normal file
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=85379
Normal file
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=86017
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Do NOT go to Hacker Sites!</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Jul 10 2011 1:10pm</FORUMDATE><BR><FORUMTEXT>When players come on and tell you to go to ...site to get free money, do NOT do so.
<BR>
<BR>This is a password hacking site, any and all passwords on your computer will be stolen. If you have a super good firewall you might be safe, but no guarantees.
<BR>
<BR>If you do go there immediately change passwords, and run a virus scan as it also contains a virus I think.
<BR>
<BR>Never save passwords on your computer as you then become susceptible to such sites.
<BR>
<BR>Never Ever for any reason give such sites your name, password or mail. This is extremely dangerous for you!
<BR>
<BR>Please play safely and carefully.
<BR>
<BR>Thanks</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=86799
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Re: Offering Prizes to players for buying horse</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Jul 31 2011 10:57am</FORUMDATE><BR><FORUMTEXT>For those who are offering a "prize" to players who buy a specific horse without giving out that horses name and breed, please be aware this is considered a scam.
<BR>
<BR>Please Only do fair trades. If you want players to buy your horses great, do Not use "gimics" or scamming techniques to get them to buy the horse however.
<BR>
<BR>Saying something like: "10 horses for sale, special prize to the one who buys one of them" is a scam.
<BR>
<BR>Either give something extra for all horses, or state the name and breed of the horse that will have the prize.
<BR>
<BR>Also saying "I will give you a foal if you buy my horse at auction." Is a scam. It's trading on a promise. If you want to give the foal, then put it with the horse when you put the horse in for auction.
<BR>
<BR>Do not trade on a promise.
<BR>
<BR>Thanks</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=87130
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Complete List Of Warping Shortcuts</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Chosen)</FORUMUSER> <FORUMDATE>Aug 13 2011 1:39pm</FORUMDATE><BR><FORUMTEXT>Hey everyone, here is the complete list of warping shortcuts for HI. There were a few Isles that were unwarpable(For example Solomon isle). Some Isles couldn't be warped without using its full given name such as Rain Isle so I left them out (:
<BR>Hope this helps It includes Meadows, Towns, and Isles.
<BR>
<BR>Appleton: Ap or Apple
<BR>Earton: E
<BR>Cantle Meadows: Can
<BR>The Cloud Isles: The C
<BR>Santon: San
<BR>Tropicton: Tro
<BR>Treeton: Tr
<BR>Horse Isle: H
<BR>Saddle Isle: S
<BR>Cat Isle: C
<BR>Witherton: W
<BR>Mare Isle: M
<BR>Ice Isle: I
<BR>Art Isle: A
<BR>Hotton: Hot
<BR>The Sand Isles: Th
<BR>Welcome Isle: We
<BR>Rider Isle: R
<BR>Ring Isle: Rin
<BR>Flower Isle: F
<BR>Dolphin Isle: D
<BR>Fipperton: Flip
<BR>Jungle Isle: J
<BR>Rainy Meadows: Ra
<BR>Vine Isle: V
<BR>Pirate Isle: P
<BR>Prison Isle: Pr
<BR>Crossbones Camp: Cro
<BR>Soaring Meadows: So
<BR>Wington: Win
<BR>Hotzeplotz Isle: Hotz
<BR>Whiskerton: Wh
<BR>Whorl Isle: Who
<BR>Rock Isle: Ro
<BR>Hare Isle: Ha
<BR>Haven Isle: Hav
<BR>Carrotton: Car
<BR>Quiet Isle: Q
<BR>Lilac Isle: L
<BR>Lava Isle: La
<BR>Ashton: As
<BR>Molten Meadows: Mo
<BR>Puuhonua Isle: Pu
<BR>Pumice Isle: Pum
<BR>Igneous Isle: Ig
<BR>Scoria Isle: Sc
<BR>Basalt isle: Ba
<BR>Starfish isle: St
<BR>Tail Isle: T
<BR>Theobroma Isle - Theo
<BR>Loch isle - Lo
<BR>Half haven isle – Hal
<BR>Desert isle: Des
<BR>Icicle isle: Ici
<BR>Paradise Isle: Pa
<BR>Patsy Isle: Pat
<BR>Chillton: Chil
<BR>Christmas Isle: Ch
<BR>Sunshine Meadows: Su
<BR>Tail End: Tail E
<BR>Frigid Meadows: Fr
<BR>Dust Isle: Du
<BR>Aesop Isle: Ae
<BR>Berg Isle: Be
<BR>Snowball Isle: Snowb
<BR>Crystalton: Cry
<BR>Skullton: Sk
<BR>Hotton: Hot
<BR>Hat Isle: Hat
<BR>Magma Isle: Mag
<BR>Web Isle: Web
<BR>Shimmer Isle: Shi
<BR>Shellton: Sh
<BR>Talon Isle: Tal
<BR>Turtle Isle: Tu
<BR>Spirit Isle: Sp
<BR>Nonesuch Isle: No
<BR>Bone Isle: Bo
<BR>Eldorado Isle: El
<BR>Drill Isle: Dr
<BR>Tranquility Isle: Tr
<BR>Serenity Isle: Se
<BR>Torrid Isle: To
<BR>Crescent Isle: Cre
<BR>Hoof Isle: Hoo
<BR>Spice Isle: Spic
<BR>Palm Isle: Pal
<BR>Ardent isle: Ard
<BR>Atropos Isle: At
<BR>Inkton: In
<BR>
<BR>Sorry If there was any typos, have fun warping(:
<BR>
<BR>- Chosen +Pinto+</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=87250
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Regarding Special fonts Please Read</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Aug 18 2011 8:46am</FORUMDATE><BR><FORUMTEXT>This is from Miranda:
<BR>
<BR>"Please stop using the Wii fonts on horse names and descriptions. This often messes with the coding for the game and makes it so sometimes the save button disappears. This prevents you from being able to change that horse's information and forces me to go in and erase the name and description.
<BR>Sorry it doesn't work with it. "
<BR>
<BR>So, if you already have something, and nothing is glitching fine, you may keep it. However please do Not add more, or use the other fonts in profiles and horse names. :)
<BR>
<BR>Lets not use the special fonts at all for profiles and horse names please.
<BR>
<BR>Again, if you already have it and it's working you may keep it.
<BR>
<BR>Thanks :)</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=87499
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Re: Paying Players To Compete/Place</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Aug 28 2011 1:24pm</FORUMDATE><BR><FORUMTEXT>You may:
<BR>
<BR>Play players to enter a competition. You may state that you will pay players only if the competition is full.
<BR>
<BR>You Must pay all who enter and qualify for the above however or you end up not completing an agreed trade = scamming/stealing. That includes if one of those who entered and qualified is on your personally muted players list... Unmute and pay, then you may mute again.
<BR>
<BR>You may NOT:
<BR>
<BR>Pay others to win, lose or come in at a specific place, such as second or third. No paying someone to lose or to win, no taking turns winning/losing. Competitions must be fair to all at all times.
<BR>
<BR>That is considered rigging a competition and not allowed in real life or on this game.</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Aug 28 2011 2:06pm</FORUMDATE><BR><FORUMTEXT>Add on:
<BR>
<BR>This also includes no paying others to beat your high score, or something along those lines. Again, if you wish to personally compete with someone else great! But no paying them to do so. That ends up paying the winner of a competition. So again, it's rigging the comp.
<BR>
<BR>Thanks :)</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Aug 28 2011 9:19pm</FORUMDATE><BR><FORUMTEXT>You may pay everyone who enters the comp the same if you wish.
<BR>
<BR>You may Not pay only the winner or loser. Nor may you pay different amounts depending on who scored what. It must be fair to all. :)</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=87567
Normal file
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=87900
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>tack locations and prices.</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Mustangs)</FORUMUSER> <FORUMDATE>Sep 16 2011 1:38pm</FORUMDATE><BR><FORUMTEXT>[ 10k tack ]
<BR>english tack - earton, appleton, witherton (rider isle)
<BR>western tack - earton, treeton, witherton (rider isle)
<BR>australian tack - earton, treeton, carrotton (hare isle)
<BR>
<BR>[ 100k-200k tack ]
<BR>fancy tack - treeton.
<BR>racing tack - appleton.
<BR>jumping tack - earton.
<BR>llama tack - tropicton (jungle isle)
<BR>camel tack - santon (desert isle)
<BR>draft tack - wington (bird isle)
<BR>
<BR>[ 1m tack ]
<BR>beautiful tack - shellton (turtle isle)
<BR>fireball tack - hotton (desert isle)
<BR>jackrabbit tack - wington (bird isle)
<BR>heavyweight tack - carrotton (hare isle)
<BR>
<BR>[ 10m tack ]
<BR>glorious tack - shellton (turtle isle)
<BR>icarus tack - hotton (desert isle)
<BR>pegasus tack - wington (bird isle)
<BR>hercules tack - witherton (rider isle)
<BR>
<BR>if i missed any locations, let me know.
<BR>and yes, i do realize that some of the tack doesn't exactly add up to the exact amount that i put in brackets. just to round it. :P
<BR>
<BR>i hope this helps. :]
<BR>
<BR>;; мʋƨтαя∂σ | ριитσиιαи ;;</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by BayLeaf)</FORUMUSER> <FORUMDATE>Jul 17 2012 3:29am</FORUMDATE><BR><FORUMTEXT>The locations for our newest tack:
<BR>
<BR>[ 20.4k tack ]
<BR>red parade tack - shellton (turtle isle)
<BR>blue parade tack - appleton (horse isle)
<BR>green parade tack - carrotton (hare isle)
<BR>black parade tack - hotton (desert isle)
<BR>
<BR>[ 22.001k tack ]
<BR>red hunting tack - earton (horse isle)
<BR>blue hunting tack - wington (bird isle)
<BR>green hunting tack - treeton (horse isle)
<BR>black hunting tack - witherton (rider isle)
<BR>
<BR>If you spot any errors please correct me *laughing out loud!*</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by CometChaser)</FORUMUSER> <FORUMDATE>Jun 12 2014 1:57pm</FORUMDATE><BR><FORUMTEXT>[1.2 billion
<BR>Water Tack set - hotton (desert isle)
<BR>
<BR>[1.1 mil]
<BR>Fancy Llama Tack - Tropicaton tack shop (Jungle isle)
<BR>
<BR>[1 Billion]
<BR>Earth tack set - Carrotton (Hare Isle)</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Sep 11 2014 6:49pm</FORUMDATE><BR><FORUMTEXT>[1,020,000,000]
<BR>Air tack set = Shellton (Turtle Isle)</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by CometChaser)</FORUMUSER> <FORUMDATE>Dec 23 2014 7:07pm</FORUMDATE><BR><FORUMTEXT>Starfire tack - Wington (bird isle)</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Feb 19 2017 1:29pm</FORUMDATE><BR><FORUMTEXT>Turkmenian tack - Hotton (Desert Isle)
<BR>
<BR>Saddle = $10,200
<BR>Saddle Pad = $4,080
<BR>Bridle = $6,120</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Jun 5 2020 8:30pm</FORUMDATE><BR><FORUMTEXT>Bumping</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=89049
Normal file
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=89289
Normal file
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=90785
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>How Chat Flags Work</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Mar 8 2012 12:42pm</FORUMDATE><BR><FORUMTEXT>Chat flags are the games word filter catching words that are not allowed. There are only a few "reasons" programed in, so on occasion you will get lets say flagged for "profanity" when none exists, but that's just the closest thing the computer can come to the actual reason.
<BR>
<BR>If something is flagged look to see what you said. It might have been a typo, if so spell properly and it will go though. Otherwise, don't use that word. Do NOT go around the filter with that word either. ;)
<BR>
<BR>Chat flags are not automatic violations. Each flag is read by an administrator. If rules are broken then violations will be assigned. If no rules are broken, the flag will be deleted.
<BR>
<BR>If, something is a very obvious typo that will be deleted. If it's not very obvious that it is a typo you will receive violations for it.
<BR>
<BR>All we see is the one sentence. So for those of you who only send in 1, 2, 3, or 4 words per send you will probably receive more violations for chat flags since we can't see the entire sentence, thus have no way of knowing if something is a typo or not. So a violation will be given.
<BR>
<BR>For those of you who type the entire sentence per send, you will probably receive less violations as we can actually see the sentence and realize 'oh, that's a typo' so the flag is deleted.
<BR>
<BR>Remember this is a family game, there are many words and subjects we do Not allow on this game. The filter is there to protect others and to remind you that _____ isn't allowed. Please never avoid or go around the filter. That adds an extra violation if you do.
<BR>
<BR>We are required to follow COPPA Federal laws and regulations that includes language, content and behavior. As we do allow young children on this game, we are quite strict about this. :)
<BR>
<BR>Thankies,
<BR>DP</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=90953
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Re: "Mini-Modding"</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Mar 20 2012 2:03pm</FORUMDATE><BR><FORUMTEXT>Please be aware it is against the rules to "Mini-Moderate."
<BR>
<BR>We have moderators who have been chosen by the owners of the game to moderate the game. They have access to information players do not have access to. They know how the owners wish things to be handled, and how to handle those things.
<BR>
<BR>Please do NOT mini-mod. What you end up doing is breaking the rules harassing other players, and sometimes bullying them.
<BR>
<BR>It is allowed to state for example: "It's against the rules to spam chat."
<BR>
<BR>It is Not allowed to say for example: "You are breaking the rules, you can't spam chat, that's not allowed."
<BR>
<BR>Players may Not tell others what they may or may not do. Only moderators and administrators get to do that. ;)
<BR>
<BR>Telling others they will be reported for breaking the rules is threatening another player. Don't do it. :)
<BR>
<BR>If you wish to report someone fine, do so. You don't need to tell any other person that you are doing that.
<BR>
<BR>Remember you can also personally mute someone that you find offensive or harassing. So if someone is spamming chat, mute them if it bugs you. You can file an abuse report, otherwise just ignore the player.
<BR>
<BR>Just stating the rules is fine. Telling players they must follow those rules, or telling any other person they should or should not do something is not fine. It's harassing and bullying.
<BR>
<BR>We do Not have "mini-mods" on this game. We do not have "moderator helpers" on this game. We do not have "undercover moderators" on this game.
<BR>
<BR>Just mute and report if needed, please do not harass others or break the rules yourself. :)
<BR>
<BR>Thankies
<BR>DP</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=91394
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Referral Program, we are the hope for HI1.</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Walker)</FORUMUSER> <FORUMDATE>Apr 22 2012 8:53pm</FORUMDATE><BR><FORUMTEXT>Referring others to Horse Isle
<BR>
<BR>
<BR>
<BR>In order to keep adding features to this game, we need subscribers.
<BR>
<BR>You are our best hope! There is a button on the server page under "change my password" called "Refer other players and earn Game Credit!: REFERRAL PROGRAM"
<BR> that you can email to friends who may be interested, or post on your favorite forums.
<BR>If a player signs up using your link, with your name in it, you will get the following benefits:
<BR>For each month membership they buy for $5 you get 1 HorseBuck. (non-refundable credit towards game 1horsebuck=$1usd)
<BR>For each yearly membership they buy for $40 you get 8 HorseBucks. (non-refundable credit towards game 8horsebucks=$8usd)
<BR>So, if you refer 5 players who subscribe and continue to subscribe, you will be able to play for free!
<BR>
<BR>
<BR>Text copied from the referral program page, tweaked a bit to speak to the general HI public.
<BR>I myself found out that by posting a referral link on another horse site, i have referred 5 players to HI within a 2 month period!
<BR>Its not a lot, just coming from myself, but say half of HI referred 5 players each. That'd make a big difference.
<BR>So instead of posting in forums about servers not having enough players, try this! see if you get at least 1 new person to play!</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=92349
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Clarrification on where you can sell subs/po's</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Jul 9 2012 1:25pm</FORUMDATE><BR><FORUMTEXT>Players may Only sell subs or PO's on a server they are currently subscribed to. They may sell them for any server as they are gifted, however to advertise selling them they must be subscribed to the server where they are advertising.
<BR>
<BR>So, if a player is currently subscribed on lets say Black server, that person may sell subs and po's on Black server to be gifted to any server.
<BR>
<BR>If they are not subscribed on Black server then that person may not sell subs or po's on Black server.
<BR>
<BR>Thanks</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=92910
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Wii Fonts and other special fonts</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Aug 17 2012 9:58am</FORUMDATE><BR><FORUMTEXT>This is a reminder.
<BR>
<BR>While some of the Wii fonts do seem to be ok with profiles and horse names, most of them are not. What happens is it breaks the profile or name. That means you can't change the profile at all, the save button doesn't work. You can't change the horse name as the save button doesn't work.
<BR>
<BR>Now, if this happens, you have to email support. When...Miranda gets free time, she will go in and delete the entire profile (necessary as all it shows her is a bunch of garbage characters she has no idea what is what, so all of it has to be deleted.) Same for the horse name, it too has to be deleted.
<BR>
<BR>Miranda is a very busy lady, this is not top priority as you don't have to use fonts that don't work with the game. So...it could take anywhere from quit soon to several days for her to get to it. Just depends on her schedule.
<BR>
<BR>We ask, that you not use these fonts and break your profiles please. It's not a rule however, if you want to wait for a while with a totally broken profile, it's up to you.
<BR>
<BR>Also please keep then to a minimum in chat. If you want to use them for a fancy ad, please try to keep it to just the first character or something. For most of us the special fonts are very difficult to read. Thus when you use them in your ad, you may find most players ignore your ad since they can't read it. You limit your buyers as for the most part, only those who are familiar with the fonts can easily read them.
<BR>
<BR>We also rather consider sentences with mostly Wii fonts to be spam, and a moderator in this instance will ask you to stop and use regular letters. Mod's get enough headaches without trying to translate Wii fonts. *laughing out loud!* :)
<BR>
<BR>Thankies
<BR>DP</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by NightMare)</FORUMUSER> <FORUMDATE>Apr 2 2013 11:14pm</FORUMDATE><BR><FORUMTEXT>REPLY: (by DesertPaint) Mar 21 2013 4:35pm
<BR>It is not against the rules to use these.
<BR>
<BR>However:
<BR>
<BR>Since the game does not support those fonts, you may end up with a broken profile or horse name. Miranda will fix it however to do this she will have to delete ALL of the profile.
<BR>
<BR>It's also not high up on her to do list so it might take several days before she gets to it.
<BR>
<BR>If you want to take the risk (and it is a pretty high risk as some of the letters Will break the save button) and lose all of your profile and wait for possibly several days for it to be fixed ok.
<BR>
<BR>Some of the letters seem to hang in there without breaking it, others definitely do break it. I don't know which is which. Since the game doesn't support Wii or other Font's well...yeah it's going to glitch.
<BR>
<BR>For general chat: One or possibly 2 characters in a sentence or add is fine, but please do not use all Wii letters or other fonts as then it's very difficult to read and will be treated as we would treat texting. An occasional use is fine, don't overdo it.
<BR>
<BR>If we have to translate the sentence it's out and violations might be assigned.
<BR>
<BR>Again, a few letters here and there as long as the sentence is easily readable is ok. The entire sentence or most of the sentence isn't.
<BR>
<BR>Hope this clears up a few things. :)</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=93142
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Buying/Selling Subscriptions</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Sep 6 2012 3:24pm</FORUMDATE><BR><FORUMTEXT>Please follow the rules for this so you are not scammed. We do Not return the money to you if you choose to ignore this:
<BR>
<BR>Gift Subs.
<BR>1] You are allowed to sell subscriptions for in-game, Horse Isle money, however, Horse Isle does not endorse or recommend this since you must trade on a promise.
<BR>2] When selling a subscription, you must buy the subscription via PayPal before receiving the money from the player you are buying the subscription for. It is far more likely a player will pay you in-game money for a received subscription than it is for a player to pay real money to subscribe someone after they have received the in-game money.
<BR>3] If the player you bought a subscription for does not pay you immediately after it shows up on their account (you should be able to tell if they log out and back in with a star) then contact support and we will take the money from the person and give it to you. If we have to do this, more than what was promised will most likely be taken as a sort of payment for our time in the matter.
<BR>4] A player not paying after they received a subscription is one of the only instances where we will go into the other player's account and take what was promised.
<BR>5] If the subscription was paid for via PayPal eCheck, then the player receiving the subscription should wait until their account is credited, then pay the person that bought the subscription.
<BR>6] DO NOT attempt to claim you are selling a subscription or pawneer order if you are not subscribed yourself. This could land with you an immediate mute since, from our experience, someone that does not subscribe themselves will not subscribe someone else.
<BR>
<BR>This policy can be found in the Detailed Rules under "Selling Gift Subscriptions".
<BR>
<BR> Basically 99% of the time players want or insist on money
<BR>first is because they are scamming. Since there is no way they can be
<BR>scammed... There is no reason to insist on money first.
<BR>
<BR> If Player 1 is buying a Sub from Player 2, (Player 2 is selling a
<BR>sub for real life money) and Player 1 doesn't pay for the sub that
<BR>has been receved.... Player 1 gets banned, and we will take the money
<BR>from Player 1's account and give it to Player 2. There is no way
<BR>Player 2 won't receive the agreed upon or standard amount. All Player 2 has to do is contact us.
<BR>
<BR> So, when they say they have been scammed before...no they have not
<BR>been, unless they chose to not contact us and get their money.
<BR>
<BR>I'm seeing quite a bit of scamming, so please follow the above rules so you don't lose your money.
<BR>
<BR>Thanks,
<BR>DP</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=94502
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Rule Clarification(s)</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Drosophilia)</FORUMUSER> <FORUMDATE>Mar 12 2013 3:39pm</FORUMDATE><BR><FORUMTEXT>As we all know, jumping and selling horses are two of the hottest topics discussed in most chats on Horse Isle.
<BR>
<BR>
<BR>Simple jumping is often advertised in global, and advertising is the correct word, according to HI rules, which state the following:
<BR>
<BR> The definition of an advertisement is: "to announce or praise (a product, service, etc.) in some public medium of communication in order to induce people to buy or use it."
<BR>
<BR>When advertising simple in global, it can get very repetitive, but when saying something about it, I'm told that it doesn't belong in ads chat - by the mods. It's very confusing - so that's point one I want clarification on - it's very black and white, cut and dry. Do simple advertisements belong in ads chat, or not?
<BR>
<BR>
<BR>Point 2 - Is posting the same ad in ads chat once a minute, "spamming"? For example, posting "Knabstrup for sale, $500k." once a minute, the same ad, every minute. I've been told both ways.
<BR>
<BR>I'd love it if I could recieve one FINAL opinion on this point, not multiples of different answers.
<BR>
<BR>Thanks,
<BR>
<BR>Drosophilia - Roan</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Mar 12 2013 7:42pm</FORUMDATE><BR><FORUMTEXT>Players may use Global to ask others to join a comp. Basically it's not advertising, nothing is being sold one is only asking others to join a comp. That said, spamming said request is not allowed. :)
<BR>
<BR>Ads chat has a 1 minute wait time, that is to prevent spamming chat. If there are no others using ads chat, then it's nice if the person using it does not flood the chat. But if some players don't have logins muted, the "flood" issue is iffy.
<BR>
<BR>For example if you have logins muted the same ad may flood your screen. If the advertiser doesn't have logins muted then their last ad may have scrolled off the screen.
<BR>
<BR>Spamming is spamming, so if the ad is less than the 1 minute you may report for spamming.
<BR>
<BR>If the advertiser is annoying you can mute that person or mute ads chat for a bit.</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=94635
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Horseisle app</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by SereneSelena)</FORUMUSER> <FORUMDATE>Apr 9 2013 3:10pm</FORUMDATE><BR><FORUMTEXT>I've been thinking that there should be a horseisle app..
<BR>Anybody else? Thanks for your input
<BR>SereneSelena
<BR> ** Brown Server **</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Apr 10 2013 9:53am</FORUMDATE><BR><FORUMTEXT>I agree it would be nice. :)
<BR>
<BR>However I doubt it will happen. Things such as iPad, iPod, iTouch... do not support Adobe Flash which is what the game is programmed in.
<BR>
<BR>So, Joe would have to 100% re-design the game and re-program it in probably HTML or something like that. It would take a very long time to do that, and it would not be as much fun to play probably.
<BR>
<BR> Also, as it would be a totally separate thing, you would have an account here, but you would not be able to access it from an App. So for example you would not be able to log on and train unless you logged onto this game here. This would be because the app would have to be in a totally different programing language. And the game would out of necessity be somewhat different.
<BR>
<BR>There is an app that you can use to access this game from iPad, iPod, iTouch, but it's not all that great, and you still need access to a keyboard of some kind. You can sort of play from what I've heard, but it's a bit awkward and a bit limited. (I don't have the app, so I'm going on hearsay.)</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Rodeo)</FORUMUSER> <FORUMDATE>Apr 10 2013 12:06pm</FORUMDATE><BR><FORUMTEXT>The app is called Puffin Browser, and it works well enough to go on, say hi, check the bank, maybe train if you dont have a long list of horses. Pretty difficult on the iphone screen to use, but it's possible. I go on through my iphone occasionally when i'm away from home. The app works pretty well on tablets/ipads etc. but it's still kind of weird and limited.</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by LokisSkitter)</FORUMUSER> <FORUMDATE>Apr 10 2013 4:11pm</FORUMDATE><BR><FORUMTEXT>@Rodeo, it PB an actual HI app? I'm just curious.</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Apr 10 2013 7:14pm</FORUMDATE><BR><FORUMTEXT>No it's not a HI app. What it is, is an app that allows Adobe Flash to work on things that don't support Adobe Flash. Such as iPad, iPod and iTouch phones.</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Rodeo)</FORUMUSER> <FORUMDATE>Apr 10 2013 9:08pm</FORUMDATE><BR><FORUMTEXT>^ what she said. xD There is a free version of it that lasts like 2 weeks, and then after that it costs $2.99</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Faolan)</FORUMUSER> <FORUMDATE>Apr 11 2013 5:00am</FORUMDATE><BR><FORUMTEXT>I had it. If you refer people, you get more time. It's pretty cool, but it was laggy and crashed sometimes, and I used an iPhone 5 so I feel like it should have been faster.</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Softly)</FORUMUSER> <FORUMDATE>Apr 13 2013 9:23am</FORUMDATE><BR><FORUMTEXT>I also tested out the app, Puffin Browser, and was pleasantly surprised. Although a little laggy, it alowed me to most anything I wanted to on HI. I reccomend it. On a sidenote, I was on my iPhone and the screen was small- Perhaps if someone tried it on an iPad things would work better?
<BR>Thanks- Softly.</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=94790
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Selling/Buying for Real Money</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>May 13 2013 1:01pm</FORUMDATE><BR><FORUMTEXT>Please be aware that buying or selling things on this game for real money is breaking Federal Copyright laws.
<BR>
<BR>It's also breaking Federal Children's Online Privacy Protection laws as to do the above requires sharing personal information.
<BR>
<BR>Do NOT do this.
<BR>
<BR>If caught you will be permanently banned.
<BR>
<BR>I'm not talking about subscriptions and PO's which players purchase with real money and sell to others for game money.
<BR>
<BR>I'm talking about buying/selling actual pixel horses or tack for real life money. You do NOT own those, they belong to Durbin Development Inc. You may buy, sell, trade them on this game. You may use game money to purchase them, you may use game money to purchase subs and PO's from others. You may NOT use real money to purchase subs, PO's, horses, tack or anything else from others.
<BR>
<BR>Thanks,
<BR>DesertPaint
<BR>Administrator</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=94971
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Buying/Selling Ranches</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Jun 13 2013 11:38am</FORUMDATE><BR><FORUMTEXT>Players can NOT sell Ranches to others. Only back to the game.
<BR>
<BR>Players can NOT buy ranches from others Only from the game.
<BR>
<BR>It's impossible to "sell" or "buy" a ranch except from the game, there is absolutely no way to transfer it. So do not attempt to "scam" others by trying to sell a ranch that you can't sell.
<BR>
<BR>Please do not be "scammed" by trying to buy a ranch a player can't sell to you.
<BR>
<BR>It's not a rule it's an impossibility. The game does not allow ranch transfers between players.
<BR>
<BR>No scamming others is a rule.
<BR>
<BR>Thanks</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=95642
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Releasing Horses (DesertPaint Repost)</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by NightMare)</FORUMUSER> <FORUMDATE>Oct 31 2013 4:16am</FORUMDATE><BR><FORUMTEXT>There are 30 wild horses out at all times. When you release 1 then there are 31. So someone captures a wild, no other wild will be placed into the game until the count goes to 29. So it might delay a wild breed from being placed into the game.
<BR>
<BR>Players whisper to find wild horses not released horses. They do tend to be a bit angry when they spend $50,000 to whisper a wild of a breed they want only to find out it was released.
<BR>
<BR>Released horses will remain in the game for 1 real time hour then auto-delete. So for those of you who release to return the horse to the wild. You are deleting the horse, or if another catches it the horse will probably be pawned, where at least it goes to another land to run wild and free.
<BR>
<BR>If you are going to release it's nice to let others know you are going to release a specific breed. (Ads chat please.) :)
<BR>
<BR>That way others know not to whisper that breed for a while.</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Feb 8 2017 11:16am</FORUMDATE><BR><FORUMTEXT>To add to this, now that the Pawneer pays more for horses, this really isn't a big deal.
<BR>
<BR>Just capture it and pawn it, you get some money.
<BR>
<BR>It's always nice to let people know you are releasing breed ______.
<BR>
<BR>It is Not against the rules to release horses, players may do so if they wish to. They also do not Have to announce it.
<BR>
<BR>So if you find you whispered a released horse, just pawn it and get some money if you don't want the horse.
<BR>
<BR>If you are whispering for a specific breed then you got that breed whether or not it's been captured before, it's the breed you were looking for.
<BR>
<BR>If you are just going down the list to whisper to pawn, then same thing...You got the horse, pawn it.
<BR>
<BR>Please do not harass others because they released a horse. :)</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=95724
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Breaking Coypright Laws - Selling HI material for real money</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Nov 27 2013 9:13am</FORUMDATE><BR><FORUMTEXT>Please be aware that selling on game horses (or any Horse Isle copyrighted material) off game for real is breaking Federal Coypright laws.
<BR>
<BR>You Do NOT own these horses or the material except for on game, they are owned by Durbin Development Inc. They are copyrighted by said company. You can be prosecuted for this regardless of what country you live in.</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Oct 1 2017 12:53pm</FORUMDATE><BR><FORUMTEXT>Bumping this up.</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=96336
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Clarification on Subs/PO's Buying/Selling</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>May 4 2014 1:44pm</FORUMDATE><BR><FORUMTEXT>At this time, due to the low player counts on many of the servers, it's not really practical to only advertise you wish to buy/sell a subscription/PO on that one server. (There may not be any other players on, or only a few are on.)
<BR>
<BR>Since these can be gifted to any server, and since we do allow them to be advertised in the forums... It's logical at this time to also allow them to be advertised on different servers.
<BR>
<BR>If you are selling a sub however you do need to be currently subscribed to the server you are advertising on. However to buy one you may be on any server.
<BR>
<BR>Please do be careful though and make very certain their is a clear agreement between both parties as to which server payment will be made on. (And of course which server the sub/PO is to be gifted to.)</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=96673
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Name Changes</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by CaptainSifKirk)</FORUMUSER> <FORUMDATE>Sep 12 2014 4:04pm</FORUMDATE><BR><FORUMTEXT>I'm not sure what section to put this subject in, but I'll try here.
<BR>I think we should get more then one name change. You pay $3 for a name change on HI2. I already asked support about tokens on this game but they said there's no space for it, or something along the lines of that. But what if, say you get a month sub. You're able to change your name once, like it is now pretty much. But if you buy another month sub, then you're allowed to change your name. And what if, we get a year sub, but we are only allowed to change our name 3 times, like once every 100 days, unless we buy another sub.
<BR>HI has said you're limited ONE name change to avoid confusion. But what I don't understand is that you can change your name on HI2 as many times as you wish, as long as you pay. I know a lot of people have been playing here and some have used up that final name change and don't want to go back to their old name and would like to have a different name. I know I would. I actually requested my old account be deleted so I could make a new account cause I wasn't able to change my name anymore. So I had to start ALL over again. It was a risk I was willing to take, but don't you guys agree? Maybe we can figure out some sort of other way besides the sub way like I suggested? I'm just saying. HI has said one name change to avoid confusion, but you can have as many name changes as you want on HI2 as long as you pay. I think it should be like that for HI1 as well.
<BR>-CaptainSifKirk (Pinto)</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Sep 12 2014 4:11pm</FORUMDATE><BR><FORUMTEXT>The reason this isn't basically allowed is because, unlike HI2, we can Only track players by their usernames on HI1. On HI2 we can track by player ID so the username isn't really important.
<BR>
<BR>So for example lets say you got ripped of by PlayerX who then had a name change to PlayerAble. I have no idea who PlayerX is now. So short version: I either have to track though support mail and see who got a name change if possible to find if the old name was mentioned. If not, then no way of knowing. So the scammer gets away with it.
<BR>
<BR>Also, it is a total 100% nightmare to try to sift though weeks of chat logs and player name changes. This happened when HI2 went live and players were allowed a free name change, oh my word, the time involved in trying to figure out who was who was unreal.
<BR>
<BR>And, unfortunately HI1 can't be re-programmed to track with player ID. :(
<BR>
<BR>I think it would be great for players to be able to change their names, but on this game unfortunately it's not feasible.
<BR>
<BR>Sorry</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=96842
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Jumping order</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by CocoIsLoco)</FORUMUSER> <FORUMDATE>Nov 18 2014 6:50pm</FORUMDATE><BR><FORUMTEXT>So me and one of my buds were talking last night while jumping and she was having a hard time finding a horse she wanted to jump. so we were thinking why not have HI put them in ABC order? it would be easier for a lot of people to find the horse they are looking for and youll have a better chance of getting into jumping for you guys on busy servers. it was just a thought. what do you guys think? open to ideas</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by OneTuffPolkaDot)</FORUMUSER> <FORUMDATE>Nov 18 2014 6:53pm</FORUMDATE><BR><FORUMTEXT>YES!!!</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by FlubbyStarfish)</FORUMUSER> <FORUMDATE>Nov 18 2014 7:01pm</FORUMDATE><BR><FORUMTEXT>YESSSSS!!!! OHHHH YESSS!</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by SwanSong)</FORUMUSER> <FORUMDATE>Nov 18 2014 7:19pm</FORUMDATE><BR><FORUMTEXT>REPLY: (by NightMare) Feb 11 2013 4:01am
<BR>REPLY: (by DesertPaint) Feb 7 2013 8:22pm
<BR>Maxed means no new programming can be added in. HI1 is programmed in the old Adobe Flash php programming language and it's pretty much a block of programming. That is the core programming. Nothing more can be added to that as it has reached it's limit. Adding more crashes the game.
<BR>
<BR>HI2 is programmed in the modulated new Adobe Flash php which can be updated.
<BR>
<BR>So HI1 can have a few peripheral things: horses, companions and quests. Other than that there really isn't much if anything that can be added in. Nor can things be altered as it's all mixed in together.</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=96948
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>QUIT GAME button</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by CocoIsLoco)</FORUMUSER> <FORUMDATE>Jan 6 2015 6:43pm</FORUMDATE><BR><FORUMTEXT>ok i know im not the only one that when in the barn/ferrier/stores/profiles scroll to fast and end up hitting the QUIT GAME button. is there anyway we could move the button over a little?</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Sphyinx)</FORUMUSER> <FORUMDATE>Jan 6 2015 10:07pm</FORUMDATE><BR><FORUMTEXT>oh my gosh I do this so much and the little box doesn't even show up it just closes the window.</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Ebony)</FORUMUSER> <FORUMDATE>Jan 7 2015 1:14am</FORUMDATE><BR><FORUMTEXT>Same, plus my mouse is super sensitive so it always decides to click on the quit button xD</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by RogueSpirit)</FORUMUSER> <FORUMDATE>Jan 10 2015 3:59pm</FORUMDATE><BR><FORUMTEXT>I know so many people, including myself, who have this problem xD It'd be amazing to move it over. Or get rid of it? I mean, we all have the little X in the top right, don't we?</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Jan 10 2015 4:35pm</FORUMDATE><BR><FORUMTEXT>Unfortunately it can't be moved. I sure wish it could though, I'm one that hits that button way too often! *sigh*</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=96953
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Lag in competitions:</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Jan 8 2015 12:26pm</FORUMDATE><BR><FORUMTEXT>Just a note here.
<BR>
<BR>It's not against the rules to lag or cause lag in competitions. Sometimes it's a players computer or internet. Sometimes it's the number of players in that area, (especially with Earton.) Other times it may be deliberate, however we have no way of knowing.
<BR>
<BR>There are 3 locations for competitions: Earton, Whitherton and Equestrian Park. Bird for draft.
<BR>
<BR>If there is too much lag in Earton you can go to another location. Or vice versa as needed.
<BR>
<BR>I realize it's frustrating to have so much lag, but sometimes it's unavoidable. Other times it's not but we don't know which. Thus it's not against the rules to have or cause lag for yourself and/or others.</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97160
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Re: Money Limits and Auto-Sell</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Apr 27 2015 1:55pm</FORUMDATE><BR><FORUMTEXT>Please be aware that the over-max on hand limit block does NOT apply to auto-sell.
<BR>
<BR>If you have a lot of money on hand and you have horses on auto-sell, if they sell and that amount goes over the limit you lose whatever you sold them for plus what you had on hand as the game reaches counter max and resets to 0. So everything disappears.
<BR>
<BR>We do not have logs of what disappears, you are out of money and that's it... Please be careful.
<BR>
<BR>There are over-max blocks in place for player-to-player trades and bank-to-player money, but this does Not apply to auto-sell.
<BR>
<BR>The max allowed money on hand is 2.47 billion. Max in the bank is 9,999,999,999 billion.
<BR>
<BR>So if you do player-player trade and that trade takes you over the max the game will block the trade.
<BR>
<BR>This is Not in place for auto-sell. What will happen is stated above...Money that is over max will overload the counter and it will automatically reset itself to zero. So what you end up with is zero on hand. The other person Will get the horses, but you Won't get the money and you will lose whatever you had on-hand.
<BR>
<BR>So, be sure to keep your on-hand money well below the limit if your auto-sell horses sell.</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97186
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Rules updated</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Jun 2 2015 12:02pm</FORUMDATE><BR><FORUMTEXT>Miranda has clarified some rules which you might wish to check out.
<BR>
<BR>Click on Rules at the bottom of the page.
<BR>
<BR>New content: On that first Rules page, under #1, the third line down is the new addition.
<BR>
<BR>Detailed Rules: Under "Dating" please refer to rule #4.
<BR>
<BR>The additions are not open to debate or discussion.
<BR>
<BR>Thanks</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97223
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Transferring Servers</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Phantom)</FORUMUSER> <FORUMDATE>Jun 26 2015 9:17pm</FORUMDATE><BR><FORUMTEXT>I was just wondering if there would possibly be a way to transfer horses/money/tack over to a different server. Is there any possible way that it might happen in the future to allow players to change servers without having to be a completely new player? :)</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Jun 26 2015 9:20pm</FORUMDATE><BR><FORUMTEXT>No there isn't. Each server is totally and completely separate from the others. The coding for the game is a solid block of stuff here and there. To move something from one block then try to figure out where to put it in another block would most likely result in a total crash. Copy/paste just isn't something that can be done for thousands of things from basically one game to another game one item at a time.</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Phantom)</FORUMUSER> <FORUMDATE>Jun 26 2015 9:30pm</FORUMDATE><BR><FORUMTEXT>Oh, I understand. Thanks for the help.</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97405
Normal file
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97414
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Account Merge</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by WildHorseCatcher)</FORUMUSER> <FORUMDATE>Nov 10 2015 12:08pm</FORUMDATE><BR><FORUMTEXT>This is a question for an Admin, I know you said it would take too much coding to "copy and paste" but what about a Merge ? I see it on other games and I always think "wish I could do that on HI". I mean Roan is practically a dead zone. but all my money, experience and work is going to waste sitting on Roan. I was just curious if this was an option somewhere in the near or far future.</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Indesii)</FORUMUSER> <FORUMDATE>Nov 10 2015 2:14pm</FORUMDATE><BR><FORUMTEXT>I'm just gonna answer for them as this has been in forums several times. The servers are entirely separate and cannot be merged. Even if it were possible, it wouldn't work due to things like ranches - if two people have the same ranch on two servers that are intended to merge, one would unfairly lose out. Sadly if it was practical and possible, I imagine it would have already been done long ago.</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by SwanSong)</FORUMUSER> <FORUMDATE>Nov 10 2015 3:57pm</FORUMDATE><BR><FORUMTEXT>Locking thread since this has been answered before. Transfering between accounts and merging accounts are not possible.</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97415
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Adding Quests</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by StainGlassMan)</FORUMUSER> <FORUMDATE>Nov 12 2015 7:05am</FORUMDATE><BR><FORUMTEXT>I was wondering how much longer until Horse Isle can no longer add quests.</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Nov 12 2015 11:05am</FORUMDATE><BR><FORUMTEXT>There is no limit. :)</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by ZeldaRoseAngel)</FORUMUSER> <FORUMDATE>Nov 14 2015 9:42am</FORUMDATE><BR><FORUMTEXT>BUT can we stop adding them ? *laughing out loud!* just kidding i like doing some of them :)</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by StainGlassMan)</FORUMUSER> <FORUMDATE>Nov 16 2015 9:24am</FORUMDATE><BR><FORUMTEXT>Yea. But ever done that one for Hakinka where you must go to every big isle? I hate that one SO much.</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Nov 16 2015 11:36am</FORUMDATE><BR><FORUMTEXT>Adding quests, new breeds, companions and tack is about all that can be added into the game at this point (obviously there are a few other things such as new isles, ranches, npc's, but nothing "major" can be added in.) So to have updates with new content, we kind of have to add the new content... *laughing out loud!*
<BR>
<BR>Some are designed to be er, extensive and time consuming. Mostly because many players have completed all the content and basically have nothing else to do, so a time consuming quest is created.
<BR>
<BR>Horse Isle is a quest based horse game, thus quests are rather an essential part of the game. XD
<BR>
<BR>If you have specific types of quests you would like to see added in, please feel free to mention that. DesertMorn is our quest writer and she checks the forums from time to time. She creates the quests, but if there is a type of quest you really enjoy, such as finding hidden things or running errands or something like that, let her know. :)
<BR>
<BR>Note: Quests obviously need to follow along with the theme of the game and comply with the rules of the game.</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97443
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Trading Between Games</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by SwanSong)</FORUMUSER> <FORUMDATE>Dec 4 2015 9:21pm</FORUMDATE><BR><FORUMTEXT>Trading between Horse Isle I, Horse Isle 2 Eternal & Horse Isle 2 Life Cycle is strictly forbidden. One thread has had to be removed.</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97462
Normal file
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97476
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Explaining a ddos attack</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Saru)</FORUMUSER> <FORUMDATE>Jan 6 2016 8:08am</FORUMDATE><BR><FORUMTEXT>Alright, as some people are confused about what a ddos attack is and such, I'll explain. It's pretty much the hacker attempting to overload pinto with login attempts to put it shortly. Pinto shuts down to protect itself from these. It's not a data leak or the hacker trying to get more info. The hacker cannot get any more info then he already has.
<BR>To explain to those unfamiliar with computer slang. The servers are like turtles. The turtles allow some animals to ride on there back. However, suddenly there are hundreds upon hundreds of animals wanting a ride. The turtle goes back into its shell until the amount of animals trying to ride has returned to normal.
<BR>So pretty much your paymeant info is safe if your passwords are different, your passwords should be safe if you have changed them since the initial hack, and people need to breath. Pintos data is fine.:)</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Jan 6 2016 12:14pm</FORUMDATE><BR><FORUMTEXT>Thank you Saru! :)</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97490
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>PayPal/Billing information</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Jan 9 2016 11:46am</FORUMDATE><BR><FORUMTEXT>Info:
<BR>
<BR>We have absolutely no access to that information, nor can any person gain it from this site. You can't get what isn't there.
<BR>
<BR>You click on the PayPal link and it takes you to PayPal. We are dropped off, our contact with you ends there. PayPal process the information and then sends up the final result = money and what it's to be used for. Nothing else.
<BR>
<BR>We have no access to PayPal's information: What you enter at PayPal such as PayPal pass or credit info. There is no way to get to that access via / from / though Horse Isle either.
<BR>
<BR>We simply do not have it, so can't get what isn't there. :)
<BR>
<BR>Thanks</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97498
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>HI1 Security Status</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Jor)</FORUMUSER> <FORUMDATE>Jan 14 2016 9:14am</FORUMDATE><BR><FORUMTEXT>Hey All!
<BR>
<BR>Sorry for the server accessibility and security drama last week.
<BR>We patched the abused security hole. And spent time reviewing code for other holes.
<BR>We also spent time doubling down on server backups. no matter what anyone ever did,
<BR>we could always restore everything from a previous backup from the previous days.
<BR>We take your pets and account seriously, and will do everything in our power to protect.
<BR>
<BR>As a thank you/apology I'm going to see if I can't add a little additional functionality to Hi1.
<BR>In my next post, I will ask for suggestions and spend some time working on HI1 (Likely only minor things possible).
<BR>
<BR>Thanks for your continued interest! We appreciate all of you.
<BR>-Joe</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97512
Normal file
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97522
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Interest</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DixieCup)</FORUMUSER> <FORUMDATE>Jan 23 2016 10:12am</FORUMDATE><BR><FORUMTEXT>This is really annoying, I am on server Cremello and I want the OLD interest back! Its the ONLY way we can make actual money! You made $975,000 in interest since your last visit. very disappointing to see</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Jan 23 2016 12:02pm</FORUMDATE><BR><FORUMTEXT>Locking this as there is already a post regarding interest.</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97542
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>I'm confused..</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DixieCup)</FORUMUSER> <FORUMDATE>Jan 25 2016 12:25pm</FORUMDATE><BR><FORUMTEXT>I am confused as to why interest went down, is it because older players are richer than the newer players?(to me that's seems why it went down)
<BR>
<BR>I guess I need clarity on the subject</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Starbuck)</FORUMUSER> <FORUMDATE>Jan 25 2016 12:29pm</FORUMDATE><BR><FORUMTEXT>It seemed unclear to me as well.
<BR>
<BR>Regardless of cause it has effectively stopped the economy completely. No one is buying OR selling since they will either be buying with no chance to recoup, OR they will be forced to sell at a big loss.</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Jan 25 2016 3:22pm</FORUMDATE><BR><FORUMTEXT>It's to help balance the economy. For a little while it will be a bit of a mess, but it should level out in a few weeks.
<BR>
<BR>Older players who are maxed with money were getting a huge, amount of interest. New players had no hope of competing with that for a few years. So new players had no hope of having a good horse, good tack, good companion unless they had real money to spend on a sub etc.
<BR>
<BR>Now, new players gain money faster via questing which pays more. Older players have to wait much longer to gain such interest, and won't be spending billions for every little thing necessarily as it won't accrue as quickly.
<BR>
<BR>There are money sinks as well for those who wish to use them.
<BR>
<BR>Interest is accrued (gained) on all money up to and including 250mil. After that whatever is in the bank does not gain any interest. So, yes you may save up into the billions, but it will take a while to get there now.
<BR>
<BR>Thus new players have a chance to buy things from current (older) players. Once things level out a bit anyway. :)</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Starbuck)</FORUMUSER> <FORUMDATE>Jan 25 2016 3:24pm</FORUMDATE><BR><FORUMTEXT>Thanks, DP. I do think the reasoning is flawed as it relies on older players suddenly being willing to drastically lower their prices and taking losses without recouping. We currently have an interesting discussion on that in the other thread, and I hope some of our ideas could be considered as alternatives.</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Jan 25 2016 7:41pm</FORUMDATE><BR><FORUMTEXT>Joe would like us to give this current setup a really good try. Then re-evaluate. If it's totally not working he is willing to work on it some more.
<BR>
<BR>But he would like it if we at least made a really good valiant effort with it as is currently is. :)
<BR>
<BR>That will also help show him what is working and what isn't working...</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Catelyn)</FORUMUSER> <FORUMDATE>Jan 25 2016 7:48pm</FORUMDATE><BR><FORUMTEXT>I do very much appreciate the effort put into it, from all of you.
<BR>
<BR>The other longer thread took an evenmore interesting turn and we might have a very viable alternative to the interest, if an alternative proves to be needed. :)</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DixieCup)</FORUMUSER> <FORUMDATE>Jan 26 2016 9:36am</FORUMDATE><BR><FORUMTEXT>Thank you for further explanation!</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97583
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Selling Ranches?</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Jinx)</FORUMUSER> <FORUMDATE>Feb 4 2016 9:14pm</FORUMDATE><BR><FORUMTEXT>Ok for the past few days Ive been seeing players trying to sell ranches to other players. It's really annoying me because I hate for those players to be scammed. Can we report the people for trying to sell ranches or what. Because with how players are now, they would say stay out of their business and all that. Im just saying. Im trying to help the players from getting billions taken from them.</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by KailFish)</FORUMUSER> <FORUMDATE>Feb 5 2016 5:52am</FORUMDATE><BR><FORUMTEXT>It's not like the people buying are victims. If they think a ranch is worth the buying price, then what does it matter if they spend their money on it? Their money isn't being stolen. They're giving it in a fair trade.</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DixieCup)</FORUMUSER> <FORUMDATE>Feb 5 2016 8:34am</FORUMDATE><BR><FORUMTEXT>Selling ranches is against the rules, so if you want to report, go ahead and do so.:)</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by SwanSong)</FORUMUSER> <FORUMDATE>Feb 5 2016 3:53pm</FORUMDATE><BR><FORUMTEXT>DixieCup is correct. Ranches are to be bought only directly from the game. Players trying to sell them are breaking the rules by trading on a promise which you can report when you see someone doing this. Do not directly confront the person threatening to report them, just file the report and let the administrators take care of it.</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Feb 5 2016 5:52pm</FORUMDATE><BR><FORUMTEXT>What SwanSong and DixieCup said, and players simply can't sell ranches to others. They don't actually own the ranch the game does. Players can Only purchase a ranch from the game.
<BR>
<BR>Once a sub has expired, the ranch remains for 30 days or so. Once it is available any person can walk into the ranch and buy it.
<BR>
<BR>So lets say a sub has expired 30 days ago and the ranch is available... You pay a player for the ranch but don't have anything so, then you have to pay the game for the ranch so that you own the ranch. Um, nope. Scam there.
<BR>
<BR>It's also against the rules to sell ranch locations, since any player can look for themselves. If you wish to help someone find an available ranch, that's fine. But you may not charge for that. Again, anyone walking into an unowned ranch that is subbed and doesn't already have a ranch can buy it.</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by SwanSong)</FORUMUSER> <FORUMDATE>Feb 5 2016 7:17pm</FORUMDATE><BR><FORUMTEXT>Thanks, DP, for adding all that info.</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97649
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>What Google may and may not be used for</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Feb 20 2016 12:12pm</FORUMDATE><BR><FORUMTEXT>I have noticed lately many players telling others to Google help sites.
<BR>
<BR>That is against the rules of the game. Do not send others to off game web sites. Yes you may use Google, you may not tell others to Google a site that would normally get you flagged or incur a violation. You may Google riddle answers as you will receive the answer on Google itself. Not be referred to another site.
<BR>
<BR>You may use Dictionary, as this brings you to the word right there. It doesn't give a list of sites to go to.
<BR>
<BR>We do not have help sites. Other sites are set up by players, frequently the answers are incorrect. Some contain viruses, some run password hacking programs, some have links to inappropriate content or actual inappropriate content on the site.
<BR>
<BR>Advertisements can contain viruses including malware. It's why we do not allow advertisements on Horse Isle.
<BR>
<BR>Advertisements can run password hacking programs. If you don't have a very good Internet Security program you can be vulnerable. We do not allow advertisements on Horse Isle.
<BR>
<BR>If you can't personally help the player with something, do Not refer them to a help site. Do not tell them to Google a help site.</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97654
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>How to calculate UT's</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Feb 21 2016 12:31pm</FORUMDATE><BR><FORUMTEXT>Total UT = add what the horse has together Intel and Pers,) then add what it could have (max possible, check library for that info,) then divide what it has by what it could have.
<BR>
<BR>Note: Take all tack and companions off horse so you get the actual stats for the horse listed in it's stat column.
<BR>
<BR>For example: One of my Nez's:
<BR>
<BR>Horse: Personality = 628 Intelligence = 738. So 628 + 738 = 1366
<BR>
<BR>Breed max possible: Personality = 650 Intelligence = 950. 950 + 650 = 1600
<BR>
<BR>So take 1366 and divide it by 1600 = .85375 thus stats are .85
<BR>
<BR>So formula:
<BR>Horse Max Possible: Intel + Pers = X
<BR>Horse Has: Intel + Pers = Y
<BR>Y/X = Total UT</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Illusion)</FORUMUSER> <FORUMDATE>Feb 21 2016 12:45pm</FORUMDATE><BR><FORUMTEXT>Don't forget to times by 100.</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Catelyn)</FORUMUSER> <FORUMDATE>Feb 21 2016 2:06pm</FORUMDATE><BR><FORUMTEXT>Intelligence + Personality x 100 / Breed max
<BR>
<BR>The above will give you the answer as a percentage if you don't want to have to move decimals.</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97684
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Interest</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Prince)</FORUMUSER> <FORUMDATE>Mar 3 2016 10:01am</FORUMDATE><BR><FORUMTEXT>I have gotten frustrated that the admins have been removing our posts about the Interest problem. Although some people were going overboard and causing trouble, I feel that the admins are not taking our views into consideration. A lot of oldies like myself have moved over to Pinto from other servers and are restarting. The new interest amount actually makes the problem worse, as now people still are rich and it is impossible for everyone else to catch up. And the auctions buttons make it so that the rich people are now auctioning good horses for high, that used to be the only cheap way to get a good horse. Please consider our opinions.</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>Mar 3 2016 12:02pm</FORUMDATE><BR><FORUMTEXT>As far as I know Joe is not planning to change the interest again. So what we have is what we have.
<BR>
<BR>We need to learn to work with the current system.
<BR>
<BR>It's more difficult to maintain billions now, it's easier to earn money for new players, so what the "established" players will need to take into account is the economy is now lower. No more selling things in the billions, it's now millions.
<BR>
<BR>Once this happens, and once new players have earned money, then the economy will balance out in the millions instead of billions.
<BR>
<BR>It's a different way of doing things, it will work. It is going to take a little time for the leveling out to happen.
<BR>
<BR>You make more money from new quests, it's much easier to gain money as a new player. Interest rates are doubled on all money up to and including 500 mil. So work hard, do quests and you will get up there rather quickly. It does however required some hard work if one wishes to gain quickly.
<BR>
<BR>The high auction button will in time become unused as players won't be spending billions on very many things. It takes quite a while to get that amount back up once spent.
<BR>
<BR>Locking this thread as it's not something that will change, so it will end up with players arguing back and forth.</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97723
Normal file
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97744
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>PO Foals?</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Amity)</FORUMUSER> <FORUMDATE>May 3 2016 10:16pm</FORUMDATE><BR><FORUMTEXT>Just a random thought that I don't even know if it's possible but I just thought I'd post it here anyways seeing as when I put it in global it got a lot of positive responses.
<BR>
<BR>anyone feel free to add to this.
<BR>
<BR>The base idea is, foals that you can purchase and they will turn into a base wild horse after a set point has been reached. Foals would only keep the color they were bought in, a chestnut foal would be a chestnut adult horse of a random breed with random stats.
<BR>
<BR>1) It could be time based Days/Hrs
<BR>
<BR>2) It could be experienced based
<BR> - Trainer and companion shop located only on Cloud.
<BR> - This would give players a reason to quest and it would increase activity/interest in the game.
<BR> - Foals would age after reaching a set amount of exp.
<BR> - Exp would only show at trainer.
<BR> - Exp would be random, much like the exp you get for jumping. (1pt, 2pt, 4pt, 8pt, 12pt) [I think that's right don't laugh if it isn't ;) ]
<BR> - Trainer would have all of the same characteristics as the current trainers, set cost(the same or more than the other trainers), time between training sessions (the same or more than other trainers, increased or not with a training pen)
<BR> - When traded with another player the foal would lose all experience and have to restart the training process.
<BR>
<BR>Things that would not work with the foals
<BR>Foals would not gain exp when equipped as a companion, only at trainer. In this case they are only a showcase item per se.
<BR>Foals will have no animation when going from foal to adult.
<BR>Horses aged from foals will not age past adult.
<BR>There would be no additional pages other than the trainer on Cloud. (exp only appears at the training pen, foal has no stats until final horse is generated.)
<BR>The horse would appear as an adult the same way a PO appears.
<BR>Foals will still be able to be purchased as they currently are.
<BR>
<BR>When traded with another player the foal would lose all experience and have to restart the training process.</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by GoblinKing)</FORUMUSER> <FORUMDATE>May 3 2016 10:58pm</FORUMDATE><BR><FORUMTEXT>I don't think this will be possible just due to the amount of coding and reprogramming that will have to happen.</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Kokomo)</FORUMUSER> <FORUMDATE>May 4 2016 5:06am</FORUMDATE><BR><FORUMTEXT>its a good idea but not sure if they can fit it into the game would be a really cool thing to have though its a wonderful idea just not sure if coding can handle that</FORUMTEXT></TD></TR><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by Granny)</FORUMUSER> <FORUMDATE>May 4 2016 11:31am</FORUMDATE><BR><FORUMTEXT>If it was bought a foal, it should stay a foal. If you wanted it to age, that's what Life Cycle is for. Basically the whole point of them having another website for just that *laughing out loud!*.</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>May 4 2016 12:28pm</FORUMDATE><BR><FORUMTEXT>On HI1 we do not allow horse breeding. We do have foals that can be purchased at Foal Adoption Centers.
<BR>
<BR>HI1 has limited abilities in it's programming, and on occasion the counter has issues. Having a foal age and become an adult horse is not something that is feasible for this game.
<BR>
<BR>To be able to have foals that age, you can play on HI2 Life Cycle server. There players may breed horses, watch the foals grow. Once they reach a specific age they can be trained, then once adult they can be ridden and competed with. :)</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97781
Normal file
134
WebInterface/master-site/web/forums.php@FORUM=GAME&VIEWID=97784
Normal file
|
@ -0,0 +1,134 @@
|
|||
<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 BORDER=0 CELLPADDING=0 CELLSPACING=10><TR><TD><B>Logged in as: PopularGem</B><BR><BR><A HREF=/?LOGOUT=1><img src=/web/but-logout.gif border=0></A><BR><A HREF=/><img src=/web/but-mainpage.gif border=0></A></TD><TD><BR><A HREF=/account.php><img src=/web/but-serverlist.gif border=0></A><BR><A HREF=/web/news.php><img src=/web/but-news.gif border=0></A><BR><A HREF=/web/forums.php><img src=/web/but-forums.gif border=0></A><BR><A HREF=/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>
|
||||
<B><FONT SIZE=+1>Horse Isle Forums</FONT><BR></B>
|
||||
Forums for discussing in game topics with other players. Please use the Contact Us form at the bottom to directly communicate with Horse Isle staff.
|
||||
<BR>The SUPPORT and BUGS forums have threads removed often to keep them clean and recent. Don't be offended when removed.
|
||||
<!--<BR><B>Please respect the fact that these forums were not designed for RPG'ing and we do not have the time or ability to properly manage the excessive posting that it entails. We are sorry to those that were not abusing the rules, but too many others were. As a result. NO RPG posting in these forums. Period. Thanks for understanding.</B>-->
|
||||
<TABLE WIDTH=100%><TR><TD class=forumlist><A HREF="?FORUM=SUPPORT">SUPPORT</A><BR>(11 topics)</TD><TD class=forumlist><A HREF="?FORUM=BUGS">BUGS</A><BR>(14 topics)</TD><TD class=forumlist><A HREF="?FORUM=GENERAL">GENERAL</A><BR>(25 topics)</TD><TD class=forumlist><A HREF="?FORUM=HORSES">HORSES</A><BR>(8 topics)</TD><TD class=forumlist><A HREF="?FORUM=GAME">GAME</A><BR>(90 topics)</TD></TABLE><HR><B>VIEWING GAME FORUM THREAD: <FONT SIZE=+1>Interest Rate</FONT></B><BR><TABLE WIDTH=100%><TR><TD class=forumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by NichiMe)</FORUMUSER> <FORUMDATE>May 29 2016 1:57pm</FORUMDATE><BR><FORUMTEXT>Did they change the interest rate back to what it was before, or just make it a little better?</FORUMTEXT></TD></TR><TR><TD class=adminforumpost><FORUMSUBJECT>REPLY:</FORUMSUBJECT> <FORUMUSER>(by DesertPaint)</FORUMUSER> <FORUMDATE>May 29 2016 4:41pm</FORUMDATE><BR><FORUMTEXT>The interest rate is 0.0006% on all money up to and including $500,000,000. If you have more than that in the bank it will only gain interest on the $500,000,000.
<BR>
<BR>Interest had been 0.0003% on all that was in the bank.</FORUMTEXT></TD></TR></TABLE><HR><B>THIS THREAD IS CURRENTLY LOCKED, NO NEW POSTS AT THIS TIME.</B><HR>[ <A HREF='?FORUM=GAME'>GO BACK TO GAME FORUM</A> ]<BR><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>
|