From c2c2db6b842be9705af07955610af07339cb47cc Mon Sep 17 00:00:00 2001 From: SilicaAndPina Date: Sun, 27 Jun 2021 21:07:20 +1200 Subject: [PATCH] DERP! Fix color changing bug and cap mood/basic stats --- .../Game/Horse/HorseInstance.cs | 4 +- .../HorseIsleServer/Server/GameServer.cs | 55 +++- WebInterface/game-site/web/checks.php | 166 ++++++++++ .../game-site/web/reasonstosubscribe.php | 196 ++++++++++++ .../master-site/account.php@CONNECT=pinto | 300 ------------------ WebInterface/master-site/index.html@LOGOUT=1 | 228 ------------- .../master-site/joinserver.php@SERVER=bay | 300 ------------------ .../master-site/joinserver.php@SERVER=black | 300 ------------------ .../master-site/joinserver.php@SERVER=brown | 300 ------------------ .../joinserver.php@SERVER=chestnut | 300 ------------------ .../joinserver.php@SERVER=cremello | 300 ------------------ .../master-site/joinserver.php@SERVER=dun | 300 ------------------ .../master-site/joinserver.php@SERVER=grey | 300 ------------------ .../joinserver.php@SERVER=palomino | 300 ------------------ .../master-site/joinserver.php@SERVER=roan | 300 ------------------ .../master-site/joinserver.php@SERVER=white | 300 ------------------ 16 files changed, 404 insertions(+), 3545 deletions(-) create mode 100644 WebInterface/game-site/web/checks.php create mode 100644 WebInterface/game-site/web/reasonstosubscribe.php delete mode 100755 WebInterface/master-site/account.php@CONNECT=pinto delete mode 100755 WebInterface/master-site/index.html@LOGOUT=1 delete mode 100755 WebInterface/master-site/joinserver.php@SERVER=bay delete mode 100755 WebInterface/master-site/joinserver.php@SERVER=black delete mode 100755 WebInterface/master-site/joinserver.php@SERVER=brown delete mode 100755 WebInterface/master-site/joinserver.php@SERVER=chestnut delete mode 100755 WebInterface/master-site/joinserver.php@SERVER=cremello delete mode 100755 WebInterface/master-site/joinserver.php@SERVER=dun delete mode 100755 WebInterface/master-site/joinserver.php@SERVER=grey delete mode 100755 WebInterface/master-site/joinserver.php@SERVER=palomino delete mode 100755 WebInterface/master-site/joinserver.php@SERVER=roan delete mode 100755 WebInterface/master-site/joinserver.php@SERVER=white diff --git a/Horse Isle Server/HorseIsleServer/Game/Horse/HorseInstance.cs b/Horse Isle Server/HorseIsleServer/Game/Horse/HorseInstance.cs index 0868733..cfbb82d 100755 --- a/Horse Isle Server/HorseIsleServer/Game/Horse/HorseInstance.cs +++ b/Horse Isle Server/HorseIsleServer/Game/Horse/HorseInstance.cs @@ -57,10 +57,10 @@ namespace HISP.Game.Horse magicUsed = loadMagicUsed; leaseTime = leaseTimer; hidden = loadHidden; - if(color != null) + if(loadColor != null) color = loadColor; else - color = breed.Colors[GameServer.RandomNumberGenerator.Next(0, breed.Colors.Length)]; + color = breed.Colors[GameServer.RandomNumberGenerator.Next(0, breed.Colors.Length)]; Leaser = 0; } public int Leaser; diff --git a/Horse Isle Server/HorseIsleServer/Server/GameServer.cs b/Horse Isle Server/HorseIsleServer/Server/GameServer.cs index 0c9c690..aac1c07 100755 --- a/Horse Isle Server/HorseIsleServer/Server/GameServer.cs +++ b/Horse Isle Server/HorseIsleServer/Server/GameServer.cs @@ -875,12 +875,24 @@ namespace HISP.Server string msgs = ""; if (horsePetInst.BasicStats.Mood + randMoodAddition >= 1000) + { msgs += Messages.HorsePetTooHappy; - if (horsePetInst.BasicStats.Tiredness - randTiredMinus <= 0) - msgs += Messages.HorsePetTooTired; + } + else + { + horsePetInst.BasicStats.Mood += randMoodAddition; + } - horsePetInst.BasicStats.Tiredness -= randTiredMinus; - horsePetInst.BasicStats.Mood += randMoodAddition; + if (horsePetInst.BasicStats.Tiredness - randTiredMinus <= 0) + { + msgs += Messages.HorsePetTooTired; + } + else + { + horsePetInst.BasicStats.Tiredness -= randTiredMinus; + } + + byte[] petMessagePacket = PacketBuilder.CreateChat(Messages.FormatHorsePetMessage(msgs,randMoodAddition, randTiredMinus), PacketBuilder.CHAT_BOTTOM_RIGHT); sender.SendPacket(petMessagePacket); @@ -1456,45 +1468,58 @@ namespace HISP.Server case "HEALTH": if (horseInstance.BasicStats.Health + effect.EffectAmount > 1000) tooMuch = true; - horseInstance.BasicStats.Health += effect.EffectAmount; + else + horseInstance.BasicStats.Health += effect.EffectAmount; break; case "HUNGER": if (horseInstance.BasicStats.Hunger + effect.EffectAmount > 1000) tooMuch = true; - horseInstance.BasicStats.Hunger += effect.EffectAmount; + else + horseInstance.BasicStats.Hunger += effect.EffectAmount; break; case "MOOD": if (horseInstance.BasicStats.Mood + effect.EffectAmount > 1000) tooMuch = true; - horseInstance.BasicStats.Mood += effect.EffectAmount; + else + horseInstance.BasicStats.Mood += effect.EffectAmount; break; case "GROOM": if (horseInstance.BasicStats.Groom + effect.EffectAmount > 1000) tooMuch = true; - horseInstance.BasicStats.Groom += effect.EffectAmount; + else + horseInstance.BasicStats.Groom += effect.EffectAmount; break; case "SHOES": if (horseInstance.BasicStats.Shoes + effect.EffectAmount > 1000) tooMuch = true; - horseInstance.BasicStats.Shoes += effect.EffectAmount; + else + horseInstance.BasicStats.Shoes += effect.EffectAmount; break; case "THIRST": if (horseInstance.BasicStats.Thirst + effect.EffectAmount > 1000) tooMuch = true; - horseInstance.BasicStats.Thirst += effect.EffectAmount; + else + horseInstance.BasicStats.Thirst += effect.EffectAmount; break; case "TIREDNESS": if (horseInstance.BasicStats.Tiredness + effect.EffectAmount > 1000) tooMuch = true; - horseInstance.BasicStats.Tiredness += effect.EffectAmount; + else + horseInstance.BasicStats.Tiredness += effect.EffectAmount; break; case "INTELLIGENCEOFFSET": - horseInstance.AdvancedStats.Inteligence += effect.EffectAmount; - changeInteligence = true; + if (horseInstance.AdvancedStats.Inteligence + effect.EffectAmount < horseInstance.Breed.BaseStats.Inteligence * 2) + { + horseInstance.AdvancedStats.Inteligence += effect.EffectAmount; + changeInteligence = true; + } break; case "PERSONALITYOFFSET": - horseInstance.AdvancedStats.Personality += effect.EffectAmount; - changePersonality = true; + if (horseInstance.AdvancedStats.Personality + effect.EffectAmount < horseInstance.Breed.BaseStats.Personality * 2) + { + horseInstance.AdvancedStats.Personality += effect.EffectAmount; + changePersonality = true; + } break; case "SPOILED": horseInstance.Spoiled += effect.EffectAmount; diff --git a/WebInterface/game-site/web/checks.php b/WebInterface/game-site/web/checks.php new file mode 100644 index 0000000..8837906 --- /dev/null +++ b/WebInterface/game-site/web/checks.php @@ -0,0 +1,166 @@ + +HORSE ISLE - Online Multiplayer Horse Game + + + + + + + + + + + + + + + + + + + + + +
Welcome to Horse Isle 
+ + + + + + + +
USER:
PASS:
(Forgot?)
+ +
 
+
+
+Alternative Payment Methods
+If you cannot use PayPal(recommended) you may send a payment via snail mail to our U.S. Post Office Box.
+Currency MUST be in U.S. Dollars. [ USA Check / Money Order / USD Cash Accepted ]
+(One exception, Canadian personal checks made out for slightly more than the current exchange rate in canadian funds can be accepted. No other countries personal checks can be accepted.)
+Checks must be written out to 'Horse Isle'.
+If your check "bounces" we will block the account until our fees have been reimbursed by you.
+Cash is not recommended, but if you need to send it, be sure to wrap it in another piece of paper so that it cannot be seen through the envelope!
+(Do not send Cash without Parental Permission!)
+
+Horse Isle Postal Mailing Address:
+
    +Horse Isle
    +PO Box 3619
    +Duluth, MN 55803-2633
    +USA
    +
+Identify Your Payment:
+Be sure to include a CLEAR note of what account this is for. Include your email address in case there are problems identifying the account.
+
    +Your USERNAME =
    +Your ACCOUNT ID =
    +Your SERVER = pinto (make sure this is the one you play on)
    + +
+Finally, let us know what it is for:
+
    +One Month Horse Isle Membership - $5 (or 2 for $10, etc.)
    +One Year Horse Isle Membership - $40 (or 2 for $80, etc.)
    +Horse Isle Game Money - $10,000 per $1 ($15 = $150,000 Horse Isle Money)
    +Pawneer Order - $8 (or 2 for $16, etc.)
    +Pawneer Order Pack(5) - $30 (or 2 for $60, etc.)
    +
+Payments will be credited when received. Mail is handled at least twice per week, so between mail transit and pickup times, expect up to a week for the account to be credited. Payments lost in the mail are not our responsibility. Checks which cannot be identified to an account will not be cashed.
+Remember PayPal Payments are instant and more secure!
+Thanks!
+
[ Return to Account Page ] +
+ + + + + +
+
+[ Rules ] +[ Terms and Conditions ] +[ Privacy Policy ]
+[ Expected Behavior ] +[ Contact Us ] +[ Credits ]
+Copyright © 2021 Horse Isle + + + + diff --git a/WebInterface/game-site/web/reasonstosubscribe.php b/WebInterface/game-site/web/reasonstosubscribe.php new file mode 100644 index 0000000..62d3514 --- /dev/null +++ b/WebInterface/game-site/web/reasonstosubscribe.php @@ -0,0 +1,196 @@ + +HORSE ISLE - Online Multiplayer Horse Game + + + + + + + + + + + + + + + + + + + + + +
Welcome to Horse Isle 
+ + + + + + + +
USER:
PASS:
(Forgot?)
+ +
 
+
+
+
+ +
+ Subscription Benefits
+
+
+ + #1: +Support:
+Support continued Horse Isle development employing many talented artists.
+
+ +#2: Access:
+Unlimited play time.  Also, priority access to the server if it is nearing +capacity.
+
+ +#3: Ranch ownership:
+Once you can afford a ranch, it grants many optional benefits:
+
    +
  • +   Carry more items with sheds (up to 80 total) +
  • +
  • +   Own more horses several for each barn on your ranch +
  • +
  • +   Being able to sell horses while offline +
  • +
  • +   Easier feeding/watering/training of horses with silo,well,training + pen +
  • +
  • +   Free wagon transport with a wagon  +
  • +
  • +   Earn money while on/offline with windmills +
  • +
+
+ +#4: Game Identification:
+A Horse Isle Subscriber is identified in-game with a Star next to the player's name +in the player lists. A fancier star identifies longer term subscribers.
+
+ +#5: Train Horses Twice as often:
+A Horse Isle Subscriber can train horses again in 1/2 the time.
+
+#6: +Parental Controls:
+The ability to set the number of hours a child can play per day, or even +disabling the ability to send and receive chat.
+
+#7: +Double Global Chats:
+Subscribers earn one global chat per minute rather than every other minute.
+
+#8: +Art Room Access:
+Subscribers are allowed to draw in the group art rooms.
+ +
+
[ Return to Account Information ] +
+ + + + + +
+
+[ Rules ] +[ Terms and Conditions ] +[ Privacy Policy ]
+[ Expected Behavior ] +[ Contact Us ] +[ Credits ]
+Copyright © 2021 Horse Isle + + + + + diff --git a/WebInterface/master-site/account.php@CONNECT=pinto b/WebInterface/master-site/account.php@CONNECT=pinto deleted file mode 100755 index 0aa1439..0000000 --- a/WebInterface/master-site/account.php@CONNECT=pinto +++ /dev/null @@ -1,300 +0,0 @@ - -HORSE ISLE - Online Multiplayer Horse Game - - - - - - - - - - - - - - - - - - - - - -
Welcome to Horse Isle 
- - - - -
PINTO.HORSEISLE.COM
Logged in as: PopularGem





- -
 
-
- - - - - - -
When Ready, Enter the World



(bigger borders version)
(same window version)
Welcome back PopularGem, Here is your account info and Horse Isle server status: (refresh)

It has been: 0.2 hours since you were last online. You have logged in 8 times.
You have $0 in Horse Isle money on hand and $2,824 in the bank.
You have earned 0 of 63005 total quest points (0% Complete)
You have 259 minutes of playtime available. As a non-subscriber you get 1 additional minute every 8 minutes. (subject to change based on load) (why limited?)


- - - -
- - - - - - - - - - - - - - - -
- -POPULARGEM'S PINTO SUBSCRIPTION STATUS:
NOT SUBSCRIBED
(You have not yet subscribed) (Subscription Benefits)
NOTE: 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. -
- -
BUY 1 Month Membership $5.00usd (adds 31 days membership time to the account that you are currently logged in with.) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY Pawneer Order $8.00usd (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. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY 5 Pawneer Orders $30.00usd (save $10.00 - allows you to order 5 custom horses from Pawneer) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- - -
If you happen to have any: Redeem Horse Bucks
-
Alternative Payment Methods: Check/Cash via postal mail -

Gift Payments: Pay for a different player -

- - - -
- -

- - - - -
-
-[ Rules ] -[ Terms and Conditions ] -[ Privacy Policy ]
-[ Expected Behavior ] -[ Contact Us ] -[ Credits ]
-Copyright © 2020 Horse Isle - - - - - diff --git a/WebInterface/master-site/index.html@LOGOUT=1 b/WebInterface/master-site/index.html@LOGOUT=1 deleted file mode 100755 index 093133e..0000000 --- a/WebInterface/master-site/index.html@LOGOUT=1 +++ /dev/null @@ -1,228 +0,0 @@ - -HORSE ISLE - Online Multiplayer Horse Game - - - - - - - - - - - - - - - - - - - - - -
Welcome to Horse Isle 
- - - - - -
USER:
PASS:
(Forgot?)
- -
 
-
- - -
- -
- - - - - - - -

Create a FREE Account
OR Log into your existing Horse Isle account at upper right
OR Give a Gift Membership or Bonus to an existing player
-
-Fan Art Competition Winners: View Fan Art Contests from 2009 and 2011.
-
-Parents! Please click for some important information: Parent's Guide
-
- -CURRENTLY:
0 Players Online Now
0 Subscribers Online Now
0 Moderators Online Now
3,197 Active Accounts

ABOUT:
-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. -
- -
-

- -(If you can see the scene above, it should tell you if you have the necessary software required to play the game)
-(If not, you would need to download/upgrade for free Flash Player) -
- -
-
COSTS:
-You can play Horse Isle for FREE! or $5/mo USD game memberships provide many benefits.
- -
FEATURES:
-Several different entertaining game activities:
-
    -
  • 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.
  • -
  • Completing mini-games throughout the world for fun and game money. Many are multiplayer also.
  • -
  • 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!
  • -
  • Buying and building up your very own ranch, making a piece of Horse Isle your very own!
  • -
  • Naming and taking care of your horses. Finding them better tack, or even finding your horse a nice pet!
  • -
  • 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!
  • -
  • Searching the world for buried treasures, rare items, and hidden adventures.
  • -
  • Trying to get the highest score or best times of many different tracked games.
  • -
-Ever-expanding content within the world includes:
-
    -
  • 20+ unique communities located on different islands and climates. With unique weather systems.
  • -
  • Over 100 unique horse breeds, very detailed with professional renderings of each breed in each color. More added regularly.
  • -
  • 500+ computer characters (residents) which you can interact with to complete adventures and learn things.
  • -
  • 500+ Adventure Quests. Completing these can earn you awards and bonuses.
  • -
  • Hundreds of unique objects that can be found in the world or handled during quests.
  • -
  • 60+ unique minigames, many horse-based.
  • -
  • Many completely original soundtracks and game musics, professionally produced.
  • -
-
-REQUIRES:
-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. - -

SCREEN SHOTS: (Pause your mouse over an image to popup details)
-The Group Drawing Room. Great place for pictionary, tictactoe or just drawing! -The Library. Viewing one of the breeds of Horse Isle. -Treeton. One of the towns in Horse Isle. -Quite the gathering of horse riders in the Desert! -A cold little community in Horse Isle. -A Drawing Room competition area on Art Isle. -Giant flowers and Rainbows make Flower Isle a special Island to visit. -One of the Arena MiniGames, This is Horse Racing. - - -
-
-
-Horse Isle tested and developed using Firefox Browser
- - - - - - -
-
-[ New Player Guide ]
-[ Rules ] -[ Terms and Conditions ] -[ Privacy Policy ]

-[ Expected Behavior ] -[ Contact Us ] -[ Credits ]
-Copyright © 2020 Horse Isle - - - - - diff --git a/WebInterface/master-site/joinserver.php@SERVER=bay b/WebInterface/master-site/joinserver.php@SERVER=bay deleted file mode 100755 index fdb90bb..0000000 --- a/WebInterface/master-site/joinserver.php@SERVER=bay +++ /dev/null @@ -1,300 +0,0 @@ - -HORSE ISLE - Online Multiplayer Horse Game - - - - - - - - - - - - - - - - - - - - - -
Welcome to Horse Isle 
- - - - -
BAY.HORSEISLE.COM
Logged in as: PopularGem





- -
 
-
- - - - - - -
When Ready, Enter the World



(bigger borders version)
(same window version)
Welcome back PopularGem, Here is your account info and Horse Isle server status: (refresh)

You have a new account and have not yet logged in!
You have $0 in Horse Isle money on hand and $0 in the bank.
You have earned 0 of 63005 total quest points (0% Complete)
You have 0 minutes of playtime available. As a non-subscriber you get 1 additional minute every 8 minutes. (subject to change based on load) (why limited?)


- - - -
- - - - - - - - - - - - - - - -
- -POPULARGEM'S BAY SUBSCRIPTION STATUS:
NOT SUBSCRIBED
(You have not yet subscribed) (Subscription Benefits)
NOTE: 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. -
- -
BUY 1 Month Membership $5.00usd (adds 31 days membership time to the account that you are currently logged in with.) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY Pawneer Order $8.00usd (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. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY 5 Pawneer Orders $30.00usd (save $10.00 - allows you to order 5 custom horses from Pawneer) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- - -
If you happen to have any: Redeem Horse Bucks
-
Alternative Payment Methods: Check/Cash via postal mail -

Gift Payments: Pay for a different player -

- - - -
- -

- - - - -
-
-[ Rules ] -[ Terms and Conditions ] -[ Privacy Policy ]
-[ Expected Behavior ] -[ Contact Us ] -[ Credits ]
-Copyright © 2020 Horse Isle - - - - - diff --git a/WebInterface/master-site/joinserver.php@SERVER=black b/WebInterface/master-site/joinserver.php@SERVER=black deleted file mode 100755 index e9b49fa..0000000 --- a/WebInterface/master-site/joinserver.php@SERVER=black +++ /dev/null @@ -1,300 +0,0 @@ - -HORSE ISLE - Online Multiplayer Horse Game - - - - - - - - - - - - - - - - - - - - - -
Welcome to Horse Isle 
- - - - -
BLACK.HORSEISLE.COM
Logged in as: PopularGem





- -
 
-
- - - - - - -
When Ready, Enter the World



(bigger borders version)
(same window version)
Welcome back PopularGem, Here is your account info and Horse Isle server status: (refresh)

You have a new account and have not yet logged in!
You have $0 in Horse Isle money on hand and $0 in the bank.
You have earned 0 of 63005 total quest points (0% Complete)
You have 0 minutes of playtime available. As a non-subscriber you get 1 additional minute every 8 minutes. (subject to change based on load) (why limited?)


- - - -
- - - - - - - - - - - - - - - -
- -POPULARGEM'S BLACK SUBSCRIPTION STATUS:
NOT SUBSCRIBED
(You have not yet subscribed) (Subscription Benefits)
NOTE: 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. -
- -
BUY 1 Month Membership $5.00usd (adds 31 days membership time to the account that you are currently logged in with.) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY Pawneer Order $8.00usd (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. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY 5 Pawneer Orders $30.00usd (save $10.00 - allows you to order 5 custom horses from Pawneer) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- - -
If you happen to have any: Redeem Horse Bucks
-
Alternative Payment Methods: Check/Cash via postal mail -

Gift Payments: Pay for a different player -

- - - -
- -

- - - - -
-
-[ Rules ] -[ Terms and Conditions ] -[ Privacy Policy ]
-[ Expected Behavior ] -[ Contact Us ] -[ Credits ]
-Copyright © 2020 Horse Isle - - - - - diff --git a/WebInterface/master-site/joinserver.php@SERVER=brown b/WebInterface/master-site/joinserver.php@SERVER=brown deleted file mode 100755 index 7767024..0000000 --- a/WebInterface/master-site/joinserver.php@SERVER=brown +++ /dev/null @@ -1,300 +0,0 @@ - -HORSE ISLE - Online Multiplayer Horse Game - - - - - - - - - - - - - - - - - - - - - -
Welcome to Horse Isle 
- - - - -
BROWN.HORSEISLE.COM
Logged in as: PopularGem





- -
 
-
- - - - - - -
When Ready, Enter the World



(bigger borders version)
(same window version)
Welcome back PopularGem, Here is your account info and Horse Isle server status: (refresh)

You have a new account and have not yet logged in!
You have $0 in Horse Isle money on hand and $0 in the bank.
You have earned 0 of 63005 total quest points (0% Complete)
You have 0 minutes of playtime available. As a non-subscriber you get 1 additional minute every 8 minutes. (subject to change based on load) (why limited?)


- - - -
- - - - - - - - - - - - - - - -
- -POPULARGEM'S BROWN SUBSCRIPTION STATUS:
NOT SUBSCRIBED
(You have not yet subscribed) (Subscription Benefits)
NOTE: 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. -
- -
BUY 1 Month Membership $5.00usd (adds 31 days membership time to the account that you are currently logged in with.) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY Pawneer Order $8.00usd (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. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY 5 Pawneer Orders $30.00usd (save $10.00 - allows you to order 5 custom horses from Pawneer) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- - -
If you happen to have any: Redeem Horse Bucks
-
Alternative Payment Methods: Check/Cash via postal mail -

Gift Payments: Pay for a different player -

- - - -
- -

- - - - -
-
-[ Rules ] -[ Terms and Conditions ] -[ Privacy Policy ]
-[ Expected Behavior ] -[ Contact Us ] -[ Credits ]
-Copyright © 2020 Horse Isle - - - - - diff --git a/WebInterface/master-site/joinserver.php@SERVER=chestnut b/WebInterface/master-site/joinserver.php@SERVER=chestnut deleted file mode 100755 index e79a45c..0000000 --- a/WebInterface/master-site/joinserver.php@SERVER=chestnut +++ /dev/null @@ -1,300 +0,0 @@ - -HORSE ISLE - Online Multiplayer Horse Game - - - - - - - - - - - - - - - - - - - - - -
Welcome to Horse Isle 
- - - - -
CHESTNUT.HORSEISLE.COM
Logged in as: PopularGem





- -
 
-
- - - - - - -
When Ready, Enter the World



(bigger borders version)
(same window version)
Welcome back PopularGem, Here is your account info and Horse Isle server status: (refresh)

You have a new account and have not yet logged in!
You have $0 in Horse Isle money on hand and $0 in the bank.
You have earned 0 of 63005 total quest points (0% Complete)
You have 0 minutes of playtime available. As a non-subscriber you get 1 additional minute every 8 minutes. (subject to change based on load) (why limited?)


- - - -
- - - - - - - - - - - - - - - -
- -POPULARGEM'S CHESTNUT SUBSCRIPTION STATUS:
NOT SUBSCRIBED
(You have not yet subscribed) (Subscription Benefits)
NOTE: 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. -
- -
BUY 1 Month Membership $5.00usd (adds 31 days membership time to the account that you are currently logged in with.) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY Pawneer Order $8.00usd (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. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY 5 Pawneer Orders $30.00usd (save $10.00 - allows you to order 5 custom horses from Pawneer) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- - -
If you happen to have any: Redeem Horse Bucks
-
Alternative Payment Methods: Check/Cash via postal mail -

Gift Payments: Pay for a different player -

- - - -
- -

- - - - -
-
-[ Rules ] -[ Terms and Conditions ] -[ Privacy Policy ]
-[ Expected Behavior ] -[ Contact Us ] -[ Credits ]
-Copyright © 2020 Horse Isle - - - - - diff --git a/WebInterface/master-site/joinserver.php@SERVER=cremello b/WebInterface/master-site/joinserver.php@SERVER=cremello deleted file mode 100755 index c38f711..0000000 --- a/WebInterface/master-site/joinserver.php@SERVER=cremello +++ /dev/null @@ -1,300 +0,0 @@ - -HORSE ISLE - Online Multiplayer Horse Game - - - - - - - - - - - - - - - - - - - - - -
Welcome to Horse Isle 
- - - - -
CREMELLO.HORSEISLE.COM
Logged in as: PopularGem





- -
 
-
- - - - - - -
When Ready, Enter the World



(bigger borders version)
(same window version)
Welcome back PopularGem, Here is your account info and Horse Isle server status: (refresh)

You have a new account and have not yet logged in!
You have $0 in Horse Isle money on hand and $0 in the bank.
You have earned 0 of 63005 total quest points (0% Complete)
You have 0 minutes of playtime available. As a non-subscriber you get 1 additional minute every 8 minutes. (subject to change based on load) (why limited?)


- - - -
- - - - - - - - - - - - - - - -
- -POPULARGEM'S CREMELLO SUBSCRIPTION STATUS:
NOT SUBSCRIBED
(You have not yet subscribed) (Subscription Benefits)
NOTE: 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. -
- -
BUY 1 Month Membership $5.00usd (adds 31 days membership time to the account that you are currently logged in with.) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY Pawneer Order $8.00usd (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. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY 5 Pawneer Orders $30.00usd (save $10.00 - allows you to order 5 custom horses from Pawneer) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- - -
If you happen to have any: Redeem Horse Bucks
-
Alternative Payment Methods: Check/Cash via postal mail -

Gift Payments: Pay for a different player -

- - - -
- -

- - - - -
-
-[ Rules ] -[ Terms and Conditions ] -[ Privacy Policy ]
-[ Expected Behavior ] -[ Contact Us ] -[ Credits ]
-Copyright © 2020 Horse Isle - - - - - diff --git a/WebInterface/master-site/joinserver.php@SERVER=dun b/WebInterface/master-site/joinserver.php@SERVER=dun deleted file mode 100755 index c940b59..0000000 --- a/WebInterface/master-site/joinserver.php@SERVER=dun +++ /dev/null @@ -1,300 +0,0 @@ - -HORSE ISLE - Online Multiplayer Horse Game - - - - - - - - - - - - - - - - - - - - - -
Welcome to Horse Isle 
- - - - -
DUN.HORSEISLE.COM
Logged in as: PopularGem





- -
 
-
- - - - - - -
When Ready, Enter the World



(bigger borders version)
(same window version)
Welcome back PopularGem, Here is your account info and Horse Isle server status: (refresh)

You have a new account and have not yet logged in!
You have $0 in Horse Isle money on hand and $0 in the bank.
You have earned 0 of 63005 total quest points (0% Complete)
You have 0 minutes of playtime available. As a non-subscriber you get 1 additional minute every 8 minutes. (subject to change based on load) (why limited?)


- - - -
- - - - - - - - - - - - - - - -
- -POPULARGEM'S DUN SUBSCRIPTION STATUS:
NOT SUBSCRIBED
(You have not yet subscribed) (Subscription Benefits)
NOTE: 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. -
- -
BUY 1 Month Membership $5.00usd (adds 31 days membership time to the account that you are currently logged in with.) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY Pawneer Order $8.00usd (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. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY 5 Pawneer Orders $30.00usd (save $10.00 - allows you to order 5 custom horses from Pawneer) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- - -
If you happen to have any: Redeem Horse Bucks
-
Alternative Payment Methods: Check/Cash via postal mail -

Gift Payments: Pay for a different player -

- - - -
- -

- - - - -
-
-[ Rules ] -[ Terms and Conditions ] -[ Privacy Policy ]
-[ Expected Behavior ] -[ Contact Us ] -[ Credits ]
-Copyright © 2020 Horse Isle - - - - - diff --git a/WebInterface/master-site/joinserver.php@SERVER=grey b/WebInterface/master-site/joinserver.php@SERVER=grey deleted file mode 100755 index 282cbf2..0000000 --- a/WebInterface/master-site/joinserver.php@SERVER=grey +++ /dev/null @@ -1,300 +0,0 @@ - -HORSE ISLE - Online Multiplayer Horse Game - - - - - - - - - - - - - - - - - - - - - -
Welcome to Horse Isle 
- - - - -
GREY.HORSEISLE.COM
Logged in as: PopularGem





- -
 
-
- - - - - - -
When Ready, Enter the World



(bigger borders version)
(same window version)
Welcome back PopularGem, Here is your account info and Horse Isle server status: (refresh)

You have a new account and have not yet logged in!
You have $0 in Horse Isle money on hand and $0 in the bank.
You have earned 0 of 63005 total quest points (0% Complete)
You have 0 minutes of playtime available. As a non-subscriber you get 1 additional minute every 8 minutes. (subject to change based on load) (why limited?)


- - - -
- - - - - - - - - - - - - - - -
- -POPULARGEM'S GREY SUBSCRIPTION STATUS:
NOT SUBSCRIBED
(You have not yet subscribed) (Subscription Benefits)
NOTE: 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. -
- -
BUY 1 Month Membership $5.00usd (adds 31 days membership time to the account that you are currently logged in with.) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY Pawneer Order $8.00usd (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. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY 5 Pawneer Orders $30.00usd (save $10.00 - allows you to order 5 custom horses from Pawneer) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- - -
If you happen to have any: Redeem Horse Bucks
-
Alternative Payment Methods: Check/Cash via postal mail -

Gift Payments: Pay for a different player -

- - - -
- -

- - - - -
-
-[ Rules ] -[ Terms and Conditions ] -[ Privacy Policy ]
-[ Expected Behavior ] -[ Contact Us ] -[ Credits ]
-Copyright © 2020 Horse Isle - - - - - diff --git a/WebInterface/master-site/joinserver.php@SERVER=palomino b/WebInterface/master-site/joinserver.php@SERVER=palomino deleted file mode 100755 index f73d020..0000000 --- a/WebInterface/master-site/joinserver.php@SERVER=palomino +++ /dev/null @@ -1,300 +0,0 @@ - -HORSE ISLE - Online Multiplayer Horse Game - - - - - - - - - - - - - - - - - - - - - -
Welcome to Horse Isle 
- - - - -
PALOMINO.HORSEISLE.COM
Logged in as: PopularGem





- -
 
-
- - - - - - -
When Ready, Enter the World



(bigger borders version)
(same window version)
Welcome back PopularGem, Here is your account info and Horse Isle server status: (refresh)

You have a new account and have not yet logged in!
You have $0 in Horse Isle money on hand and $0 in the bank.
You have earned 0 of 63005 total quest points (0% Complete)
You have 0 minutes of playtime available. As a non-subscriber you get 1 additional minute every 8 minutes. (subject to change based on load) (why limited?)


- - - -
- - - - - - - - - - - - - - - -
- -POPULARGEM'S PALOMINO SUBSCRIPTION STATUS:
NOT SUBSCRIBED
(You have not yet subscribed) (Subscription Benefits)
NOTE: 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. -
- -
BUY 1 Month Membership $5.00usd (adds 31 days membership time to the account that you are currently logged in with.) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY Pawneer Order $8.00usd (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. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY 5 Pawneer Orders $30.00usd (save $10.00 - allows you to order 5 custom horses from Pawneer) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- - -
If you happen to have any: Redeem Horse Bucks
-
Alternative Payment Methods: Check/Cash via postal mail -

Gift Payments: Pay for a different player -

- - - -
- -

- - - - -
-
-[ Rules ] -[ Terms and Conditions ] -[ Privacy Policy ]
-[ Expected Behavior ] -[ Contact Us ] -[ Credits ]
-Copyright © 2020 Horse Isle - - - - - diff --git a/WebInterface/master-site/joinserver.php@SERVER=roan b/WebInterface/master-site/joinserver.php@SERVER=roan deleted file mode 100755 index c5426c5..0000000 --- a/WebInterface/master-site/joinserver.php@SERVER=roan +++ /dev/null @@ -1,300 +0,0 @@ - -HORSE ISLE - Online Multiplayer Horse Game - - - - - - - - - - - - - - - - - - - - - -
Welcome to Horse Isle 
- - - - -
ROAN.HORSEISLE.COM
Logged in as: PopularGem





- -
 
-
- - - - - - -
When Ready, Enter the World



(bigger borders version)
(same window version)
Welcome back PopularGem, Here is your account info and Horse Isle server status: (refresh)

You have a new account and have not yet logged in!
You have $0 in Horse Isle money on hand and $0 in the bank.
You have earned 0 of 63005 total quest points (0% Complete)
You have 0 minutes of playtime available. As a non-subscriber you get 1 additional minute every 8 minutes. (subject to change based on load) (why limited?)


- - - -
- - - - - - - - - - - - - - - -
- -POPULARGEM'S ROAN SUBSCRIPTION STATUS:
NOT SUBSCRIBED
(You have not yet subscribed) (Subscription Benefits)
NOTE: 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. -
- -
BUY 1 Month Membership $5.00usd (adds 31 days membership time to the account that you are currently logged in with.) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY Pawneer Order $8.00usd (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. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY 5 Pawneer Orders $30.00usd (save $10.00 - allows you to order 5 custom horses from Pawneer) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- - -
If you happen to have any: Redeem Horse Bucks
-
Alternative Payment Methods: Check/Cash via postal mail -

Gift Payments: Pay for a different player -

- - - -
- -

- - - - -
-
-[ Rules ] -[ Terms and Conditions ] -[ Privacy Policy ]
-[ Expected Behavior ] -[ Contact Us ] -[ Credits ]
-Copyright © 2020 Horse Isle - - - - - diff --git a/WebInterface/master-site/joinserver.php@SERVER=white b/WebInterface/master-site/joinserver.php@SERVER=white deleted file mode 100755 index fa3fa6a..0000000 --- a/WebInterface/master-site/joinserver.php@SERVER=white +++ /dev/null @@ -1,300 +0,0 @@ - -HORSE ISLE - Online Multiplayer Horse Game - - - - - - - - - - - - - - - - - - - - - -
Welcome to Horse Isle 
- - - - -
WHITE.HORSEISLE.COM
Logged in as: PopularGem





- -
 
-
- - - - - - -
When Ready, Enter the World



(bigger borders version)
(same window version)
Welcome back PopularGem, Here is your account info and Horse Isle server status: (refresh)

You have a new account and have not yet logged in!
You have $0 in Horse Isle money on hand and $0 in the bank.
You have earned 0 of 63005 total quest points (0% Complete)
You have 0 minutes of playtime available. As a non-subscriber you get 1 additional minute every 8 minutes. (subject to change based on load) (why limited?)


- - - -
- - - - - - - - - - - - - - - -
- -POPULARGEM'S WHITE SUBSCRIPTION STATUS:
NOT SUBSCRIBED
(You have not yet subscribed) (Subscription Benefits)
NOTE: 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. -
- -
BUY 1 Month Membership $5.00usd (adds 31 days membership time to the account that you are currently logged in with.) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY Pawneer Order $8.00usd (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. -
- - - - - - - - - - - - - - - - -
-
- -
- -
-BUY 5 Pawneer Orders $30.00usd (save $10.00 - allows you to order 5 custom horses from Pawneer) Non-refundable. -
- - - - - - - - - - - - - - - - -
-
- - -
If you happen to have any: Redeem Horse Bucks
-
Alternative Payment Methods: Check/Cash via postal mail -

Gift Payments: Pay for a different player -

- - - -
- -

- - - - -
-
-[ Rules ] -[ Terms and Conditions ] -[ Privacy Policy ]
-[ Expected Behavior ] -[ Contact Us ] -[ Credits ]
-Copyright © 2020 Horse Isle - - - - -