TylerRDavis [Lexaloffle Blog Feed]https://www.lexaloffle.com/bbs/?uid=49595 Air Controller <p>Very much an early work in progress. Wanted to make a super small arcade game, something you might see with vector graphics and a roller ball for controls. </p> <p>I haven't made games in awhile, been trying to work on larger projects, and that has been pretty daunting. But then I went to Can Can Wonderland, a very cool arcade in St. Paul, Minnesota, USA. I played a bunch of super retro arcade games there, stuff like Atari Football and Anti-Aircraft. I was inspired to try to make a game like that, something with very simple controls and concepts. </p> <p>Controls:<br /> up/down/left/right - Move cursor<br /> Z - switch cursor direction between left and right<br /> X - turn closest plane in the direction of the cursor</p> <p>This is very much a proof of concept. If I go further with this, I imagine that each color plane would have to be directed to a certain edge of the circle, and later levels would have storm areas you have to avoid, and UFOs that are worth bonus points.</p> <p> <table><tr><td> <a href="/bbs/?pid=145193#p"> <img src="/bbs/thumbs/pico8_aircontrollerdemo-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=145193#p"> aircontrollerdemo</a><br><br> by <a href="/bbs/?uid=49595"> TylerRDavis</a> <br><br><br> <a href="/bbs/?pid=145193#p"> [Click to Play]</a> </td></tr></table> </p> https://www.lexaloffle.com/bbs/?tid=141291 https://www.lexaloffle.com/bbs/?tid=141291 Sun, 31 Mar 2024 00:53:24 UTC Mech Force Inferno <p>I made this game for Mech Jam, and have since fixed a few bugs. It is a turn based tactics game where you play as a team of mechs that fight wildfires.<br /> One mech can shoot a cone of water that puts out fire.<br /> Another mech digs trenches that stop the spread of fire.<br /> The helicopter can do three things: load up on water while it is over the sea, reload the cannon mech when it is next to it, or drop water to put out fire.</p> <p>Fire spreads across forest tiles in one turn, and across grassland in two turns. A level is cleared when all fire is put out. If you lose all of the cities in one level, it's game over.</p> <p>Update: Revamped tutorial, added UI hints to make it a little clearer how to reload the cannon mech using the helicopter</p> <p> <table><tr><td> <a href="/bbs/?pid=99496#p"> <img src="/bbs/thumbs/pico8_mechforceinferno-1.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=99496#p"> Mech Force Inferno 1.1</a><br><br> by <a href="/bbs/?uid=49595"> TylerRDavis</a> <br><br><br> <a href="/bbs/?pid=99496#p"> [Click to Play]</a> </td></tr></table> </p> https://www.lexaloffle.com/bbs/?tid=45222 https://www.lexaloffle.com/bbs/?tid=45222 Tue, 02 Nov 2021 01:54:11 UTC Changing pixels within a circle <p> <table><tr><td> <a href="/bbs/?pid=98594#p"> <img src="/bbs/thumbs/pico8_sesatereke-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=98594#p"> sesatereke</a><br><br> by <a href="/bbs/?uid=49595"> TylerRDavis</a> <br><br><br> <a href="/bbs/?pid=98594#p"> [Click to Play]</a> </td></tr></table> </p> <p>Someone on Twitter asked for this, and this seemed like the easiest place to share the code.</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>function preplace_in_circle(centerx,centery,radius,checkcol,newcol) local topleft={x=centerx-radius,y=centery-radius} local bottomright={x=centerx+radius,y=centery+radius} for x=topleft[&quot;x&quot;],bottomright[&quot;x&quot;] do for y=topleft[&quot;y&quot;],bottomright[&quot;y&quot;] do if (x-centerx)^2+(y-centery)^2&lt;radius^2 then if (pget(x,y)==checkcol) pset(x,y,newcol) end end end end</pre></div></td> <td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> </tr></table></div></div> <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>function psetin_circle(centerx,centery,radius,checkcol,col) local topleft={x=centerx-radius,y=centery-radius} local bottomright={x=centerx+radius,y=centery+radius} for x=topleft[&quot;x&quot;],bottomright[&quot;x&quot;] do for y=topleft[&quot;y&quot;],bottomright[&quot;y&quot;] do if (x-centerx)^2+(y-centery)^2&lt;radius^2 then pset(x,y,col) end end end end</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=44975 https://www.lexaloffle.com/bbs/?tid=44975 Wed, 13 Oct 2021 19:01:36 UTC Amika's Quest <p>Amika's Quest is a roguelite Zelda-like!</p> <h2>Controls:</h2> <p>X (X, V or M on a keyboard): Sword</p> <p>O (Z, C or N): Item</p> <p>Pause (P): Open menu</p> <p>Once items are purchased, you can switch between items in the pause menu</p> <p> <table><tr><td> <a href="/bbs/?pid=97116#p"> <img src="/bbs/thumbs/pico8_amikasquest-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=97116#p"> amikasquest</a><br><br> by <a href="/bbs/?uid=49595"> TylerRDavis</a> <br><br><br> <a href="/bbs/?pid=97116#p"> [Click to Play]</a> </td></tr></table> </p> <img style="margin-bottom:16px" border=0 src="/media/49595/amikasquest p8_4.gif" alt="" /> <img style="margin-bottom:16px" border=0 src="/media/49595/amikasquest p8_2.gif" alt="" /> <h2>Credits:</h2> <p>Design and coding: <a href="http://www.twitter.com/tylerrdavis">Tyler Davis</a><br /> Character design: Te'shon Farr<br /> Music: <a href="http://www.csdavismusic.com">Cory Shane Davis</a></p> https://www.lexaloffle.com/bbs/?tid=44570 https://www.lexaloffle.com/bbs/?tid=44570 Thu, 09 Sep 2021 21:47:46 UTC Token efficient name generator <p>I made a name generator for about 40 tokens. The nice thing about it is that no matter how many names you have in your name list, it is still just three tokens to store it, since the names are all kept in one long string.<br /> The tradeoff is that the names generated will always be the same number of characters.<br /> Name lists included are the most popular names in the U.S., pared down to 5 letter names. You can make and use your own name lists though, you just need a big string with all the names, no spaces or commas between names, and all the names need to be the same number of characters. <table><tr><td> <a href="/bbs/?pid=86564#p"> <img src="/bbs/thumbs/pico8_namegen-1.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=86564#p"> namegen</a><br><br> by <a href="/bbs/?uid=49595"> TylerRDavis</a> <br><br><br> <a href="/bbs/?pid=86564#p"> [Click to Play]</a> </td></tr></table> </p> https://www.lexaloffle.com/bbs/?tid=41202 https://www.lexaloffle.com/bbs/?tid=41202 Mon, 18 Jan 2021 17:52:57 UTC Alpine Ascent <p> <table><tr><td> <a href="/bbs/?pid=85376#p"> <img src="/bbs/thumbs/pico8_alpine11-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=85376#p"> alpine11</a><br><br> by <a href="/bbs/?uid=49595"> TylerRDavis</a> <br><br><br> <a href="/bbs/?pid=85376#p"> [Click to Play]</a> </td></tr></table> <br /> If you'd like to support my work, feel free to make a small contribution to my <a href="https://ko-fi.com/tylerrdavis">ko-fi page.</a><br /> Made a little chill climbing platformer. Let me know what you think!<br /> x- Jump<br /> o- use stamina coin<br /> When your stamina bar runs out, you can't jump or cling to walls. You can replenish stamina by landing on the ground, or spending a green coin. Gold coins will increase your max stamina.</p> <p>Patch notes:<br /> 1.1:<br /> -Onscreen timer during gameplay<br /> -Win messages for not using green coins<br /> -Minor changes to climbing intended to address no clip bugs and weird interactions when dismounting the bottom of a wall</p> <img style="margin-bottom:16px" border=0 src="/media/49595/alpine_0.gif" alt="" /> https://www.lexaloffle.com/bbs/?tid=40791 https://www.lexaloffle.com/bbs/?tid=40791 Mon, 14 Dec 2020 04:25:23 UTC