Astorek86 [Lexaloffle Blog Feed]https://www.lexaloffle.com/bbs/?uid=28088 Map-Collision Example <p>I'm not sure if I should post this here or in the &quot;Tutorials&quot;-Section, but I think it better fits here:</p> <p> <table><tr><td> <a href="/bbs/?pid=105154#p"> <img src="/bbs/thumbs/pico8_pimegutezu-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=105154#p"> Map-Collision Example 1.0</a><br><br> by <a href="/bbs/?uid=28088"> Astorek86</a> <br><br><br> <a href="/bbs/?pid=105154#p"> [Click to Play]</a> </td></tr></table> </p> <p>I wanted to show a way on how to do Map-Collision, using the Flag-System in PICO8. This Function also takes care if your Sprite is wider or taller than 8 Pixels.</p> <p>Basically you give a Function a few Parameters (like Position, Width &amp; Height from the Player) and this Function checks the Flags from the Tile-Map on certain Pixels, depending on the Player-Position and it's Width/Height. You can use the Return-Value from this Function to allow or deny Player-Movement.</p> <hr /> <p>Before I show the &quot;How-To use the essential Function&quot;, there's some preparation that you need to do.</p> <p>For example, you have a Table called &quot;Player&quot; (like in a few NerdyTeacher-Tutorials) with some Variables, like:</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>player = {} player.x = 3 player.y = 4 -- etc.</pre></div></td> <td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> </tr></table></div></div> <p>This needs some Addition to properly use the Collision-Function:</p> <ul> <li>&quot;w&quot; for the Width of the Sprites in Pixels Minus 1.</li> <li>&quot;h&quot; for the Height of the Sprites in Pixels Minus 1.</li> <li>&quot;ox&quot; for Offset-X of the Sprites (black/transparent color) until Character starts - from left.</li> <li>&quot;oy&quot; for Offset-Y of the Sprites (black/transparent color) until Character starts - from top.</li> </ul> <p>Example for this Cart:</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>player = { w=3, h=13, ox=2, oy=1, }</pre></div></td> <td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> </tr></table></div></div> <p>Why these Values? Because:<br /> <div><div><input type="button" value=" Show " onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = ''; this.innerText = ''; this.value = ' Hide '; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = ' Show '; }"></div><div><div style="display: none;"></p> <img style="margin-bottom:16px" border=0 src="/media/28088/18_2022_01_15_23_46_48_COLLISION.P8_PICO_8_.png" alt="" /> <p></div></div></div><br /> For your own Sprites, you can change these Values as you like.</p> <hr /> <p>After that, I can show the Function I mentioned:</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>is_solid(opt,f,ox,oy,flags,debug)</pre></div></td> <td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> </tr></table></div></div> <p>This Function can be called if you want to check if a Map-Collision happened and returns <code>TRUE</code> if detected, otherwise <code>FALSE</code>.</p> <p>A quick description of the Parameters:</p> <ul> <li><code>opt</code> == a String that describes on which places should the Collision be checked. Possible Values are: <ul> <li><code>full</code>, <code>left</code>, <code>right</code>, <code>up</code>, <code>down</code>, <code>lup</code>, <code>rup</code>, <code>ldown</code>, <code>rdown</code></li> </ul></li> <li><code>f</code> == Usually the Player in a Table. Generally a Table that contains at least: <ul> <li><code>w</code>, <code>h</code>, <code>ox</code>, <code>oy</code></li> </ul></li> <li><code>ox</code> and <code>oy</code> == Offset-X and Offset-Y, that will automatically be added to the &quot;Calculation&quot; of the Map-Collision. <ul> <li>This is really useful to check a possible Player-Movement, but BEFORE the Player has moved. You can check if Player-Movement to the &quot;ox&quot;-/&quot;oy&quot;-Position are possible without Collisions. If so, move the Player to the new Location...</li> </ul></li> <li><code>flags</code> == A Number or a sequential Table of Numbers, which represents the Flags that will be checked for the Map-Collision. <ul> <li>It works like this: If this Parameter has a Table like, for example <code>{1,2,0}</code>, it will check if the Tile has the Flag 1, OR the Flag 2, OR the FLAG 0 activated. If the Collision-System finds at least one Tile where at least one Flag is activated, the Function will return <code>TRUE</code>.</li> </ul></li> <li><code>debug</code> == Boolean. If <code>true</code>, it will draw red Pixels to the &quot;Collision-Positions&quot;. Useful for Debugging and Testing. <ul> <li>If you do that, then you should do that inside the <code>_DRAW</code>-Function. Keep in mind that this Function doesn't block anything, it just checks the Pixels around a Sprite and reads the Tile-Flags from these.</li> </ul></li> </ul> <hr /> <h1>How to use it</h1> <p>First things first: You set up the <code>_INIT</code> and initialise the Player:</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 _init() player = { x=5*8, y=2*8, w=3, h=13, ox=2, oy=1, } 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>Of course, modify these Values as you like to match your own Sprites.</p> <hr /> <p>Inside the <code>_DRAW</code>-Function, simply clear the Screen, draw the Map and the Player-Sprite:</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 _draw() cls() map() spr(1, player.x, player.y) 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>If you want a Debug-Output for the Collision Detection, you can add this Line in the 2nd last Line:</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> is_solid(&quot;full&quot;,player,0,0,{},true)</pre></div></td> <td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> </tr></table></div></div> <hr /> <p>Inside the <code>_UPDATE</code>-Function, first thing to do is check Player-Input and saving them in Variables:</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 _update() local dx,dy=0,0 if(btn(⬅️))dx=-1 if(btn(➡️))dx+=1 if(btn(⬆️))dy=-1 if(btn(⬇️))dy+=1</pre></div></td> <td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> </tr></table></div></div> <p>After that, you can check if the new Location (that's the Location where the Player wants to move) has no Collision. If that's the case, you can simply move the Player to the new Location:</p> <p>First, the X-Coordinate</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> if not is_solid(&quot;full&quot;,player,dx,0,7) then player.x+=dx 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>Parameters are <code>&quot;full&quot;</code> for a &quot;full-sprite-check&quot; to the new Position, <code>player</code> for the Player-Table, <code>dx</code> for the additional Movement-Position (because we won't wanna check the &quot;old&quot; Player-Position for Map-Collision, we wanna check the new Location if there's a Map-Collison...). <code>0</code> is the Additional &quot;Offset-Y&quot;. We wanna check this Value a little bit later (the Reason will be explained soon*). The last Parameter <code>7</code> (could also be <code>{7}</code>) checks the Flags of the Tiles. If one Tile has the Flag &quot;7&quot; activated, the Function will return &quot;TRUE&quot;, the Line after the IF-Command wouldn't be executed and the Player won't move to the new Position.</p> <p>The last four Lines inside &quot;_UPDATE&quot; are:</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> if not is_solid(&quot;full&quot;,player,0,dy,7) then player.y+=dy 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> <p>It's basically the same as before, but now for the Y-Position.</p> <p>*Maybe you have the Question &quot;Why do we check X and Y seperately?&quot;. Because you won't completely stop the Movement if you bump into a &quot;forbidden&quot; Tile. For example, if you move diagonally and check the OX- and OY-Collision at the same time, the Player will instantly stop moving around. I think for the sake of &quot;Game-feel&quot;, it's better that the Player could &quot;Slide around&quot; on the Tile...</p> <hr /> <p>Hope this Example could be useful for you. I included some additional &quot;flavors&quot; on the Cartridge (like Flipping the Sprite on X and Y, and drawing the Sprite in the right size depending on the previous discussed Values), but it's basically the same as the Example I described^^. Cartridge is also commented as well.</p> <p>Would like to hear Feedback and Stuff. Also if you found an error (I hope there are no errors^^) please let me know. Use the Source as you like^^.</p> <p>Last but not least, the whole Stuff without any comment for Copy'n Pasting:<br /> <div><div><input type="button" value=" Show " onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = ''; this.innerText = ''; this.value = ' Hide '; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = ' Show '; }"></div><div><div style="display: none;"></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 is_solid(opt,f,ox,oy,flags,debug) local collist={} ox = ox or 0 oy = oy or 0 flags=flags or {0} if(type(flags)!=&quot;table&quot;)flags={flags} local ix=f.x+f.ox+ox local iy=f.y+f.oy+oy for x=ix,ix+f.w+7,8 do for y=iy,iy+f.h+7,8 do if opt==nil or opt==&quot;full&quot; or opt==&quot;left&quot; and x==ix or opt==&quot;right&quot; and x&gt;=ix+f.w or opt==&quot;up&quot; and y==iy or opt==&quot;down&quot; and y&gt;=iy+f.h or opt==&quot;rdown&quot; and y&gt;=iy+f.h and x&gt;=ix+f.w or opt==&quot;ldown&quot; and x==ix and y&gt;=iy+f.h or opt==&quot;rup&quot; and y==iy and x&gt;=ix+f.w or opt==&quot;lup&quot; and y==iy and x==ix then add(collist, {x=min(x,ix+f.w), y=min(y,iy+f.h)}) end end end if(debug)print(#collist) for c in all(collist) do if(debug)pset(c.x,c.y,8) for v in all(flags) do if(fget(mget(c.x/8,c.y/8),v))return true end end return false 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></div></div></div></p> <p>Wish you a good day! :)</p> https://www.lexaloffle.com/bbs/?tid=46181 https://www.lexaloffle.com/bbs/?tid=46181 Sat, 15 Jan 2022 23:51:01 UTC Feature Request for Handhelds: &quot;-run&quot; should always close PICO8, even on crash <p>Hey there,</p> <p>A Feature Request for the PICO8-Users out there which use a Handheld (like Anbernic RG351P/M/V) to play PICO8-Games:</p> <p>Normally, you can start every Cartridge directly using &quot;-run&quot; in the Command Line:</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>pico8 -run some_cartridge.p8</pre></div></td> <td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> </tr></table></div></div> <p>On Handheld-Devices, that's great, because you can Pause and Shutdown PICO8 with the given Controls.</p> <p>HOWEVER: I was able to run a Cartridge that &quot;crashed&quot; PICO8 (means it shows some Lua-Errors and the Program stops running). But after that Crash, PICO8 doesn't quit, instead it throws me into the Command line, like:<br /> (example crash)</p> <img style="margin-bottom:16px" border=0 src="/media/28088/8_loschen.png" alt="" /> <p>But that's not good if that happens on a Handheld, because you have no opportunity now to close PICO8 without a Keyboard (or something hacky like SSH etc.). After that, I have no other choice than Poweroff that Handheld and hoping that the Filesystem on the SD-Card don't get corrupted.</p> https://www.lexaloffle.com/bbs/?tid=43908 https://www.lexaloffle.com/bbs/?tid=43908 Wed, 21 Jul 2021 16:11:06 UTC Porklike in German/Deutsch (mod) <p>Hello there,</p> <p>Krystman made an excellent Game called Porklike, you can find it here: <a href="https://www.lexaloffle.com/bbs/?pid=94445">https://www.lexaloffle.com/bbs/?pid=94445</a></p> <p>I made a mod to this game which adds a german translation to it. Right after the Game starts, you'll be asked on which language you want to play.</p> <p>I would've liked to add some more Functionality (like, a menuitem), but there wasn't enough tokens left to do so^^.</p> <p>Here's the Mod:<br /> <table><tr><td> <a href="/bbs/?pid=94539#p"> <img src="/bbs/thumbs/pico8_porklike_de-4.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=94539#p"> porklike_de</a><br><br> by <a href="/bbs/?uid=28088"> Astorek86</a> <br><br><br> <a href="/bbs/?pid=94539#p"> [Click to Play]</a> </td></tr></table> </p> <p>Changelog:<br /> <div><div><input type="button" value=" Show " onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = ''; this.innerText = ''; this.value = ' Hide '; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = ' Show '; }"></div><div><div style="display: none;"></p> <h3>porklike_de-4</h3> <ul> <li>Oops, the last Patch didn't fix anything (&quot;save @clip&quot; seems to work a little different...). Now THIS Patch does what the previous Patch describes^^.</li> </ul> <h3>porklike_de-3</h3> <ul> <li>&quot;Slap&quot; (&quot;Ohrfeige&quot;) was mistakenly described as a Weapon that doesn't deal Damage. Fixed.</li> </ul> <h3>porklike_de-2</h3> <ul> <li>Forgot &quot;:&quot; after &quot;Wurstchain&quot;/&quot;Wurstkette&quot;, which looks odd after finishing the Game (&quot;Wurstchain1&quot;). Fixed.</li> </ul> <h3>porklike_de-1</h3> <ul> <li>Somehow I didn't realised that the &quot;Push&quot;-Attack (&quot;Sto&szlig;&quot;) is actually a ranged attack (though even the Original Text says that. Oops!). The German Description in the first Version doesn't tell you that, this Version does^^.</li> </ul> <h3>porklike_de-0</h3> <ul> <li>First release.</li> </ul> <p>--</p> <h3>What and how did I changed on the code?</h3> <ul> <li>I have to make spaces for more Tokens, because the Original-Game has only 22 tokens left. Luckily, zep released a PICO8-Version that includes the &quot;split&quot;-command. Krystman used two Functions called &quot;explode&quot; and &quot;explodeval&quot; who does the same, so I replaced every &quot;explode&quot; with &quot;split&quot; and deleted these two Functions. After that, ~100 Tokens were here to use.</li> <li>After that, there still wasn't enough tokens left for me, so I removed every &quot;()&quot; that weren't needed (like, <code>split(&quot;XYZ&quot;) --&gt; split&quot;XYZ&quot;</code>.</li> <li>I want to use &quot;german umlauts&quot; (&auml;&ouml;&uuml;&szlig;) on the Game, so I used the new ability to change the Fonts in PICO8. zep made a Cart for it: <a href="https://www.lexaloffle.com/bbs/?tid=41544">https://www.lexaloffle.com/bbs/?tid=41544</a></li> <li>I also slightly modified the UI on the Game to have spaces for the translated words. German translations need more place^^.</li> <li>There's a place in the Code where I used a &quot;mid&quot;-command, to prevent showed text Off-Screen.</li> <li>An obvious one: Every word was put in a table, and every &quot;print&quot;-command uses the table. Easy^^.</li> <li>There are a few Codes that are written like this in the Original Game: <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>add (x, y) return y</pre></div></td> <td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> </tr></table></div></div> <p>I had to change it on one or two places in the code (&quot;return add...&quot;), to squeeze a few more tokens out of the File.</p></li> </ul> <p>I really hope that I didn't write a few bugs on accident. I played this changed Cartridge a few times and never found a bug. (But I never reached the end, because I'm too bad in this Game^^).<br /> </div></div></div></p> https://www.lexaloffle.com/bbs/?tid=43691 https://www.lexaloffle.com/bbs/?tid=43691 Wed, 07 Jul 2021 07:21:51 UTC #FONT_SNIPPET with original font <p>Hey there,</p> <p>In the 0.2.2 release, zep made a small tool for creating custom fonts:<br /> <a href="https://www.lexaloffle.com/bbs/?tid=41544">https://www.lexaloffle.com/bbs/?tid=41544</a></p> <p>I'd like to just slightly modify the Original-Font that provides PICO-8 by itself. I thought I could find an easy way to implement the Original-Font into the Spritesheet... But it seems there's no easy way to do so? And nobody did this before? So I decided to modify the Spritesheet, include the Original-Chars with it.</p> <p>It SHOULD be the Original-Chars; if you find an error (misplaced Pixel or something like that), feel free to tell me so I can fix this :) .</p> <p>--</p> <p>While running PICO-8, type</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>import #font_orig</pre></div></td> <td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> </tr></table></div></div> <p>to load the newest Version of the Cartridge.</p> <p> <table><tr><td> <a href="/bbs/?pid=94510#p"> <img src="/bbs/thumbs/pico8_font_orig-2.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=94510#p"> font_orig</a><br><br> by <a href="/bbs/?uid=28088"> Astorek86</a> <br><br><br> <a href="/bbs/?pid=94510#p"> [Click to Play]</a> </td></tr></table> </p> <p>EDIT: Of course, feel free to use it as you like^^.</p> <p>Changelog:<br /> <div><div><input type="button" value=" Show " onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = ''; this.innerText = ''; this.value = ' Hide '; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = ' Show '; }"></div><div><div style="display: none;"></p> <h4>font_orig-1</h4> <ul> <li>Just forgotten to capture the Label.</li> </ul> <h4>font_orig-2</h4> <ul> <li>&quot;U&quot; was wrong; fixed.<br /> </div></div></div></li> </ul> https://www.lexaloffle.com/bbs/?tid=43685 https://www.lexaloffle.com/bbs/?tid=43685 Tue, 06 Jul 2021 08:13:15 UTC Picodokon <p>Hi @ all,</p> <p>I like those old &quot;Oddworld&quot;-Games (&quot;Abe's Oddyssey&quot; and &quot;Abe's Exoddus&quot;). Just experimenting with a &quot;Gamespeak&quot;-like Control:</p> <p> <table><tr><td> <a href="/bbs/?pid=90143#p"> <img src="/bbs/thumbs/pico8_picodokon-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=90143#p"> picodokon</a><br><br> by <a href="/bbs/?uid=28088"> Astorek86</a> <br><br><br> <a href="/bbs/?pid=90143#p"> [Click to Play]</a> </td></tr></table> </p> <p>Absolutely nothing is finished, just the Gamespeak, Collision and the Animation works. No Gameplay so far.</p> <p>For Gamespeak, hold Z and<br /> UP: &quot;Hello&quot;<br /> RIGHT: &quot;Follow Me&quot;<br /> DOWN: &quot;Wait&quot;<br /> LEFT: &quot;Everyone&quot;</p> <p>I really want to make an Oddworld-like Demake, but I can't promise anything^^. I'll try to work on that Project^^...</p> https://www.lexaloffle.com/bbs/?tid=42365 https://www.lexaloffle.com/bbs/?tid=42365 Wed, 07 Apr 2021 21:22:27 UTC Shadow Repeats YOU (OHGJ-Entry) <p> <table><tr><td> <a href="/bbs/?pid=86087#p"> <img src="/bbs/thumbs/pico8_shadowrepeatsyou-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=86087#p"> shadowrepeatsyou</a><br><br> by <a href="/bbs/?uid=28088"> Astorek86</a> <br><br><br> <a href="/bbs/?pid=86087#p"> [Click to Play]</a> </td></tr></table> </p> <p>Entry for the One Hour Game Jam 297th, Theme: Follow.</p> <p><a href="https://onehourgamejam.com/">https://onehourgamejam.com/</a></p> <p>A Shadow is following you, and you need to reach the Goal. Your Shadow(s) also need to reach a Goal.</p> <p>Note:<br /> It took me four Hours instead of only one to make this Cart. It would be dishonest to other Jammers if I would hide that fact^^.</p> <p>I like the Idea, maybe I'll work on some more Levels and a better presentation, but I really don't know atm^^.</p> <p>Have Fun!</p> https://www.lexaloffle.com/bbs/?tid=41048 https://www.lexaloffle.com/bbs/?tid=41048 Sun, 03 Jan 2021 00:38:42 UTC Mea's Castle <p> <table><tr><td> <a href="/bbs/?pid=81448#p"> <img src="/bbs/thumbs/pico8_meas_castle-15.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=81448#p"> Mea's Castle 1.11</a><br><br> by <a href="/bbs/?uid=28088"> Astorek86</a> <br><br><br> <a href="/bbs/?pid=81448#p"> [Click to Play]</a> </td></tr></table> </p> <h1>Mea's Castle</h1> <p>Mea's Castle is a Metroidvania-like Game: You're a little Adventurer and your Goal is to find the &quot;Cup of Hope&quot;. You can run and jump, and soon you will find some Artifacts that'll give you more Abilities.</p> <p>🠔🠖 - Move<br /> 🠗 + 🠔🠖 - Crouch<br /> (Z) - Jump<br /> (X) + 🠗 - Use the last Powerup</p> <p><strong>Warning</strong><br /> This Game is difficult. If you're not a Fan of Jump'n Run-like Games, I think it will be too frustrating^^. There are still Checkpoints basically everywhere, but it's still not easy to beat that Game. Expect to die a lot while playing this^^.</p> <h1>Credits</h1> <p>Thanks to</p> <ul> <li><a href="https://www.lexaloffle.com/bbs/?uid=11292"><a href="https://www.lexaloffle.com/bbs/?uid=11292"> @Gruber</a></a> for the Music &quot;Eyes in the Dark&quot; and &quot;Flight of Icarus&quot; (both with slight Remixes) from <a href="https://www.lexaloffle.com/bbs/?tid=33675">Pico-8 Tunes Volume 2</a> .</li> <li>Youtuber <a href="https://www.youtube.com/channel/UCL5t4tBDT9PfmqtA5ziG0xQ">Dev Quest</a> and his Video <a href="https://youtu.be/rwDLsqPYkbc">Efficient Tilesets in Pico-8 Tutorial</a></li> <li><a href="https://www.lexaloffle.com/bbs/?uid=16423"><a href="https://www.lexaloffle.com/bbs/?uid=16423"> @Krystman</a></a> for his Cartridge <a href="https://www.lexaloffle.com/bbs/?tid=28306">&quot;Sample Code: Screenshake and Fading&quot;</a> and all the other Videos and Tutorials.</li> <li>Youtuber <a href="https://www.youtube.com/channel/UCirU43HFUjBjXastiYtuxeA">hh7x6</a> and his <a href="https://youtu.be/zatvWypqnPQ">Speedrun-Video</a>.</li> <li>Of course: Thanks to you for playing! :)</li> </ul> <h2>Other stuff</h2> <p>Also, if you like to cheat, you can use<br /> <div><div><input type="button" value=" Show " onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = ''; this.innerText = ''; this.value = ' Hide '; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = ' Show '; }"></div><div><div style="display: none;">the Konami-Code on Mainmenu to become invincible ;)</p> <p>Reset the Cartridge (P -&gt; Reset Cart) and do this:<br /> ⬆,⬆,⬇,⬇,⬅,➡,⬅,➡,X,Z</p> <p>If you did it right, you'll hear a slightly different Sound.</p> <p></div></div></div></p> <p>Also, here's the Map of the Game. Altough I'm not sure if it's <em>that</em> useful here^^:<br /> <div><div><input type="button" value=" Show " onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = ''; this.innerText = ''; this.value = ' Hide '; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = ' Show '; }"></div><div><div style="display: none;"><br /> Start-Position is where the Map says &quot;Hi&quot;:</p> <img style="margin-bottom:16px" border=0 src="/media/28088/zextras.map.png" alt="" /> <p></div></div></div></p> <p>Hope you'll have Fun with that little Game^^.</p> <p>Enjoy!</p> <h2>Changelogs</h2> <p><div><div><input type="button" value=" Show " onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = ''; this.innerText = ''; this.value = ' Hide '; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = ' Show '; }"></div><div><div style="display: none;"></p> <h5>New in v1.11</h5> <ul> <li>Just a little &quot;saved&quot;-Message after reaching Checkpoint or Artifact. <h5>if no serious bug is found in the future, this will most likely the last Version I upload. Because I have used all the available Tokens, there are no tokens left anymore^^.</h5></li> </ul> <h5>New in v1.10</h5> <ul> <li>New: Game will now save your progress after you reach a Checkpoint, collect an Artefact or being hit by an Enemy/Spike. If Progress exist, you can continue from the Mainmenu. (If you want to reset your progress, finish the Game or open the Pause-Menu (P) and select &quot;del save+reset&quot;.)</li> <li>Swap X/Z through the Pause-Menu will also be saved.</li> <li>Using Doublejump has now an Indicator (Mea's Shirt is now Dark-Red until Doublejump is available again).</li> <li>After a Respawn from a Checkpoint, Mea could jump immediately and without a Button-Press due to the Coyote-Time that wasn't cleared. Fixed.</li> <li>On Devices that don't fully reach 60 FPS all the time, the &quot;Fade&quot;-Script will now work as intended. It will never leave the Area half-lighted until the end.</li> <li>After collecting the Key-Artefact, some places are now locked away from the Player, preventing to wander around and get lost on Levels that the Player needs to visit never again^^.</li> <li>Slightly modified the Credits.</li> </ul> <h5>New in v1.09</h5> <ul> <li>Just a graphical Change: Cannons now &quot;blink&quot; just before they fires.</li> </ul> <h5>New in v1.08a</h5> <ul> <li>Fixed &quot;Slide Down&quot;-Animation facing on wrong Direction, Thanks to Some1NamedNate for finding out that bug!</li> </ul> <h5>New in v1.08</h5> <ul> <li>Just some more graphical stuff: Little changes on Titlescreen and Checkpoints. There's also a Checkpoint-Animation if the Player dies.</li> <li>Also I like the idea that the Castle looks more and more &quot;holey&quot; the more Powerups the Player has. Just a subtle Change in the mood I guess^^.</li> <li>Checkpoints will now always been activated, even while the last Powerup is activated.</li> </ul> <h5>New in v1.07</h5> <ul> <li>Graphical Overhaul. Smooth Walls, Ceilings and so on, Thanks to Youtuber &quot;Dev Quest&quot; and his Tutorial!</li> <li>Screen-Fades everywhere, Thanks to Krystman for his Code on the &quot;Code Snippets&quot;-Section!</li> <li>Particle-Effects on Enemies and Bullets.</li> <li>Particle-Effects and Sounds when Player slides down on green Walls.</li> <li>Menu-Sounds, not just the Music alone.</li> <li>Changed and added Dust-Animation for the Player.</li> </ul> <h5>New in v1.06</h5> <ul> <li>Fixed a Bug where the Game could freeze after leaving a Room near a &quot;Door&quot;-Tile. Thanks to MacadamiaMan for finding that Bug.</li> <li>Fixed a Bug where the Game could freeze while using a treadmill.</li> </ul> <h5>New in v1.05</h5> <ul> <li>Added Coyote-Jump (you can still jump after running off the ledge, for a few extra frames). I really wanted to add that^^.</li> <li>Wallslide-Animation only if the Player slides down.</li> </ul> <h5>New in v1.04</h5> <ul> <li>Performance-Update! Previous Versions uses around ~65% CPU-Usage all the time, is now reduced to ~30%. Now it's playable on slow Devices like a Raspberry Pi Zero.</li> </ul> <h5>New in v1.03:</h5> <ul> <li>Fixed a Bug where the Player couldn't use a Wall Jump on certain circumstances.</li> </ul> <h5>New in v1.02</h5> <ul> <li>Just forgotton to change the Title Screen^^.</li> </ul> <h5>New in v1.01</h5> <ul> <li>Replaced the last Level; it really wasn't that good^^. Thanks to bigjus for the Feedback.<br /> </div></div></div></li> </ul> https://www.lexaloffle.com/bbs/?tid=39467 https://www.lexaloffle.com/bbs/?tid=39467 Wed, 02 Sep 2020 18:24:27 UTC &quot;fillp&quot; affects Pencil and Shape <p>I doubt that's an intended behaviour: After running a Cart that's using the &quot;FILLP&quot;-Command, every Draw in the Sprite-Editor that includes Pencil or Shape (the last one; not shown in the GIF) also uses this pattern:</p> <img style="margin-bottom:16px" border=0 src="/media/28088/PICO-8_1.gif" alt="" /> <p>On 0.2.1B, it's possible to use &quot;fillp(█)&quot; (or simply reboot) to solve that Problem...</p> <p>(I was working on a Game and tried to change a Sprite, and I wondered that I suddenly couldn't overwrite some Pixels in the Sprite anymore. I was like &quot;what the Hell is going on there?&quot; until I discovered that^^)</p> https://www.lexaloffle.com/bbs/?tid=39362 https://www.lexaloffle.com/bbs/?tid=39362 Wed, 26 Aug 2020 00:24:48 UTC Leave the Green Square - ohgj 276th (Leave) <p> <table><tr><td> <a href="/bbs/?pid=80523#p"> <img src="/bbs/thumbs/pico8_juhatozuto-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=80523#p"> juhatozuto</a><br><br> by <a href="/bbs/?uid=28088"> Astorek86</a> <br><br><br> <a href="/bbs/?pid=80523#p"> [Click to Play]</a> </td></tr></table> </p> <p>Entry for the One Hour Game Jam, Theme: Leave.</p> https://www.lexaloffle.com/bbs/?tid=39150 https://www.lexaloffle.com/bbs/?tid=39150 Sat, 08 Aug 2020 22:03:29 UTC miniminiminibraid <p> <table><tr><td> <a href="/bbs/?pid=75757#p"> <img src="/bbs/thumbs/pico8_wajapayesu-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=75757#p"> wajapayesu</a><br><br> by <a href="/bbs/?uid=28088"> Astorek86</a> <br><br><br> <a href="/bbs/?pid=75757#p"> [Click to Play]</a> </td></tr></table> </p> <p>Entry for OHGJ 262th. Theme: Time Travel.</p> <p>I really run out of time^^.</p> https://www.lexaloffle.com/bbs/?tid=37716 https://www.lexaloffle.com/bbs/?tid=37716 Sat, 02 May 2020 21:54:29 UTC Poke reduce Palettes <p>Hey there,</p> <p>according from the <a href="https://pico-8.fandom.com/wiki/Memory">Wiki-Page about Memory</a>, it is unclear what a Poke to address 0x5f5e does, right?</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> 0x5f5e-0x5f7f / 24414-24447 The remaining registers up to 0x5f7f are undocumented.</pre></div></td> <td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> </tr></table></div></div> <p>I was playing around a bit and found something out: It seems to &quot;reduce&quot; the Colors that can be used. For example, poking a &quot;1&quot; reduce the Palette to only 2 Colors, Black and Dark-Blue.</p> <p>A simple Description: It seems that poking around 0x5f5e is some sort of &quot;pal&quot; all over the Color-Palette, but also prevents you to &quot;pal&quot; another Color. For Example: If you poke a &quot;1&quot;, &quot;pal&quot; is limited to set a Color to blue or black only.</p> <p>I just uploaded a Cartridge where you could play around with that:</p> <p> <table><tr><td> <a href="/bbs/?pid=75691#p"> <img src="/bbs/thumbs/pico8_poke0x5f5edemo-1.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=75691#p"> poke0x5f5edemo</a><br><br> by <a href="/bbs/?uid=28088"> Astorek86</a> <br><br><br> <a href="/bbs/?pid=75691#p"> [Click to Play]</a> </td></tr></table> </p> <p>I didn't found anything about that address in PICO-8, so I thought, it can be useful for others and like to share that^^. (I already imagine some sort of &quot;Switch the Game from a NES-like-Palette to a GB-like-Palette&quot;, or something like that^^.)</p> <p>Cheers.</p> https://www.lexaloffle.com/bbs/?tid=37697 https://www.lexaloffle.com/bbs/?tid=37697 Fri, 01 May 2020 12:30:23 UTC OHGJ 261th, Theme: 4 Colors only <p> <table><tr><td> <a href="/bbs/?pid=75385#p"> <img src="/bbs/thumbs/pico8_ganohumomi-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=75385#p"> One Hour Game Jam - 4 Colors only 1.0</a><br><br> by <a href="/bbs/?uid=28088"> Astorek86</a> <br><br><br> <a href="/bbs/?pid=75385#p"> [Click to Play]</a> </td></tr></table> </p> <p>Entry for the One Hour Game Jam, Theme: 4 Colors only.</p> <p>Swap colors to avoid Enemies.</p> <p>Very short, because I run out of time^^.</p> https://www.lexaloffle.com/bbs/?tid=37585 https://www.lexaloffle.com/bbs/?tid=37585 Sat, 25 Apr 2020 22:14:07 UTC Endless Runner 0.1 (&quot;Impossible Game&quot;-like) <p> <table><tr><td> <a href="/bbs/?pid=73914#p"> <img src="/bbs/thumbs/pico8_endlessrunner-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=73914#p"> endlessrunner</a><br><br> by <a href="/bbs/?uid=28088"> Astorek86</a> <br><br><br> <a href="/bbs/?pid=73914#p"> [Click to Play]</a> </td></tr></table> </p> <p>Just experiencing with an &quot;Impossible Game&quot;- or &quot;Geometry Dash&quot;-like Prototype. Basic Gameplay works, but every other Thing is unfinished at this point^^.</p> https://www.lexaloffle.com/bbs/?tid=37069 https://www.lexaloffle.com/bbs/?tid=37069 Sat, 14 Mar 2020 09:15:15 UTC Pico8 on GPi Case (using Raspbian) <p>Hello there,</p> <p>(English isn't my first Language, I hope it doesn't sound too bad, Sorry^^)</p> <p>I was looking for a easy Solution to &quot;modify&quot; the Linux in my GPi Case to boot directly into PICO8. I don't want to use something like Retropie/Recalbox/Lakka, just a PICO8-Machine.</p> <p>There was already a Project called PICOPI, which already assembled that. But it seems this Project doesn't exist anymore (Homepage is down; the Files I could find on archive.org doesn't seem to work anymore).</p> <p>So I thought I write my own Script for this, which builds upon Raspbian, the Default-Linux-Distribution for Raspberry Pi (which builds upon GPi Case). I thought it could be useful for others, so I uploaded the Script^^.</p> <p>While using this Script, you will be able to put your .p8-Files directly on the &quot;boot&quot;-Partition on the SD Card.</p> <p>Script can be found on Github, including a Manual for using it:</p> <p><a href="https://github.com/Astorek86/Pico8-Script-for-GPi-Case">https://github.com/Astorek86/Pico8-Script-for-GPi-Case</a></p> <p>EDIT: I also uploaded a Video on Youtube to show the Process:</p> <p><a href="https://youtu.be/JqRGS9bZfkg">https://youtu.be/JqRGS9bZfkg</a></p> https://www.lexaloffle.com/bbs/?tid=36884 https://www.lexaloffle.com/bbs/?tid=36884 Fri, 21 Feb 2020 17:58:17 UTC Slope-Test <p> <table><tr><td> <a href="/bbs/?pid=67062#p"> <img src="/bbs/thumbs/pico8_fewosijoha-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=67062#p"> Slope-Test</a><br><br> by <a href="/bbs/?uid=28088"> Astorek86</a> <br><br><br> <a href="/bbs/?pid=67062#p"> [Click to Play]</a> </td></tr></table> </p> <p>Hello,</p> <p>just testing some Slopes in a Jump'n Run-like Prototype.</p> <p>Nothing's really finished yet, I'm just testing around^^.</p> https://www.lexaloffle.com/bbs/?tid=35211 https://www.lexaloffle.com/bbs/?tid=35211 Fri, 30 Aug 2019 23:09:29 UTC Minesweeper <p>Hey everybody! Just sharing a little Minesweeper-Clone that I've programmed^^.</p> <p><em>New Version:</em></p> <p> <table><tr><td> <a href="/bbs/?pid=65119#p"> <img src="/bbs/thumbs/pico8_minesweeper-1.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=65119#p"> minesweeper</a><br><br> by <a href="/bbs/?uid=28088"> Astorek86</a> <br><br><br> <a href="/bbs/?pid=65119#p"> [Click to Play]</a> </td></tr></table> </p> <p>Mouse is <strong>not</strong> required anymore, but you can use the Cartridge below if you wanna use the Mouse.</p> <p>Controls for &quot;Non-Mouse-Version&quot;:<br /> <strong>- Arrow-Keys to move Cursor.</strong><br /> <strong>- Press and release <em>X</em> to open a Tile.</strong><br /> <strong>- Press and release <em>O</em> to mark a Tile (red or blue Flag).</strong><br /> <strong>- Hold <em>X</em> or <em>O</em> + Arrow-Keys to scroll.</strong></p> <hr /> <p>And here the &quot;Mouse-Version&quot; of the Game:</p> <p>IMPORTANT: Keep in mind that the &quot;Mouse-Version&quot; can be quite unplayable on Browsers. This Version of the Game runs best directly on PC, started by PICO8.<br /> <table><tr><td> <a href="/bbs/?pid=65119#p"> <img src="/bbs/thumbs/pico8_minesweepermouse-1.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=65119#p"> minesweepermouse</a><br><br> by <a href="/bbs/?uid=28088"> Astorek86</a> <br><br><br> <a href="/bbs/?pid=65119#p"> [Click to Play]</a> </td></tr></table> </p> <p>Controls for &quot;Mouse-Version&quot;:<br /> <strong>- Left-Click to open Field.</strong><br /> <strong>- Right-Click to mark Field with a red or blue Flag.</strong><br /> <strong>- Hold Middle-Click (or Arrow-Keys) to scroll.</strong><br /> <strong>- You can use <em>O</em> to simulate Left-Clicks, <em>X</em> for Right-Clicks.</strong></p> <p>Game should fully works as expected, hope I didn't forget anything^^.</p> <p>A few GIFs:</p> <p>Just playing on normal Difficulty:</p> <img style="margin-bottom:16px" border=0 src="https://www.lexaloffle.com/bbs/files/28088/mines_finish.gif" alt="" /> <hr /> <p>Scrolling with Arrow-Keys and Mouse:</p> <img style="margin-bottom:16px" border=0 src="https://www.lexaloffle.com/bbs/files/28088/mines_scroll.gif" alt="" /> <hr /> <p>Showing &quot;Custom&quot;-Menu for own Width/Heigth/Mines:</p> <img style="margin-bottom:16px" border=0 src="https://www.lexaloffle.com/bbs/files/28088/mines_custom.gif" alt="" /> <p>Hope you enjoy!</p> <p>Changelog:<br /> <strong>- Mouse isn't required anymore; there are now two Cartridges: A &quot;Non-Mouse-Version&quot; and a &quot;Mouse-Version&quot;.</strong><br /> <strong>- Added an Animation when opening a Tile.</strong><br /> <strong>- Added Sound when opening a few Tiles at once.</strong><br /> <strong>- Optimization (Tiles won't be drawed if outside the Screen)</strong><br /> <strong>- Every Difficulty can now be reached through Pause-Menu</strong></p> https://www.lexaloffle.com/bbs/?tid=34491 https://www.lexaloffle.com/bbs/?tid=34491 Mon, 10 Jun 2019 11:30:47 UTC Speed Survival (OHGJ) <p> <table><tr><td> <a href="/bbs/?pid=56724#p"> <img src="/bbs/thumbs/pico56723.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=56724#p"> Speed Survival (OHGJ)</a><br><br> by <a href="/bbs/?uid=28088"> Astorek86</a> <br><br><br> <a href="/bbs/?pid=56724#p"> [Click to Play]</a> </td></tr></table> </p> <p>One Hour Game Jam - Theme: Island (2018-09-15)</p> <p>There is not much you can do here^^. Just walking around, cut trees, craft a wooden Sword and kill Monsters with it. Description reads alot better^^.</p> https://www.lexaloffle.com/bbs/?tid=31890 https://www.lexaloffle.com/bbs/?tid=31890 Sun, 16 Sep 2018 05:32:12 UTC Magical Pear <p> <table><tr><td> <a href="/bbs/?pid=53989#p"> <img src="/bbs/thumbs/pico53991.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=53989#p"> Magical Pear</a><br><br> by <a href="/bbs/?uid=28088"> Astorek86</a> <br><br><br> <a href="/bbs/?pid=53989#p"> [Click to Play]</a> </td></tr></table> </p> <p>A little bit easier with less enemies:<br /> <table><tr><td> <a href="/bbs/?pid=53989#p"> <img src="/bbs/thumbs/pico53992.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=53989#p"> Magical Pear (a little bit easier)</a><br><br> by <a href="/bbs/?uid=28088"> Astorek86</a> <br><br><br> <a href="/bbs/?pid=53989#p"> [Click to Play]</a> </td></tr></table> </p> <p>Submit for the One Hour Game Jam 167,<br /> <a href="http://onehourgamejam.com">http://onehourgamejam.com</a></p> <p>Theme: That's not supposed to be a weapon.</p> https://www.lexaloffle.com/bbs/?tid=31489 https://www.lexaloffle.com/bbs/?tid=31489 Sat, 07 Jul 2018 17:47:11 UTC Jumper <p> <table><tr><td> <a href="/bbs/?pid=53742#p"> <img src="/bbs/thumbs/pico53741.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=53742#p"> Jumper</a><br><br> by <a href="/bbs/?uid=28088"> Astorek86</a> <br><br><br> <a href="/bbs/?pid=53742#p"> [Click to Play]</a> </td></tr></table> </p> <p>Game of the One-Hour-Game-Jam.</p> <p>Theme: 1 Object.</p> https://www.lexaloffle.com/bbs/?tid=31446 https://www.lexaloffle.com/bbs/?tid=31446 Sat, 23 Jun 2018 17:24:12 UTC (Jam) The Witchor 3 - Wold Hunt <p> <table><tr><td> <a href="/bbs/?pid=53613#p"> <img src="/bbs/thumbs/pico53614.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=53613#p"> The Witchor 3 - Wold Hunt</a><br><br> by <a href="/bbs/?uid=28088"> Astorek86</a> <br><br><br> <a href="/bbs/?pid=53613#p"> [Click to Play]</a> </td></tr></table> </p> <p>Submit for the One Hour Game Jam</p> <p>Theme: your favorite game but the most simplest possible</p> https://www.lexaloffle.com/bbs/?tid=31422 https://www.lexaloffle.com/bbs/?tid=31422 Sat, 16 Jun 2018 17:12:24 UTC