SmellyFishstiks [Lexaloffle Blog Feed]https://www.lexaloffle.com/bbs/?uid=42184 worm scoot test <p>Quick test I made.<br /> こんにちは Picotron!<br /> <table><tr><td> <a href="/bbs/?pid=143240#p"> <img src="/bbs/thumbs/pico64_worm_scoot_test-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=143240#p"> worm_scoot_test</a><br><br> by <a href="/bbs/?uid=42184"> SmellyFishstiks</a> <br><br><br> <a href="/bbs/?pid=143240#p"> [Click to Play]</a> </td></tr></table> </p> https://www.lexaloffle.com/bbs/?tid=140704 https://www.lexaloffle.com/bbs/?tid=140704 Sat, 16 Mar 2024 03:15:59 UTC Watflakes <p> <table><tr><td> <a href="/bbs/?pid=138960#p"> <img src="/bbs/thumbs/pico8_waterflakes-7.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=138960#p"> waterflakes</a><br><br> by <a href="/bbs/?uid=42184"> SmellyFishstiks</a> <br><br><br> <a href="/bbs/?pid=138960#p"> [Click to Play]</a> </td></tr></table> <br /> Mysterious plankton have gathered into formation, Click and stir them to produce sound.<br /> You can also just sit back and listen to them if you want too.<br /> If you encounter audio problems please try running it in Splore or by console. Thanks.<br /> Made for advent 2023.</p> <p>Demake of Electroplankton: Marine-Crystals.</p> https://www.lexaloffle.com/bbs/?tid=55409 https://www.lexaloffle.com/bbs/?tid=55409 Thu, 21 Dec 2023 03:42:35 UTC Redash <h1>Redash</h1> <p> <table><tr><td> <a href="/bbs/?pid=135971#p"> <img src="/bbs/thumbs/pico8_redash-7.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=135971#p"> redash</a><br><br> by <a href="/bbs/?uid=42184"> SmellyFishstiks</a> <br><br><br> <a href="/bbs/?pid=135971#p"> [Click to Play]</a> </td></tr></table> </p> <h3>Scenario</h3> <p>After Marsho lent his game to a friend awhile back, Mo won't give it back now!<br /> It's up to you find the Warp Stars and take it back even if force is needed.</p> <h3>Controls/Gameplay</h3> <p>Press Left &amp; Right to walk.<br /> Press Z to do a jump.<br /> You can pickup and throw Items with X.</p> <p>Coins are used as lives, The more you die the more you'll lose.<br /> Kitakits around the world will sell you items for coins as well.</p> <p>Down is used for dropping through semisolids, as well as dropping items.<br /> Up to interact.</p> <h3>Note</h3> <p>Thanks for playing my game!<br /> I've been working on it for years at this point and finally feel relieved to publish it.<br /> I'm aware that there's some jank and odd ends but I feel like I learned a lot making it.<br /> This is a sequel to my other game <a href="https://www.lexaloffle.com/bbs/?pid=72263#p">Coindash</a>.<br /> Let me know what your scores or best times are and thanks again!<br /> - Smelly</p> <h2>Change log</h2> <h3>V1.1</h3> <p>- Fixed Door pointer in ちいさなもり.<br /> - Mushprings no longer release spores when killed.<br /> - Gunner's bullets don't last quite as long.<br /> - Henchmos are more tame and don't shoot.<br /> - Mo's spawnpool doesn't contain Tubby.<br /> - Mo's Lair respawn changed and coins added.</p> <h3>V1.2</h3> <p>- Fixed map data not containing v1.1 changes</p> https://www.lexaloffle.com/bbs/?tid=54621 https://www.lexaloffle.com/bbs/?tid=54621 Mon, 16 Oct 2023 11:43:53 UTC Palt bit inconsistencies <p>I had been using poke(0x5f00, 128 ..etc) to set transparency and setting it to 128 works for spr,<br /> Then I tried the same thing for tline and it wouldn't work unless I set it to 16 or had bit5 flipped.</p> <p>This test code alternates between the 2 values, 16 works for both 128 only works for spr.</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>t,f = 0 memset(0x2000,1,0x1000) function _draw() cls&quot;12&quot; -- palette t+=1 if t%20==0 then poke(0x5f00,f and 16 or 128) f = not f end -- tline for i = 31,95 do tline(47,i,111,i,0,i/8) end -- spr spr(0,16,60) end</pre></div></td> <td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> </tr></table></div></div> <img style="margin-bottom:16px" border=0 src="/media/42184/untitled_2_0.gif" alt="" /> <p>Is this intentional? A bug? What's the difference between those higher-bits? I was confused when I stumbled into this.</p> https://www.lexaloffle.com/bbs/?tid=54073 https://www.lexaloffle.com/bbs/?tid=54073 Mon, 11 Sep 2023 12:00:49 UTC Inconsistent cdata <p>Hey <a href="https://www.lexaloffle.com/bbs/?uid=1"> @zep</a> I was working on my game and found that my pokes were failing to update the .p8d.txt?<br /> here I tried doing:</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> ?&quot;⁶!5e00&sup2;&quot; ?dget(0) stop()</pre></div></td> <td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> </tr></table></div></div> <img style="margin-bottom:16px" border=0 src="/media/42184/what.png" alt="" /> <p>I found it replicable by doing</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>cartdata&quot;test&quot; color(7) local v = @0x5e00 if v&lt;8 then ?@0x5e00 ?&quot;⁶!5e00&quot;..chr(v+1) run() end ?&quot;done&quot; </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 understand if it's meant to take time to update the file but my game depends on this writing to memory for handling state and I wish I could rely on it.. is there some way to make sure the file has time to be written to that'd be token cheap? like giving it extra flip time or something?<br /> I'm on v0.2.5e not sure if this exists on newer versions.</p> https://www.lexaloffle.com/bbs/?tid=52956 https://www.lexaloffle.com/bbs/?tid=52956 Fri, 02 Jun 2023 08:13:19 UTC Config request randomized IDs <p>I'm not sure how much it makes sense but sometimes when I'm sploring or even just working on my own projects I take gif captures and screenshots and I want them saved to my desktop, But I don't want them to stay there for forever I want to decide if I move them to my folder or not where I store them but a problem that comes up is since it's like cartName_0, cartName_1 if that already exists then my OS prompts me to replace or not and if not then it renames it to ..&quot; copy&quot; which is annoying... (I know I can move the directory but I want to view them first.)<br /> Is there anyway you could add a config.txt option to instead of naming it in sequence give it a random character ID at the end or something? (cartName_021a4, cartName_5v30o maybe? ...) it doesn't have to be too long just would be nice for my really niche gif capturing and stuff ;p<br /> Thanks for reading</p> https://www.lexaloffle.com/bbs/?tid=51917 https://www.lexaloffle.com/bbs/?tid=51917 Wed, 08 Mar 2023 17:44:01 UTC variable width helper <p> <table><tr><td> <a href="/bbs/?pid=124194#p"> <img src="/bbs/thumbs/pico8_kern_snippet-1.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=124194#p"> kern_snippet</a><br><br> by <a href="/bbs/?uid=42184"> SmellyFishstiks</a> <br><br><br> <a href="/bbs/?pid=124194#p"> [Click to Play]</a> </td></tr></table> <br /> I was making a tool to help me make the font for my game and I decided to share it.<br /> I think this is pretty much finalized... you put your font in the sprite sheet as normal like <a href="https://www.lexaloffle.com/bbs/?uid=1"> @zep</a>'s #font_snippet I took some code from,<br /> X to save Z to swap to the adjusting view where you can nudge around each character by selecting with X.<br /> Then when you save it exports it to clipboard as a binary string with characters 0..15 escapecoded out. It also saves it to memory in the top of the sheet so if you do it locally it'll save your progress for later.</p> <p>I got rid of the extra encoding stuff cause it wasn't really helpful. now ecodes it properly and stuff.<br /> Just paste the string copied to clipboard in your cart and your good to go. (Of course in puny mode)</p> https://www.lexaloffle.com/bbs/?tid=51138 https://www.lexaloffle.com/bbs/?tid=51138 Fri, 13 Jan 2023 03:16:09 UTC Autocomplete bad dirc returns garbage data <p>I was just messing around and misnamed the directory name and when I went to go hit tab to autocomplete it instead of seeing there's no directory named that it spewed this random garbage at me. It seems to be the same data everytime except it's randomly initialized when I open the .app.<br /> I'm on mac 2.0.5e</p> <img style="margin-bottom:16px" border=0 src="/media/42184/untitled_0.png" alt="" /> https://www.lexaloffle.com/bbs/?tid=50933 https://www.lexaloffle.com/bbs/?tid=50933 Sun, 01 Jan 2023 03:52:56 UTC Dj Deci <h1>DJ Deci</h1> <p> <table><tr><td> <a href="/bbs/?pid=122874#p"> <img src="/bbs/thumbs/pico8_decigobloopbloop-6.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=122874#p"> decigobloopbloop</a><br><br> by <a href="/bbs/?uid=42184"> SmellyFishstiks</a> <br><br><br> <a href="/bbs/?pid=122874#p"> [Click to Play]</a> </td></tr></table> </p> <p>Something is awry at December Village.. Everyone is unhappy; Record time blues!<br /> It's up to Deci to run around and use her boombox to cheer everyone up!<br /> Talk to villagers and find songs to play, Or just take a nap that's fine too.</p> <p>Kinda a mess and experimental but hope it's chill. Happy holidays!</p> <p>Made for <a href="https://www.lexaloffle.com/bbs/?tid=50644">advent calendar 2022</a><br /> Soundtrack listenable at: <a href="https://youtu.be/hrpIz5LfEbw">https://youtu.be/hrpIz5LfEbw</a></p> <img style="margin-bottom:16px" border=0 src="/media/42184/deci.gif" alt="" /> <p>Made by SmellyFishstiks<br /> Sound help from TheTomster and bikibird<br /> Snowbert physics help from Chewy</p> https://www.lexaloffle.com/bbs/?tid=50774 https://www.lexaloffle.com/bbs/?tid=50774 Thu, 22 Dec 2022 23:55:38 UTC cutting map tiles doesn't work how intended? <p>Hey so I was just doing some map work and I was using the cmd+x to move tiles around and I think when I was cutting and pasting somewhere else in the mapview tiles in the shared space it would move the sprites but not the map tiles which was . . . not good and took a while to make sure everything was ok.<br /> It feels like this isn't intentional but I'm not 100%? I'm on 0.2.5c, thanks in advance!<br /> (Like I said maybe this is on purpose since I'm moving the data it's self around in the shared space but in my game I was making I'm using the shared space for sprites and map and it makes it more difficult.)</p> <img style="margin-bottom:16px" border=0 src="/media/42184/untitled_1_0.gif" alt="" /> https://www.lexaloffle.com/bbs/?tid=50072 https://www.lexaloffle.com/bbs/?tid=50072 Sun, 06 Nov 2022 15:49:03 UTC midi 073 flute <p>I wanted to throw some sfx instruments I liked into the mix and I wanted to add the instrument I used in my world4 cover (<a href="https://www.lexaloffle.com/bbs/?tid=41981">https://www.lexaloffle.com/bbs/?tid=41981</a>)<br /> I think it sounds like a flute? I have no idea.<br /> <iframe src="sfxp2.php?id=42184_3" 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_42184_3"); if (el.style.display == "none") el.style.display = ""; else el.style.display = "none"; microAjax("/bbs/sfxc/42184_3.txt", function (retdata){ var el = document.getElementById("sfxcode_42184_3"); el.innerHTML = retdata; el.focus(); el.select(); } ); '> [sfx] </a> <textarea rows=3 class=lexinput id="sfxcode_42184_3" style="width:480px;background-color:#fed;display:none;overflow:hidden; font-size:4pt;"></textarea> </p> <p>also here's it by it's self too.<br /> <table><tr><td> <a href="/bbs/?pid=117195#p"> <img src="/bbs/thumbs/pico8_flute_toot_sounds-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=117195#p"> flute_toot_sounds</a><br><br> by <a href="/bbs/?uid=42184"> SmellyFishstiks</a> <br><br><br> <a href="/bbs/?pid=117195#p"> [Click to Play]</a> </td></tr></table> </p> <p>Hope this is a good.</p> https://www.lexaloffle.com/bbs/?tid=49282 https://www.lexaloffle.com/bbs/?tid=49282 Sun, 11 Sep 2022 07:30:20 UTC Illegal name problem <p>(Im doing this on my phone cause my wifi got blasted)</p> <p>I have my game &quot;Kik&euml;o&quot; Im working on and while I cant use the SAVE command to save the file cmd+s still works fine, but like I tried to do<br /> &quot;export kikeア👀o.wav&quot; (thats what it shows up as.) and it just silently failed.<br /> I checked with ls -a and it didn't save a wav but ya didnt spit a error, I have no idea or say how pico should handle names like this but like ya weird export inconsistancy?<br /> thanks for reading this!</p> <p>PS: Oh! should add it says &quot;wrote 1 file&quot; too but I havent been able to find it so I assume its lying.<br /> on mac v0.2.4c</p> https://www.lexaloffle.com/bbs/?tid=48783 https://www.lexaloffle.com/bbs/?tid=48783 Sat, 06 Aug 2022 15:18:14 UTC Segfaults on 0.2.4c <p>Hey <a href="https://www.lexaloffle.com/bbs/?uid=1"> @zep</a>! So I'm on latest of writing this (0.2.4c) and twice now I've gotten segfaults when I try to save? (I think? my memory is fuzzy..)</p> <p>I'm not entirely sure what parts of the reports I should send over but both say:</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>Notes: Translocated Process Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000 Exception Note: EXC_CORPSE_NOTIFY Termination Signal: Segmentation fault: 11 Termination Reason: Namespace SIGNAL, Code 0xb Terminating Process: exc handler [780] VM Regions Near 0: --&gt; __TEXT 102b54000-102c94000 [ 1280K] r-x/r-x SM=COW /var/folders/*/PICO-8.app/Contents/MacOS/pico8 Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 com.lexaloffle.pico8 0x0000000102c435d8 codo_save_pico8_cart_to_file + 3800 1 com.lexaloffle.pico8 0x0000000102c436b7 codo_save_pico8_cart + 55 2 com.lexaloffle.pico8 0x0000000102b63d05 cstore_cart_partial + 757 3 com.lexaloffle.pico8 0x0000000102bbf69c p8_cstore + 572 4 com.lexaloffle.pico8 0x0000000102b78821 luaD_precall + 1409 5 com.lexaloffle.pico8 0x0000000102b79c4d luaV_execute + 4397 6 com.lexaloffle.pico8 0x0000000102b7af0b resume + 235 7 com.lexaloffle.pico8 0x0000000102b65306 luaD_rawrunprotected + 86 8 com.lexaloffle.pico8 0x0000000102b7ac43 lua_resume + 83 9 com.lexaloffle.pico8 0x0000000102ba0513 run_slice_section + 563 10 com.lexaloffle.pico8 0x0000000102ba07cb run_slice + 123 11 com.lexaloffle.pico8 0x0000000102b5fb85 codo_main_update + 2789 12 com.lexaloffle.pico8 0x0000000102bf729e codo_main + 366 13 com.lexaloffle.pico8 0x0000000102b54b54 start + 52</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'm not sure what parts are worth reading or not.. Please let me know if there's more or like what. Thanks for reading this!</p> https://www.lexaloffle.com/bbs/?tid=48336 https://www.lexaloffle.com/bbs/?tid=48336 Mon, 27 Jun 2022 21:47:32 UTC Forest of Hope <p>I really like this song so I tried transcribing it into pico8,<br /> Pretty happy with how it came out. left a empty slot in case I wanted to do other variations.<br /> <iframe src="sfxp2.php?id=42184_1" 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_42184_1"); if (el.style.display == "none") el.style.display = ""; else el.style.display = "none"; microAjax("/bbs/sfxc/42184_1.txt", function (retdata){ var el = document.getElementById("sfxcode_42184_1"); el.innerHTML = retdata; el.focus(); el.select(); } ); '> [sfx] </a> <textarea rows=3 class=lexinput id="sfxcode_42184_1" style="width:480px;background-color:#fed;display:none;overflow:hidden; font-size:4pt;"></textarea> <br /> (some stuff like the viola part or whatever that is might be a bit off but eh. remix!)</p> https://www.lexaloffle.com/bbs/?tid=48101 https://www.lexaloffle.com/bbs/?tid=48101 Fri, 10 Jun 2022 03:43:49 UTC Table refrence PSA! <p>I was doing some table comparing logic like so:</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>local a,b = {},{} local t = a if not t==b then ?&quot;!&quot;,7 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 using the <code>not</code> operator can trip you up cause it's not testing against the whole <code>bool==bool</code> (I think..?)<br /> but instead <code>(not bool)==bool</code>!<br /> Anyways I was stuck on this problem for hours and I wanted to let other's be aware if they're not.<br /> Thanks to <a href="https://www.lexaloffle.com/bbs/?uid=27691"> @pancelor</a> for figuring it out and helping me.<br /> (it turns out I just wanted to do</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 t~=b then -- ... 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>)</p> https://www.lexaloffle.com/bbs/?tid=47812 https://www.lexaloffle.com/bbs/?tid=47812 Sat, 14 May 2022 22:04:51 UTC More file-naming stuff? <p>I was exporting a sound for testing and I just did</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>export .wav</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 this made the file &quot;.wav&quot; which is great and all.. But on mac files starting with . are hidden..<br /> So I'm not sure if this is a issue or not but I had to check if it existed with a ls -a<br /> And I guess I'll go delete .wav and .png that are just sitting around...<br /> (Oh! and also forgot to mention since pico takes this . hidden stuff for .DS_Store and such into account I couldn't find it with ls either.)</p> <img style="margin-bottom:16px" border=0 src="/media/42184/Screen Shot 2022-05-08 at 12.07.37 PM.png" alt="" /> https://www.lexaloffle.com/bbs/?tid=47729 https://www.lexaloffle.com/bbs/?tid=47729 Sun, 08 May 2022 19:03:54 UTC Wumple <h1>Wumple</h1> <p> <table><tr><td> <a href="/bbs/?pid=107513#p"> <img src="/bbs/thumbs/pico8_wumpleisthegame-2.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=107513#p"> wumpleisthegame</a><br><br> by <a href="/bbs/?uid=42184"> SmellyFishstiks</a> <br><br><br> <a href="/bbs/?pid=107513#p"> [Click to Play]</a> </td></tr></table> </p> <p>A short arcade game thingy that kinda was a mash of Pacman and adventures of Lolo. Made for ToyBoxJam 3.</p> <p>One day at work a mother comes in and says she's lost all 40 of her kids and 'requests' help. Dodge toasters, Snakes, and more and make your way back home.</p> <p>Made by SmellyFishstiks<br /> Pathfinding help from Luchak</p> <p>Made for Toy box jam 3 (<a href="https://itch.io/jam/toy-box-jam-3">https://itch.io/jam/toy-box-jam-3</a>)</p> <img style="margin-bottom:16px" border=0 src="/media/42184/Wumplegif.gif" alt="" /> <h2>changelog</h2> <p>V1</p> <ul> <li>released</li> </ul> <p>V2</p> <ul> <li>Fixed stacked comment blocks crashing the game</li> <li>Fixed crash occurring when actor tried to find a path and returned a #path of 0</li> <li>Fixed Rescue ship not being centered when flying away</li> <li>Fixed Wayback-Final having a time limit and thus a ghost that could force you to reset your score if it ate grifert</li> <li>Changed Wayback-9 to be less brutal and move the player to the side</li> <li>Changed Wayback-Final map to look slightly better and cleaned up the map space a bit</li> <li>Changed stat(102) check</li> </ul> https://www.lexaloffle.com/bbs/?tid=46716 https://www.lexaloffle.com/bbs/?tid=46716 Wed, 23 Feb 2022 01:40:35 UTC And now Map moving bug <p>So I was moving my levels around and part of the old section remained after being moved?<br /> Thinking it was a weird byproduct of it not being on screen with the sprites in the way I tried again and nope :?<br /> And I just tried again now and only a 16x1 chunk on the bottom was left...</p> <img style="margin-bottom:16px" border=0 src="/media/42184/map is being smeared when moved with arrow keys on the right up bound.gif" alt="" /> <p>Sorry for bugging you with bugs again <a href="https://www.lexaloffle.com/bbs/?uid=1"> @zep</a> ;\</p> https://www.lexaloffle.com/bbs/?tid=46665 https://www.lexaloffle.com/bbs/?tid=46665 Sun, 20 Feb 2022 07:14:27 UTC Clipboard bug? <p>Hey <a href="https://www.lexaloffle.com/bbs/?uid=1"> @zep</a> not to bug you too much with bugs I keep finding but in latest version when I put &quot;ノ&quot; in a error msg and tried to copy it to clipboard (On Mac so cmd+c) it failed and just replaced my clipboard with \0 or empty or whatever (correction: kept clipboard the same. did not over write it with a terminal or whatever it's called.),</p> <img style="margin-bottom:16px" border=0 src="/media/42184/search__0.png" alt="" /> <p>I assume this isn't supposed to happen? wonder if it's a issue with ノ being utf8 or whatever.</p> <p>Anyways thanks if you read this, sorry to bug you... for like the 3rd time with bugs</p> https://www.lexaloffle.com/bbs/?tid=46628 https://www.lexaloffle.com/bbs/?tid=46628 Fri, 18 Feb 2022 13:41:25 UTC Sneezy Scribble <h1>Sneezy Scribble</h1> <p> <table><tr><td> <a href="/bbs/?pid=105655#p"> <img src="/bbs/thumbs/pico8_sneezyscribble-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=105655#p"> sneezyscribble</a><br><br> by <a href="/bbs/?uid=42184"> SmellyFishstiks</a> <br><br><br> <a href="/bbs/?pid=105655#p"> [Click to Play]</a> </td></tr></table> <br /> Hey I was making my game, (Some of the special chars are from/for that.)<br /> And decided to share the font.</p> <p>This was my first time ever drawing the hiragana and katakana so.. they maybe aren't great but ya.</p> <p>This cart just pastes the font's data into your clipboard to be poked like <a href="https://www.lexaloffle.com/bbs/?uid=1"> @zep</a>'s cart.</p> <p>Probably will keep tweaking it as I use it more but for now here it is. feel free to use it if you want!</p> https://www.lexaloffle.com/bbs/?tid=46311 https://www.lexaloffle.com/bbs/?tid=46311 Wed, 26 Jan 2022 06:56:53 UTC