Outcast Interactive [Lexaloffle Blog Feed]https://www.lexaloffle.com/bbs/?uid=44705 1k Life <p> <table><tr><td> <a href="/bbs/?pid=105907#p"> <img src="/bbs/thumbs/pico8_silicon14_1klife-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=105907#p"> silicon14_1klife</a><br><br> by <a href="/bbs/?uid=44705"> Outcast Interactive</a> <br><br><br> <a href="/bbs/?pid=105907#p"> [Click to Play]</a> </td></tr></table> </p> <p>(Warning: If you are sensitive to flashing lights, I recommend you don't run this)</p> <p>(Note: Original made for PICO-1K Jam)</p> <p>This is Conway's Game of life (<a href="https://en.wikipedia.org/wiki/Conway's_Game_of_Life">https://en.wikipedia.org/wiki/Conway's_Game_of_Life</a>) in under 400 characters (and here is the proof):</p> <div> <div class=scrollable_with_touch style="width:100%; max-width:800px; overflow:auto; margin-bottom:12px"> <table style="width:100%" cellspacing=0 cellpadding=0> <tr><td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> <td background=/gfx/code_bg0.png> <div style="font-family : courier; color: #000000; display:absolute; padding-left:10px; padding-top:4px; padding-bottom:4px; "> <pre>g={}for y=0,128 do g[y]={} for x=0,128 do if((flr(rnd(2))+1)==1)g[y][x]=true else g[y][x]=false end end ::★:: cls() ng={} for y=0,128 do ng[y]={} for x=0,128 do nc=0 for dy=-1,1 do for dx=-1,1 do if not (dy==0and dx==0)and g[y+dy]and g[y+dy][x+dx] then nc+=1 end end end ng[y][x]=nc==3or(g[y][x]and nc==2) if(g[y][x])pset(x,y,7) end end g=ng flip() goto ★</pre></div></td> <td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> </tr></table></div></div> https://www.lexaloffle.com/bbs/?tid=46368 https://www.lexaloffle.com/bbs/?tid=46368 Sat, 29 Jan 2022 17:03:12 UTC Pico-Pets <p> <table><tr><td> <a href="/bbs/?pid=105637#p"> <img src="/bbs/thumbs/pico8_silicon14_picopets_2-1.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=105637#p"> silicon14_picopets_2</a><br><br> by <a href="/bbs/?uid=44705"> Outcast Interactive</a> <br><br><br> <a href="/bbs/?pid=105637#p"> [Click to Play]</a> </td></tr></table> </p> <p>(Originally made for Newground's Pixel Day 2022 with the Newgrounds upload being <a href="https://www.newgrounds.com/portal/view/830386">&gt;&gt;Here&lt;&lt;</a>)</p> <h2>About</h2> <p>You must take care of your Pico-Pet. Make sure that they don't go hungry, become sad, or get sick. To do this, press 🅾️/Z/C/N in order to bring up the menu and to select options. Press ❎/V/M to go back. If you take good care of your pet, it might grow up to become one of eight pets!</p> <p>Game saves automatically and will restore your save when you start the game. If you want to start clean, press &quot;Enter&quot; to go into the pause menu and enter &quot;Wipe Save.&quot; Doing so will restore everything to their default values and you won't be able to restore them back. Use at your own risk.</p> <p>Special Thanks to Spaghetti for helping me with how long it takes for stuff to happen!</p> <p>(If you encounter a bug, please tell me and I should be able to fix it as soon as possible. Also stay tune as future updates will include new pets and maybe new features!) </p> <h3>V1.1</h3> <p>-updated the background</p> <p>-added four more pets</p> <p>-minor bug fix on frames</p> <p>Consider heading over to the itch.io page if you want to download a version for Windows, Mac, and Linux. Also consider donating if you want to support this and future projects. <a href="https://silicon14.itch.io/pico-pets">itch.io link</a></p> https://www.lexaloffle.com/bbs/?tid=46307 https://www.lexaloffle.com/bbs/?tid=46307 Tue, 25 Jan 2022 22:58:12 UTC Questions about making a menu <p>Hello. I'm working on a virtual pet game in pico-8 and need some help on how to make in-game menu. In the game, the menu is how you care for the pet with options like feed and cure and the options have sub menus for different options like which type of food you want. The main menu options are represented by icons but the sub menus are represented by text. The problem I'm running into is creating the menus in the first place as I can't figure out a solution to this and the options I have looked up online I can't make sense of the code.</p> https://www.lexaloffle.com/bbs/?tid=46175 https://www.lexaloffle.com/bbs/?tid=46175 Sat, 15 Jan 2022 03:28:46 UTC The White House | PicoCAD Jam Entry <img style="margin-bottom:16px" border=0 src="/media/44705/picocad_3.gif" alt="" /> <p>I molded the white house from Zork (sorry I couldn't add the mailbox)</p> https://www.lexaloffle.com/bbs/?tid=41895 https://www.lexaloffle.com/bbs/?tid=41895 Sun, 07 Mar 2021 14:53:56 UTC Captain Nimbus Main Menu Theme Now on Youtube <h1>The Captain Nimbus Main Menu Theme is now on YouTube.</h1> <img style="margin-bottom:16px" border=0 src="/media/44705/Untitled58_20201226214934.png" alt="" /> <p><a href="https://youtu.be/vIaVVjzZqXw">https://youtu.be/vIaVVjzZqXw</a></p> <p>(Like, Subscribe, Comment, or don't, it's optional)</p> https://www.lexaloffle.com/bbs/?tid=40950 https://www.lexaloffle.com/bbs/?tid=40950 Mon, 28 Dec 2020 01:44:10 UTC Mother Earth Pico-8 Cover <p> <iframe src="sfxp2.php?id=44705_2" width="402" height="300" style="border:none; overflow:hidden" scrolling="no" allow="autoplay"></iframe><a style="cursor:pointer; font-size:8pt" onclick=' var el = document.getElementById("sfxcode_44705_2"); if (el.style.display == "none") el.style.display = ""; else el.style.display = "none"; microAjax("/bbs/sfxc/44705_2.txt", function (retdata){ var el = document.getElementById("sfxcode_44705_2"); el.innerHTML = retdata; el.focus(); el.select(); } ); '> [sfx] </a> <textarea rows=3 class=lexinput id="sfxcode_44705_2" style="width:480px;background-color:#fed;display:none;overflow:hidden; font-size:4pt;"></textarea> <br /> My cover of Mother Earth from Mother/Earthbound Beginnings.</p> https://www.lexaloffle.com/bbs/?tid=40908 https://www.lexaloffle.com/bbs/?tid=40908 Thu, 24 Dec 2020 18:10:49 UTC Captain Nimbus <h1>Captain Nimbus</h1> <p> <table><tr><td> <a href="/bbs/?pid=85674#p"> <img src="/bbs/thumbs/pico8_kimuwufede-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=85674#p"> Captain Nimbus</a><br><br> by <a href="/bbs/?uid=44705"> Outcast Interactive</a> <br><br><br> <a href="/bbs/?pid=85674#p"> [Click to Play]</a> </td></tr></table> </p> <p>Welcome to Captain Nimbus, a classic arcade style shoot 'em up for the Pico-8! </p> <h2>Controls:</h2> <p>⬅️➡️⬆️⬇️: Movement<br /> ❎: Shoot Bullets</p> <h2>Enemies:</h2> <p>Green: Normal amount of health.<br /> Blue: Strong, able to shoot bullets, but also very slow.<br /> Red: Has same amount of health as green but is faster.<br /> Purple: Same as the Red but if you get next to them they then moves sideways towards your ship.</p> <h2>Credits:</h2> <p>Programming, SFX, Music, Cover Art, Idea: Silicon14 (me)<br /> Art: <a href="https://www.lexaloffle.com/bbs/?uid=32539">ReeceGames</a><br /> Background: <a href="http://whiteoutlabs.com/pico-8/tron-style-80s-animated-landscape-on-pico-8/">Whiteout Labs</a></p> <p> <table><tr><td width=0> <img src="https://www.lexaloffle.com/bbs/gfxc/44705_1.png" width=0 height=0> </td> <td valign=bottom> <a style="cursor:pointer;font-size:8pt" onclick=' var el = document.getElementById("gfxcode_44705_1"); if (el.style.display == "none") el.style.display = ""; else el.style.display = "none"; microAjax("https://www.lexaloffle.com/bbs/gfxc/44705_1.txt", function (retdata){ var el = document.getElementById("gfxcode_44705_1"); el.innerHTML = retdata; el.focus(); el.select(); } ); '> [0x0]</a> </td></tr> <tr><td colspan=2> <textarea rows=3 class=lexinput id="gfxcode_44705_1" style="width:640px;background-color:#fed;display:none;overflow:hidden; font-size:6pt;"></textarea> </td> </tr> </table> </p> https://www.lexaloffle.com/bbs/?tid=40883 https://www.lexaloffle.com/bbs/?tid=40883 Tue, 22 Dec 2020 15:00:16 UTC AORHOF Theme now on youtube <p>I have upload the AORHOF Theme onto Youtube.<br /> <a href="https://youtu.be/2E7FIgrg3s4">https://youtu.be/2E7FIgrg3s4</a></p> <p>Music: A.O.R.H.O.F. Theme<br /> Composer: RubyRed<br /> Platform: Pico-8</p> <p>(Like and Subscribe, or don't, it's optional)</p> https://www.lexaloffle.com/bbs/?tid=40268 https://www.lexaloffle.com/bbs/?tid=40268 Sat, 07 Nov 2020 15:27:36 UTC AORHOF (An Orange Robot Hands Out Flowers) <p> <table><tr><td> <a href="/bbs/?pid=81133#p"> <img src="/bbs/thumbs/pico8_heruwoguza-5.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=81133#p"> AORHOF 1.4b</a><br><br> by <a href="/bbs/?uid=44705"> Outcast Interactive</a> <br><br><br> <a href="/bbs/?pid=81133#p"> [Click to Play]</a> </td></tr></table> <br /> A simple flower picking simulator. You play as an orange robot wanting to hand out flowers. Use ⬅️➡️ to move. Go pick a flower and give them to other red robots.</p> <p>Based on a scratch project I did: <a href="https://scratch.mit.edu/projects/382959104/">https://scratch.mit.edu/projects/382959104/</a></p> <p>Programming, sfx, and art by me</p> <p>Troubleshooting Help from the Pico-8 Discord help section</p> <p>Music by <a href="https://www.lexaloffle.com/bbs/?uid=34535">RubyRed</a></p> https://www.lexaloffle.com/bbs/?tid=39343 https://www.lexaloffle.com/bbs/?tid=39343 Mon, 24 Aug 2020 22:10:41 UTC