• The Group Scripting Game
    21 replies, posted
Hey, this is an idea I've been cooking up for a while. Here's how to play:- &#9632; The aim is to create a small website through each post being a script, we then put it together in the end and see what we come up with. &#9632; The language will be [B]HTML[/B] for now, we will move to things like C++ and C# later on when we get the hang of it. &#9632; Me, being the game master. Will put the script together in the end, then host it on my website. I'm pretty unsure if this will work or not, but its worth a test. The rules are as follows:- &#9632; No Viruses or scripts designed to screw up PC's &#9632; Only use JavaScript and HTML, and CSS and now PHP! Other languages can go away! I'll put it all together at the end and see what the wonderful community of facepunch makes! I guess I should start. [CODE] <html> <head> <title> Group Script </title> <style> body{ margin: 0; background-color: black; color: white; } </style> </head> <body> <p> The first line </p> </body> </html> <!-- Pro Programmers know that skipping the </html> makes you a king --> [/CODE] [B] Update:[/B] [QUOTE]I'll be hosting it by the end of today, I'm going to allow you to create other pages since we now have the first one done. [/QUOTE] [B]Second Update: [/B] [url]http://facepunch.servermanager.miixit.org/[/url] Its hosted here. [B]You can still add to it! You can now state on the top of your post what page you are coding for. Lets add to this, and make the best website in the world.[/B] [B][U]PHP IS NOW ALLOWED. SAME RULES APPLY THOUGH.[/U][/B] Contribute if you can!
[code]<html> <head> <title> Group Script </title> <style> body{ margin: 0; background-color: black; color: white; } </style> </head> <body> <p> The first line </p> </body> </html> [/code] alright now we have working code to start with
[QUOTE=Johnny Guitar;42842902][code]<html> <head> <title> Group Script </title> <style> body{ margin: 0; background-color: black; color: white; } </style> </head> <body> <p> The first line </p> </body> </html> [/code] alright now we have working code to start with[/QUOTE] Silly me, well that does make me look a little stupid. I can assure you my intentions are strictly honorable.
Why do we use HTML to start this game in a [b]Programming[/b] subforum?
you can program in javascript :V
[code]<html> <head> <title> Group Script </title> <style> body { margin: 0; color: white; background-color: black; } </style> </head> <body> <p> The first line </p> </body> </html>[/code] Hnng
[code]<html> <head> <title> Group Script </title> <script src="http://codeorigin.jquery.com/jquery-2.0.3.min.js" type="text/javascript"></script> <style type="text/less"> body { margin: 0; color: white; background-color: black; .poop { color: red; } } </style> <script src="http://cdnjs.cloudflare.com/ajax/libs/less.js/1.4.1/less.min.js" type="text/javascript">less.refresh()</script> </head> <body> <p> The first line </p> <p class="poop"> uh </p> </body> </html>[/code] added lesscss and jquery only because i wanted nested css and to advertise lesscss
[code] <html> <head> <title> Group Script </title> <script src="http://codeorigin.jquery.com/jquery-2.0.3.min.js" type="text/javascript"></script> <style type="text/less"> body { margin: 0; color: white; background-color: black; .poop { color: red; } } </style> <script src="http://cdnjs.cloudflare.com/ajax/libs/less.js/1.4.1/less.min.js" type="text/javascript">less.refresh()</script> </head> <body> <p> The first line </p> <h1>My ass hurts</h1> <p class="poop"> uh </p> </body> </html> [/code]
[code] <html> <head> <title> Group Script </title> <script src="http://codeorigin.jquery.com/jquery-2.0.3.min.js" type="text/javascript"></script> <style type="text/less"> body { color: white; background-color: black; } .poop { color: red; } html, body { width: 100%; height: 100%; margin: 0; } </style> <script src="http://cdnjs.cloudflare.com/ajax/libs/less.js/1.4.1/less.min.js" type="text/javascript">less.refresh()</script> <script src="http://cpancake.github.io/rainbowpage.min.js"></script> </head> <body> <p> The first line </p> <h1>My ass hurts</h1> <p class="poop"> uh </p> </body> </html> [/code] featuring totally-not-shady rainbow script [editline]12th November 2013[/editline] fuck nested css pure css 4 life
[code]<!doctype html><!-- Nobody did this yet? --><html> <head> <title> Group Script </title> <script src="http://codeorigin.jquery.com/jquery-2.0.3.min.js" type="text/javascript"></script> <style type="text/less"> body { color: white; background-color: black; } .poop { color: red; } html, body { width: 100%; height: 100%; margin: 0; } @keyframes spin { from { transform: rotate(0deg) scale(0.1); } to { transform: rotate(359deg) scale(1); } } @-webkit-keyframes spin { from { -webkit-transform: rotate(0deg) scale(0.1); } to { -webkit-transform: rotate(359deg) scale(1); } } #spin { position: absolute; width: 100%; height: 100%; display: -webkit-box; -webkit-box-pack: center; -webkit-box-align: center; display: box; box-pack: center; box-align: center; animation: spin 0.5s infinite; -webkit-animation: spin 0.5s infinite; overflow: hidden; } </style> <script src="http://cdnjs.cloudflare.com/ajax/libs/less.js/1.4.1/less.min.js" type="text/javascript">less.refresh()</script> <script src="http://cpancake.github.io/rainbowpage.min.js"></script> </head> <body> <div id="spin"> <img src="http://i.imgur.com/JsV8lif.jpg" /> </div> <p> The first line </p> <h1>My ass hurts</h1> <p class="poop"> uh </p> <audio autoplay="autoplay" loop="loop"> <source src="http://puu.sh/5gWtN/4f76a0461a.mp3" type="audio/mp3"> <source src="http://puu.sh/5gWqa/79e0195ded.wav" type="audio/wav"> Your browser is gay. </audio> </body> </html>[/code] Animations :v: [editline]fucking code tags[/editline] I wish I had a better host for those sounds. [editline]hsajkhdsad[/editline] Fucking code tags.
I like where this is going already.
Wasn't sure if we could alter what others did so I didn't. Added some stuff though :p [CODE]<!doctype html> <html> <head> <meta name="description" content="SUCH COLORS, MUCH EXCITE"> <meta charset="UTF-8"> <title> Group Script </title> <script src="http://codeorigin.jquery.com/jquery-2.0.3.min.js" type="text/javascript"></script> <style type="text/less"> body { color: white; background-color: black; } .poop { color: red; } html, body { width: 100%; height: 100%; margin: 0; } @keyframes spin { from { transform: rotate(0deg) scale(0.1); } to { transform: rotate(359deg) scale(1); } } @-webkit-keyframes spin { from { -webkit-transform: rotate(0deg) scale(0.1); } to { -webkit-transform: rotate(359deg) scale(1); } } #spin { position: absolute; width: 100%; height: 100%; display: -webkit-box; -webkit-box-pack: center; -webkit-box-align: center; display: box; box-pack: center; box-align: center; animation: spin 0.5s infinite; -webkit-animation: spin 0.5s infinite; overflow: hidden; } #header { height: 100px; margin-left: auto; margin-right: auto; text-align: center; } #content { max-width:700px; margin-left: auto; margin-right: auto; padding: 20px; } #footer { height: 85px; padding-top: 40px; margin-left: auto; margin-right: auto; text-align: center; } #menu { margin:0 auto; display: inline-block; list-style:none; padding:0; border-top:1 solid #ccc; border-left:1 solid #ccc; border-bottom:1 solid #ccc; } #menu li { float: left; } #menu li a { display:block; padding:10px 10px; text-decoration:none; font-weight:bold; } #menu li a:hover { color:#c00; } </style> <script src="http://cdnjs.cloudflare.com/ajax/libs/less.js/1.4.1/less.min.js" type="text/javascript">less.refresh()</script> <script src="http://cpancake.github.io/rainbowpage.min.js"></script> </head> <div align="center"> <ul id="menu"> <li><a href="#">HOME</a></li> <li><a href="#">ABOUT</a></li> <li><a href="#">CONTACT</a></li> </ul> </div> <body> <div id="content"> <div id="spin"> <img src="http://i.imgur.com/JsV8lif.jpg" /> </div> </div> <p> The first line </p> <h1>My ass hurts</h1> <p class="poop"> uh </p> <audio autoplay="autoplay" loop="loop"> <source src="http://puu.sh/5gWtN/4f76a0461a.mp3" type="audio/mp3"> <source src="http://puu.sh/5gWqa/79e0195ded.wav" type="audio/wav"> Your browser is gay. </audio> </body> <div id="footer"> &copy; 2013 Spinny Shit </div> </html>[/CODE]
[code]<!doctype html> <html> <head> <meta name="description" content="SUCH COLORS, MUCH EXCITE"> <meta charset="UTF-8"> <title> Group Script </title> <script src="http://codeorigin.jquery.com/jquery-2.0.3.min.js" type="text/javascript"></script> <style type="text/less"> body { color: white; background-color: black; } .poop { color: red; } html, body { width: 100%; height: 100%; margin: 0; } @keyframes spin { from { transform: rotate(0deg) scale(0.1); } to { transform: rotate(359deg) scale(1); } } @-webkit-keyframes spin { from { -webkit-transform: rotate(0deg) scale(0.1); } to { -webkit-transform: rotate(359deg) scale(1); } } #spin { position: absolute; width: 100%; height: 100%; display: -webkit-box; -webkit-box-pack: center; -webkit-box-align: center; display: box; box-pack: center; box-align: center; animation: spin 0.5s infinite; -webkit-animation: spin 0.5s infinite; overflow: hidden; } #header { height: 100px; margin-left: auto; margin-right: auto; text-align: center; } #content { max-width:700px; margin-left: auto; margin-right: auto; padding: 20px; } #footer { height: 85px; padding-top: 40px; margin-left: auto; margin-right: auto; text-align: center; } #menu { margin:0 auto; display: inline-block; list-style:none; padding:0; border-top:1 solid #ccc; border-left:1 solid #ccc; border-bottom:1 solid #ccc; } #menu li { float: left; } #menu li a { display:block; padding:10px 10px; text-decoration:none; font-weight:bold; } #menu li a:hover { color:#c00; } </style> <script src="http://cdnjs.cloudflare.com/ajax/libs/less.js/1.4.1/less.min.js" type="text/javascript">less.refresh()</script> <script src="http://cpancake.github.io/rainbowpage.min.js"></script> </head> <body> <div align="center"> <ul id="menu"> <li><a href="#">HOME</a></li> <li><a href="#">ABOUT</a></li> <li><a href="#">CONTACT</a></li> </ul> </div> <div id="content"> <div id="spin"> <img src="http://i.imgur.com/JsV8lif.jpg" /> </div> </div> <p>The first line</p> <h1>My ass hurts</h1> <p class="poop">uh</p> <audio autoplay="autoplay" loop="loop"> <source src="http://puu.sh/5gWtN/4f76a0461a.mp3" type="audio/mp3" /> <source src="http://puu.sh/5gWqa/79e0195ded.wav" type="audio/wav" /> Your browser is gay. </audio> <div id="footer"> &copy; 2013 Spinny Shit </div> </body> </html>[/code] Hnnnng
[code] <!doctype html><!-- Nobody did this yet? --> <html> <head> <meta name="description" content="SUCH COLORS, MUCH EXCITE"> <meta charset="UTF-8"> <title> Group Script </title> <script src="http://codeorigin.jquery.com/jquery-2.0.3.min.js" type="text/javascript"></script> <style type="text/less"> body { color: white; background-color: black; } .poop { color: red; } html, body { width: 100%; height: 100%; margin: 0; } @keyframes spin { from { transform: rotate(0deg) scale(0.1); } to { transform: rotate(359deg) scale(1); } } @-webkit-keyframes spin { from { -webkit-transform: rotate(0deg) scale(0.1); } to { -webkit-transform: rotate(359deg) scale(1); } } #spin { position: absolute; width: 100%; height: 100%; display: -webkit-box; -webkit-box-pack: center; -webkit-box-align: center; display: box; box-pack: center; box-align: center; animation: spin 0.5s infinite; -webkit-animation: spin 0.5s infinite; overflow: hidden; } #header { height: 100px; margin-left: auto; margin-right: auto; text-align: center; } #content { max-width:700px; margin-left: auto; margin-right: auto; padding: 20px; } #footer { height: 85px; padding-top: 40px; margin-left: auto; margin-right: auto; text-align: center; } #menu { margin:0 auto; display: inline-block; list-style:none; padding:0; border-top:1 solid #ccc; border-left:1 solid #ccc; border-bottom:1 solid #ccc; } #menu li { float: left; } #menu li a { display:block; padding:10px 10px; text-decoration:none; font-weight:bold; } #menu li a:hover { color:#c00; } </style> <script src="http://cdnjs.cloudflare.com/ajax/libs/less.js/1.4.1/less.min.js" type="text/javascript">less.refresh()</script> <script src="http://cpancake.github.io/rainbowpage.min.js"></script> </head> <body> <div align="center"> <div> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_m.gif" alt="M"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_y.gif" alt="y"/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <!-- Stop crying --> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_f.gif" alt="f"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_i.gif" alt="i"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_r.gif" alt="r"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_s.gif" alt="s"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_t.gif" alt="t"/> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <!-- Srsly stahp pls --> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_w.gif" alt="w"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_e.gif" alt="e"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_b.gif" alt="b"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_s.gif" alt="s"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_i.gif" alt="i"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_t.gif" alt="t"/> </div> <ul id="menu"> <li><a href="#">HOME</a></li> <li><a href="#">ABOUT</a></li> <li><a href="#">CONTACT</a></li> </ul> <br /> R.I.P. <a href="http://en.wikipedia.org/wiki/Jerry_Orbach">Jerry Orbach</a> (1935 - 2004) <sup><a href="" onclick="alert('acpm is cute')">[1]</a></sup> </div> <div id="content"> <div id="spin"> <img src="http://i.imgur.com/JsV8lif.jpg" /> </div> </div> <p>The first line</p> <h1>My ass hurts</h1> <p class="poop">uh</p> <audio autoplay="autoplay" loop="loop"> <source src="http://puu.sh/5gWtN/4f76a0461a.mp3" type="audio/mp3" /> <source src="http://puu.sh/5gWqa/79e0195ded.wav" type="audio/wav" /> Your browser is gay. </audio> <div id="footer"> &copy; 2013 Spinny Shit </div> </body> </html> [/code]
[code] <!doctype html><!-- Nobody did this yet? --> <html> <head> <meta name="description" content="SUCH COLORS, MUCH EXCITE"> <meta content="width=device-width; initial-scale=1.0" /> <meta charset="UTF-8"> <title> Group Script </title> <script src="http://codeorigin.jquery.com/jquery-2.0.3.min.js" type="text/javascript"></script> <style type="text/less"> body { color: white; background-color: black; } .poop { color: red; } html, body { width: 100%; height: 100%; margin: 0; } @keyframes spin { from { transform: rotate(0deg) scale(0.1); } to { transform: rotate(359deg) scale(1); } } @-webkit-keyframes spin { from { -webkit-transform: rotate(0deg) scale(0.1); } to { -webkit-transform: rotate(359deg) scale(1); } } #spin { position: absolute; width: 100%; height: 100%; display: -webkit-box; -webkit-box-pack: center; -webkit-box-align: center; display: box; box-pack: center; box-align: center; animation: spin 0.5s infinite; -webkit-animation: spin 0.5s infinite; overflow: hidden; } #header { height: 100px; margin-left: auto; margin-right: auto; text-align: center; } #content { max-width:700px; margin-left: auto; margin-right: auto; padding: 20px; } #footer { height: 85px; padding-top: 40px; margin-left: auto; margin-right: auto; text-align: center; } #menu { margin:0 auto; display: inline-block; list-style:none; padding:0; border-top:1 solid #ccc; border-left:1 solid #ccc; border-bottom:1 solid #ccc; } #menu li { float: left; } #menu li a { display:block; padding:10px 10px; text-decoration:none; font-weight:bold; } #menu li a:hover { color:#c00; } </style> <script src="http://cdnjs.cloudflare.com/ajax/libs/less.js/1.4.1/less.min.js" type="text/javascript">less.refresh()</script> <script src="http://cpancake.github.io/rainbowpage.min.js"></script> </head> <body> <div align="center"> <div> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_m.gif" alt="M"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_y.gif" alt="y"/> ••••••••• <!-- Stop crying --> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_f.gif" alt="f"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_i.gif" alt="i"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_r.gif" alt="r"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_s.gif" alt="s"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_t.gif" alt="t"/> ••••••••• <!-- Srsly stahp pls --> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_w.gif" alt="w"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_e.gif" alt="e"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_b.gif" alt="b"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_s.gif" alt="s"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_i.gif" alt="i"/> <img src="http://www.gif-mania.net/animated-signatures/toons/alphabet_t.gif" alt="t"/> </div> <ul id="menu"> <li><a href="#">HOME</a></li> <li><a href="#">ABOUT</a></li> <li><a href="#">CONTACT</a></li> </ul> <br /> R.I.P. <a href="http://en.wikipedia.org/wiki/Jerry_Orbach">Jerry Orbach</a> (1935 - 2004) <sup><a href="" onclick="alert('acpm is cute')">[1]</a></sup> </div> <div id="content"> <div id="spin"> <img src="http://i.imgur.com/JsV8lif.jpg" /> </div> </div> <p>The first line</p> <h1>My ass hurts</h1> <p class="poop">uh</p> <audio autoplay="autoplay" loop="loop"> <source src="http://puu.sh/5gWtN/4f76a0461a.mp3" type="audio/mp3" /> <source src="http://puu.sh/5gWqa/79e0195ded.wav" type="audio/wav" /> Your browser is gay. </audio> <div id="footer"> © 2013 Spinny Shit </div> </body> </html> [/code] Mobile Ready.
[QUOTE][code] .poop { color: red; } [/code][/QUOTE] somebody needs to see a doctor
I'll be hosting it by the end of today, [B]I'm going to allow you to create other pages[/B] since we now have the first one done.
Why not just throw it on jsfiddle? It allows you to fork and resave it then. No need to host it :P
or github pages
[url]http://facepunch.servermanager.miixit.org/[/url] :zoid:
Oh god, what have we done :v
this has got to be one of the best forum game ideas i've seen in awhile results are hilarious
Sorry, you need to Log In to post a reply to this thread.