qequ [Lexaloffle Blog Feed]https://www.lexaloffle.com/bbs/?uid=42998 HackerWave <p> <table><tr><td> <a href="/bbs/?pid=91427#p"> <img src="/bbs/thumbs/pico8_haquerwave-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=91427#p"> HackerWave</a><br><br> by <a href="/bbs/?uid=42998"> qequ</a> <br><br><br> <a href="/bbs/?pid=91427#p"> [Click to Play]</a> </td></tr></table> </p> <p>A Bullet Hell style game made for the <a href="https://itch.io/jam/bullet-jam-2021">Bullet Hell Jam</a></p> https://www.lexaloffle.com/bbs/?tid=42741 https://www.lexaloffle.com/bbs/?tid=42741 Mon, 03 May 2021 15:50:10 UTC Circuit Madness <p> <table><tr><td> <a href="/bbs/?pid=89245#p"> <img src="/bbs/thumbs/pico8_circmad-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=89245#p"> circmad</a><br><br> by <a href="/bbs/?uid=42998"> qequ</a> <br><br><br> <a href="/bbs/?pid=89245#p"> [Click to Play]</a> </td></tr></table> </p> <p>Puzzle game heavily based on Android games like <a href="https://play.google.com/store/apps/details?id=com.infinitygames.loopenergy&amp;amp;hl=es&amp;amp;gl=US">ENERGY</a> or <a href="https://play.google.com/store/apps/details?id=com.balysv.loop&amp;amp;hl=es_AR&amp;amp;gl=US">Infinity Loop</a> where the cartridge generates random puzzles and you must connect energy sources with batteries. The great thing is, you can play it forever! The cartridge will always generate a new puzzle.</p> <p>Controls: Arrows to move and Z to swap electric cables.</p> https://www.lexaloffle.com/bbs/?tid=42088 https://www.lexaloffle.com/bbs/?tid=42088 Sat, 20 Mar 2021 01:27:08 UTC Pico-8 RAM memory restrictions? <p>Hey everyone! (I don't know if this is the correct place to post this, in that case let me know and I'll change it).</p> <p>I'm just starting coding on PICO-8 and checking the PICO-8 limitations popped out a question that the specs couldn't answer; Besides the cartridge limitations(that could be defined as ROM limitations of the PICO-8 machine(? ) is there a limitation about how much memory does PICO use when running a cart, i.e. RAM Memory? I mean, suppose that i have a cart that creates a lot of objects/tables, is there a restriction to the amount of objects that the RAM memory of PICO can use, or it can use the same amount memory of the host machine?</p> <p>Cheers!</p> https://www.lexaloffle.com/bbs/?tid=42051 https://www.lexaloffle.com/bbs/?tid=42051 Wed, 17 Mar 2021 17:09:45 UTC Program for export and import code <p>Hey everyone, I've made a little <em>gui program</em> with Python to export and import the lua code of the cartridges(only working for .p8 files for now).It even checks that the code size you're trying to import to the cart is less than 32k, tough i'm not sure if that is still the correct size. You can check it out <a href="https://github.com/qequ/pico8---lua">here</a>.<br /> Contributions are highly appreciated!(Specially if you know something about tkinter, because i learned it doing this program and it's quite janky lol).</p> <p>Cheers!</p> https://www.lexaloffle.com/bbs/?tid=41955 https://www.lexaloffle.com/bbs/?tid=41955 Thu, 11 Mar 2021 03:04:06 UTC No Internet Simulator <p> <table><tr><td> <a href="/bbs/?pid=87779#p"> <img src="/bbs/thumbs/pico8_nointsim-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=87779#p"> nointsim</a><br><br> by <a href="/bbs/?uid=42998"> qequ</a> <br><br><br> <a href="/bbs/?pid=87779#p"> [Click to Play]</a> </td></tr></table> </p> <p>Has ever happened to you, to have no internet connection and have no Google Chrome nearby to play the little dinosaur's game?<br /> ...Fear no more! I have crafted succesfully a great facsimile of that game, So every time you don't have internet, the only thing you have to do is load this cartridge on Pico-8.<br /> Enjoy!</p> https://www.lexaloffle.com/bbs/?tid=41621 https://www.lexaloffle.com/bbs/?tid=41621 Wed, 17 Feb 2021 00:42:17 UTC Source control version <p>Hi everyone, I'm curious about how do you keep the track of changes made into the code, given the fact that the code, and assets are keept only in cartridges. Do you use any external tool/script to code with git and then import it into a cartridge?</p> https://www.lexaloffle.com/bbs/?tid=39806 https://www.lexaloffle.com/bbs/?tid=39806 Sat, 03 Oct 2020 17:09:07 UTC Function parameter <p>Hi, i'm working on a project with this function;</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 amount_living_neighbours(x, y, board) local res = 0 for i= -1, 1 do for j = -1,1 do if i == 0 and j == 0 then goto continue end if x+i &gt;= 0 and x+i &lt;= 127 and y+j &gt;= 0 and y+j &lt;= 127 then if board[x+i][y+j] == white then res += 1 end end ::continue:: end end return res end</pre></div></td> <td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> </tr></table></div></div> <p>and the interpreter tells me that i'm attempting to index a field ? in the line &quot;if board[x+i][y+j] == white then &quot; i.e it's null. Should'nt lua interpret it as a parameter and not as a nil? i'm not acquantained to the language and seems pretty nasty to use globals with this code.</p> https://www.lexaloffle.com/bbs/?tid=39307 https://www.lexaloffle.com/bbs/?tid=39307 Fri, 21 Aug 2020 23:01:57 UTC Birthday :) <p> <table><tr><td> <a href="/bbs/?pid=80834#p"> <img src="/bbs/thumbs/pico8_jitihidohi-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=80834#p"> jitihidohi</a><br><br> by <a href="/bbs/?uid=42998"> qequ</a> <br><br><br> <a href="/bbs/?pid=80834#p"> [Click to Play]</a> </td></tr></table> </p> https://www.lexaloffle.com/bbs/?tid=39237 https://www.lexaloffle.com/bbs/?tid=39237 Sun, 16 Aug 2020 00:09:00 UTC