noSpaces102 [Lexaloffle Blog Feed]https://www.lexaloffle.com/bbs/?uid=63153 Colorful Friends <p> <table><tr><td> <a href="/bbs/?pid=112383#p"> <img src="/bbs/thumbs/pico8_colorfulfriends-6.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=112383#p"> Colorful Friends</a><br><br> by <a href="/bbs/?uid=63153"> noSpaces102</a> <br><br><br> <a href="/bbs/?pid=112383#p"> [Click to Play]</a> </td></tr></table> </p> <p>Colorful friends is a game loosely inspired by Big Bang Theory. In an episode of Big Bang Theory, Sheldon creates a puzzle where you must seat people at a dinner table. The color of the people dictates who they can sit next to and where they can sit. I made a game similar to that in Pico-8: Colorful Friends.</p> <h3>How do I play?</h3> <ul> <li>Use the Arrows to control the cursor.</li> <li><code>X</code> to scroll through the characters.</li> <li><code>C</code> or <code>Z</code> to submit your answer for verification.</li> </ul> <p>There are 25 levels in the game. In each level you must meet the demands of every person.</p> <p>Each color of person demands a certain number of neighbours (up, down, left and right) between a minimum and maximum.<br /> The min and max neighbours for a color can be seen in the bottom right corner of the screen when your cursor is over a person of that color (if you cursor is over a red person, you can see the min and max neighbours for a red person).<br /> But, just to be clear, below are the demands for each color.</p> <p>Red: Min 1, max 2 neighbours<br /> Green: Min 2, max 3 neighbours<br /> Blue: Min 3, max 4 neighbours<br /> (Light) Brown: 0 neighbours</p> <p>In the top left corner, you can see the number of people you must place for each color with vertical lines. You must place everyone down to complete the level.<br /> The amount of neighbours for the person that your cursor is on can be seen to the right of the table in the middle of the screen.</p> <p>Under the table in the middle of the screen, you might see red circles. Those are your lives. Submit incorrectly, and you lose a life. If you lose all of your lives, you are sent back a level. But-- when you submit incorrectly, small white squares will appear on the people with unmet demands.</p> <p>When you start a level, you may notice there are already people there with a yellow and orange square on top of them. That means that that person is locked (you cannot change their color).</p> <h3>Special Tiles</h3> <p>From level 13 and up, there are special tiles which appear as dots or diagonal lines. They put special effects on the person on top of them:</p> <p>Pink dot: Range +1 (they see neighbours at 2 tiles up, 2 tiles down, 2 left and 2 right)<br /> Yellow dot: Min +1 (the minimum demand for neighbours increases by 1)<br /> Purplish diagonal line: Mirror (all other tiles with the Mirror effect are identical)</p> <h3>Infinite Mode</h3> <p>If you complete the game, you unlock Infinite mode:<br /> You have 3 lives for every level that are not refilled.<br /> See how far you can get.</p> <h3>The Checkmaster</h3> <p>In the bottom right corner of the screen, you can see info on the Checkmaster.<br /> When activated, the Checkmaster will tell you if the person your cursor is on is too lonely, too crowded, or comfortable.<br /> You start with 2 uses of the Checkmaster, as you can see as the blue number in the top right corner of the screen. You receive 1 more use of the Checkmaster every 10 levels.</p> <h3>Shop</h3> <p>In the shop you can buy things with coins. Here are the options:</p> <p>Inf: +1 HP - start with 1 more health when playing infinite mode.<br /> Inf: +1 start - get a head-start in infinite mode.</p> <h3><em>Good luck!</em></h3> https://www.lexaloffle.com/bbs/?tid=47937 https://www.lexaloffle.com/bbs/?tid=47937 Fri, 27 May 2022 13:30:24 UTC Flappy UFO <p> <table><tr><td> <a href="/bbs/?pid=109779#p"> <img src="/bbs/thumbs/pico8_juheyedapo-8.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=109779#p"> Flappy UFO</a><br><br> by <a href="/bbs/?uid=63153"> noSpaces102</a> <br><br><br> <a href="/bbs/?pid=109779#p"> [Click to Play]</a> </td></tr></table> </p> <h1>Flappy UFO (flappy bird clone)</h1> <h3>How do I play?</h3> <ul> <li><code>Up Arrow</code> to jump.</li> <li> <p><code>Down Arrow</code> to drop.<br /> Don't touch the green pipes.</p> </li> <li>Hold <code>C</code> or <code>Z</code> and click <code>Up Arrow</code> or <code>Down Arrow</code> in the menu to change your location.</li> <li><code>Left Arrow</code> or <code>Right Arrow</code> in the menu to switch character.</li> <li><code>X</code> in the menu to start the game with the selected character.</li> </ul> <h3><em>Enjoy!</em></h3> https://www.lexaloffle.com/bbs/?tid=47272 https://www.lexaloffle.com/bbs/?tid=47272 Wed, 06 Apr 2022 11:52:50 UTC BrainF8 (BrainF**k) <p> <table><tr><td> <a href="/bbs/?pid=109455#p"> <img src="/bbs/thumbs/pico8_genakizori-7.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=109455#p"> BrainF8</a><br><br> by <a href="/bbs/?uid=63153"> noSpaces102</a> <br><br><br> <a href="/bbs/?pid=109455#p"> [Click to Play]</a> </td></tr></table> </p> <h1>BrainF8 (BrainF..k)</h1> <h3>What is BrainF..k?</h3> <p>BrainF..k is a programming language consisting of only 8 symbols for commands. BrainF..k also has memory cells, where you can store numbers. Every memory cell starts at 0 and will loop around if over 255 or under 0.</p> <h3>Commands</h3> <ul> <li><code>+</code>: add 1 to the current memory cell.</li> <li><code>-</code>: subtract 1 from the current memory cell.</li> <li><code>&gt;</code>: change the current memory cell to the memory cell on the right.</li> <li><code>&lt;</code>: change the current memory cell to the memory cell on the left.</li> <li><code>[</code>: start a loop that will continue as long as the current memory cell is bigger than 0.</li> <li><code>]</code>: end a loop that will continue as long as the current memory cell is bigger than 0.</li> <li><code>,</code>: set the current memory cell to the player input.</li> <li><code>.</code>: output the current memory cell as well as its corresponding character. (wip)</li> </ul> <h3>Extra Commands (only in this version of BrainF..k)</h3> <ul> <li><code>dark _</code>: (default command) terminates the program unless code follows it, in which it skips over itself and adjacent <code>dark _</code>s to the next command.</li> <li><code>#</code>: toggle running the program at 2x speed.</li> <li><code>/</code>: toggle running the program at 6x speed.</li> <li><code>^</code>: set the maximum number for player input and randomisation to the current memory cell.</li> <li><code>light _</code>: set the minimum number for player input and randomisation to the current memory cell.</li> <li><code>;</code>: wait. (it does nothing)</li> </ul> <h3>Controls</h3> <ul> <li><strong>Up Arrow</strong>, <strong>Down Arrow</strong>, <strong>Left Arrow</strong> and <strong>Right Arrow</strong> to move.</li> <li><strong>X</strong> to run the program.</li> <li><strong>C</strong>, <strong>Left Arrow</strong> and <strong>Right Arrow</strong> to change current command.</li> <li><strong>D</strong> to save project to clipboard.</li> <li><strong>Ctrl+V + Ctrl+R</strong> to load project.</li> </ul> <h3><em>Enjoy!</em></h3> https://www.lexaloffle.com/bbs/?tid=47172 https://www.lexaloffle.com/bbs/?tid=47172 Thu, 31 Mar 2022 13:56:45 UTC Juicy Fruits 2 <p> <table><tr><td> <a href="/bbs/?pid=108962#p"> <img src="/bbs/thumbs/pico8_nagabibisu-1.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=108962#p"> Juicy Fruits 2</a><br><br> by <a href="/bbs/?uid=63153"> noSpaces102</a> <br><br><br> <a href="/bbs/?pid=108962#p"> [Click to Play]</a> </td></tr></table> </p> <h3>What is it about?</h3> <p><strong>Juicy Fruits</strong> is a game about getting as many fruits as you can before dying. You select your character <table><tr><td width=32> <img src="https://www.lexaloffle.com/bbs/gfxc/63153_0.png" width=32 height=32> </td> <td valign=bottom> <a style="cursor:pointer;font-size:8pt" onclick=' var el = document.getElementById("gfxcode_63153_0"); if (el.style.display == "none") el.style.display = ""; else el.style.display = "none"; microAjax("https://www.lexaloffle.com/bbs/gfxc/63153_0.txt", function (retdata){ var el = document.getElementById("gfxcode_63153_0"); el.innerHTML = retdata; el.focus(); el.select(); } ); '> [8x8]</a> </td></tr> <tr><td colspan=2> <textarea rows=3 class=lexinput id="gfxcode_63153_0" style="width:640px;background-color:#fed;display:none;overflow:hidden; font-size:6pt;"></textarea> </td> </tr> </table> and jump into the world to dodge pesky ants <table><tr><td width=32> <img src="https://www.lexaloffle.com/bbs/gfxc/63153_1.png" width=32 height=32> </td> <td valign=bottom> <a style="cursor:pointer;font-size:8pt" onclick=' var el = document.getElementById("gfxcode_63153_1"); if (el.style.display == "none") el.style.display = ""; else el.style.display = "none"; microAjax("https://www.lexaloffle.com/bbs/gfxc/63153_1.txt", function (retdata){ var el = document.getElementById("gfxcode_63153_1"); el.innerHTML = retdata; el.focus(); el.select(); } ); '> [8x8]</a> </td></tr> <tr><td colspan=2> <textarea rows=3 class=lexinput id="gfxcode_63153_1" style="width:640px;background-color:#fed;display:none;overflow:hidden; font-size:6pt;"></textarea> </td> </tr> </table> and feast on delicious fruits <table><tr><td width=32> <img src="https://www.lexaloffle.com/bbs/gfxc/63153_2.png" width=32 height=32> </td> <td valign=bottom> <a style="cursor:pointer;font-size:8pt" onclick=' var el = document.getElementById("gfxcode_63153_2"); if (el.style.display == "none") el.style.display = ""; else el.style.display = "none"; microAjax("https://www.lexaloffle.com/bbs/gfxc/63153_2.txt", function (retdata){ var el = document.getElementById("gfxcode_63153_2"); el.innerHTML = retdata; el.focus(); el.select(); } ); '> [8x8]</a> </td></tr> <tr><td colspan=2> <textarea rows=3 class=lexinput id="gfxcode_63153_2" style="width:640px;background-color:#fed;display:none;overflow:hidden; font-size:6pt;"></textarea> </td> </tr> </table> .</p> <h3>How do I play?</h3> <p>In the menu for <strong>Juicy Fruits</strong> you use the left and right <em>arrow keys</em> to select your character and <em>X</em> to start the game.<br /> In the game part of <strong>Juicy Fruits</strong> you must use all <em>arrow keys</em> to move around and <em>X</em> to use your ability.<br /> You will gain 100 score for every fruit you get. If you touch an ant you lose 1,000 score (10 fruits) and if your score goes negative you die.<br /> Your current score is displayed in brown at the top left corner with your hi-score. (the purple number)<br /> Every 1,000 score you speed up a little bit, making the game harder.</p> <h3>Anything else?</h3> <p>This is my first game, so feedback would be helpful. :)</p> https://www.lexaloffle.com/bbs/?tid=47054 https://www.lexaloffle.com/bbs/?tid=47054 Mon, 21 Mar 2022 08:02:20 UTC Juicy Fruits <p> <table><tr><td> <a href="/bbs/?pid=107267#p"> <img src="/bbs/thumbs/pico8_warokonugu-7.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=107267#p"> Juicy Fruits</a><br><br> by <a href="/bbs/?uid=63153"> noSpaces102</a> <br><br><br> <a href="/bbs/?pid=107267#p"> [Click to Play]</a> </td></tr></table> </p> <h3>What is it about?</h3> <p><strong>Juicy Fruits</strong> is a game about getting as many fruits as you can before dying. You select your character <table><tr><td width=32> <img src="https://www.lexaloffle.com/bbs/gfxc/63153_0.png" width=32 height=32> </td> <td valign=bottom> <a style="cursor:pointer;font-size:8pt" onclick=' var el = document.getElementById("gfxcode_63153_0"); if (el.style.display == "none") el.style.display = ""; else el.style.display = "none"; microAjax("https://www.lexaloffle.com/bbs/gfxc/63153_0.txt", function (retdata){ var el = document.getElementById("gfxcode_63153_0"); el.innerHTML = retdata; el.focus(); el.select(); } ); '> [8x8]</a> </td></tr> <tr><td colspan=2> <textarea rows=3 class=lexinput id="gfxcode_63153_0" style="width:640px;background-color:#fed;display:none;overflow:hidden; font-size:6pt;"></textarea> </td> </tr> </table> and jump into the world to dodge pesky ants <table><tr><td width=32> <img src="https://www.lexaloffle.com/bbs/gfxc/63153_1.png" width=32 height=32> </td> <td valign=bottom> <a style="cursor:pointer;font-size:8pt" onclick=' var el = document.getElementById("gfxcode_63153_1"); if (el.style.display == "none") el.style.display = ""; else el.style.display = "none"; microAjax("https://www.lexaloffle.com/bbs/gfxc/63153_1.txt", function (retdata){ var el = document.getElementById("gfxcode_63153_1"); el.innerHTML = retdata; el.focus(); el.select(); } ); '> [8x8]</a> </td></tr> <tr><td colspan=2> <textarea rows=3 class=lexinput id="gfxcode_63153_1" style="width:640px;background-color:#fed;display:none;overflow:hidden; font-size:6pt;"></textarea> </td> </tr> </table> and feast on delicious fruits <table><tr><td width=32> <img src="https://www.lexaloffle.com/bbs/gfxc/63153_2.png" width=32 height=32> </td> <td valign=bottom> <a style="cursor:pointer;font-size:8pt" onclick=' var el = document.getElementById("gfxcode_63153_2"); if (el.style.display == "none") el.style.display = ""; else el.style.display = "none"; microAjax("https://www.lexaloffle.com/bbs/gfxc/63153_2.txt", function (retdata){ var el = document.getElementById("gfxcode_63153_2"); el.innerHTML = retdata; el.focus(); el.select(); } ); '> [8x8]</a> </td></tr> <tr><td colspan=2> <textarea rows=3 class=lexinput id="gfxcode_63153_2" style="width:640px;background-color:#fed;display:none;overflow:hidden; font-size:6pt;"></textarea> </td> </tr> </table> .</p> <h3>How do I play?</h3> <p>In the menu for <strong>Juicy Fruits</strong> you use the left and right <em>arrow keys</em> to select your character and <em>X</em> to start the game.<br /> In the game part of <strong>Juicy Fruits</strong> you must use all <em>arrow keys</em> to move around and <em>X</em> to use your ability.<br /> You will gain 100 score for every fruit you get. If you touch an ant you lose 1,000 score (10 fruits) and if your score goes negative you die.<br /> Your current score is displayed in brown at the top left corner with your hi-score. (the purple number)<br /> Every 1,000 score you speed up a little bit, making the game harder.</p> <h3>Anything else?</h3> <p>This is my first game, so feedback would be helpful. :)</p> https://www.lexaloffle.com/bbs/?tid=46652 https://www.lexaloffle.com/bbs/?tid=46652 Sat, 19 Feb 2022 21:58:09 UTC