mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-10 23:25:41 +12:00
added newuser quiz questions
This commit is contained in:
parent
6f58bbeacf
commit
21c5cf4fc4
2 changed files with 294 additions and 127 deletions
|
@ -1,135 +1,201 @@
|
|||
|
||||
<?php
|
||||
|
||||
$obj = json_decode(file_get_contents("newuserquizquestions.json"), true);
|
||||
$chatpoint = 0;
|
||||
//echo $obj["questions"][0]["title"]
|
||||
if (isset($_GET["CHATPOINT"])) {
|
||||
if ($_GET["CHATPOINT"] === "-1") {
|
||||
header('Location: /');
|
||||
}
|
||||
$chatpoint = intval($_GET["CHATPOINT"]);
|
||||
}
|
||||
if (isset($obj["questions"][$chatpoint])) {
|
||||
$question = $obj["questions"][$chatpoint];
|
||||
}
|
||||
|
||||
if (isset($question["redirect"])) {
|
||||
header('Location: '.$question["redirect"]);
|
||||
}
|
||||
?>
|
||||
|
||||
|
||||
|
||||
<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;
|
||||
}
|
||||
<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;
|
||||
}
|
||||
|
||||
</style>
|
||||
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=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>
|
||||
<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>
|
||||
<BR><TABLE BORDER=0 CELLPADDING=20><TR><TD><B>Great! We are glad you would like to play Horse Isle! For your safety, we have a few questions.</B><BR><BR><LI>REPLY WITH: <A HREF=?CHATPOINT=2>Okay sure. Go ahead and start the questions.</A></LI><BR><LI>REPLY WITH: <A HREF=?CHATPOINT=1>I do not want to answer any questions right now.</A></LI><BR></TD></TR></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>
|
||||
</TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui5.gif></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD WIDTH=100% BACKGROUND=/web/hoilgui6.gif> </TD>
|
||||
<TD WIDTH=29><IMG SRC=/web/hoilgui7.gif></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<CENTER>
|
||||
<BR>
|
||||
<TABLE BORDER=0 CELLPADDING=20>
|
||||
<TR>
|
||||
<TD><B><?php echo $question["title"] ?></B><BR><BR>
|
||||
<?php
|
||||
|
||||
foreach ($question["answers"] as &$value) {
|
||||
echo "<LI>REPLY WITH: <A HREF=?CHATPOINT=".$value["chatpoint"].">" . $value["title"] . "</A></LI><BR>";
|
||||
}
|
||||
?>
|
||||
</TD>
|
||||
</TR>
|
||||
</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>
|
101
WebInterface/master-site/web/newuserquizquestions.json
Normal file
101
WebInterface/master-site/web/newuserquizquestions.json
Normal file
|
@ -0,0 +1,101 @@
|
|||
{
|
||||
"questions": [
|
||||
{
|
||||
"title": "Great! We are glad you would like to play Horse Isle! For your safety, we have a few questions.",
|
||||
"answers": [
|
||||
{"title": "Okay sure. Go ahead and start the questions.", "chatpoint": 2},
|
||||
{"title": "I do not want to answer any questions right now.", "chatpoint": 1}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Well, please come back and take the time later! We'd love to have you join.",
|
||||
"answers": [
|
||||
{"title": "Okay. Bye.", "chatpoint": -1}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "First off, is it safe to give out your real name and address to another player AFTER you have gotten to know them well?",
|
||||
"answers": [
|
||||
{"title": "Yes, It is perfectly safe once you have chatted with them enough.", "chatpoint": 3},
|
||||
{"title": "Sometimes. It depends on the situation.", "chatpoint": 3},
|
||||
{"title": "Nope. It is never safe, nor is it permitted on Horse Isle.", "chatpoint": 4}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "WRONG! The internet is a very dangerous place, anyone can pretend to be anyone. Someone whom you have gotten to 'know' very well could be very creepy and we just will not take the chance. Come back again once you read our Rules. Thanks much!",
|
||||
"answers": [
|
||||
{"title": "Okay. Bye.", "chatpoint": -1}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "RIGHT! Good Job. Someone can pretend to be anyone. Someone whom you believe to have gotten to 'know' very well could actually be someone completely different. Now for the next question: Someone has just insulted you in the chat. What should you do?",
|
||||
"answers": [
|
||||
{"title": "Reply back to them and insult them back.", "chatpoint": 5},
|
||||
{"title": "Reply back to them and explain how they were wrong.", "chatpoint": 5},
|
||||
{"title": "Ignore the player and, if it was very mean, report it to Horse Isle Staff.", "chatpoint": 6}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "WRONG! You should always just ignore a trouble maker. There are MUTE buttons and if it gets real bad, you can report the player. Do not reply to the insult because it just makes the situation worse. Please go read the Game RULES and then come back.",
|
||||
"answers": [
|
||||
{"title": "Okay. Bye.", "chatpoint": -1}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "CORRECT! It only makes the situation worse when you respond to an insult. Now, what will happen to you if you break the rules, by harassing a player, cheating, obsenities, etc?",
|
||||
"answers": [
|
||||
{"title": "Nothing. I can talk as I like.", "chatpoint": 7},
|
||||
{"title": "My account can be closed if what I did was severe or repeated, and proper authorities will be notified if possibly criminal.", "chatpoint": 8},
|
||||
{"title": "I might get yelled at.", "chatpoint": 7}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "WRONG! There are real and swift penalties for behavior which takes away from other's enjoyment of the game. Please go read the Rules and come back after. Thanks!",
|
||||
"answers": [
|
||||
{"title": "Okay. Bye.", "chatpoint": -1}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "CORRECT! There are real and swift penalties for bad behavior.Now, this game is?",
|
||||
"answers": [
|
||||
{"title": "Just for fun! I won't take it too seriously.", "chatpoint": 9}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "GREAT! Now, if you have trouble making money in the game, should you beg for it?",
|
||||
"answers": [
|
||||
{"title": "No! That would be annoying to others in the game. I might ask for help learning how to earn money though.", "chatpoint": 10},
|
||||
{"title": "Yes! That's the best way to get money and items.", "chatpoint": 13},
|
||||
{"title": "As long as I don't do it all the time, it's all right.", "chatpoint": 13}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "GREAT! You will feel more accomplishment if you earn your own money and you won't annoy other players. Now, if you are under 13 you will do what?",
|
||||
"answers": [
|
||||
{"title": "Be sure my parent/guardian looks over the parental information on this site and have them decide whether I can play this game.", "chatpoint": 11},
|
||||
{"title": "Try and sign up for the game myself without talking to my parents.", "chatpoint": 14}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "GREAT! You are just the type of player we want to welcome to Horse Isle! Just a couple more steps now.",
|
||||
"answers": [
|
||||
{"title": "Okay. Thanks!", "chatpoint": 12}
|
||||
]
|
||||
},
|
||||
{
|
||||
"redirect": "termsandconditions.php?ACCEPT=1"
|
||||
},
|
||||
{
|
||||
"title": "WRONG! Begging takes away from the game's enjoyment for others and for yourself. It is best to earn money on your own. Feel free to ask for help if you're not sure how to earn money. Come back again once you read our Rules. Thanks much!",
|
||||
"answers": [
|
||||
{"title": "Okay. Bye.", "chatpoint": -1}
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "WRONG! You MUST have parent/guardian permission to play this game if you are under 13. It is important that the parent/guardian goes through the parental information and then decides whether you can play. Come back again once you read our Rules. Thanks much!",
|
||||
"answers": [
|
||||
{"title": "Okay. Bye.", "chatpoint": -1}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Reference in a new issue