SwordF [Lexaloffle Blog Feed]https://www.lexaloffle.com/bbs/?uid=69779 Brainf🐱k <p> <table><tr><td> <a href="/bbs/?pid=168510#p"> <img src="/bbs/thumbs/pico8_brainfuk-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=168510#p"> brainfuk</a><br><br> by <a href="/bbs/?uid=69779"> SwordF</a> <br><br><br> <a href="/bbs/?pid=168510#p"> [Click to Play]</a> </td></tr></table> <br /> Just a simple Brainf🐱k interpreter I made out of boredom.<br /> Featuring a decent text editor, copying and pasting, and uh, themes I guess.</p> <p>All of your usual Brainf🐱k is here if that's what you're here for.<br /> But for people who don't know why we're talking about f🐱king brains...</p> <p>I can break it down for you.</p> <h2>Brainf🐱k Crash Course</h2> <p>Brainf🐱k is a programming language that wasn't designed to be practical<br /> at all, but just for dumb stupid silly fun, because programmers like silly little<br /> technical things that value no purpose in our lives.</p> <p>It involves a list of cells containing a single number in each cell starting at zero, and a niffy<br /> pointer pointing at which cell it's looking at.</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> 1 2 3 4 5 [0] [5] [9] [2] [4] ... ^ Pointer is looking at cell 2, so it sees 5.</pre></div></td> <td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> </tr></table></div></div> <p>There are 8 instructions that tell the pointer what to do and stuff.</p> <ul> <li><code>+</code> Add what the pointer sees by 1</li> <li><code>-</code> Subtract what the pointer sees by 1</li> <li><code>&lt;</code> Move pointer left</li> <li><code>&gt;</code> Move pointer Right</li> <li><code>[</code> Jumps to it's matching <code>]</code> if the cell it's looking at is zero</li> <li><code>]</code> Jumps to it's matching <code>[</code> if the cell it's looking at is <em>not</em> zero</li> <li><code>.</code> Prints the number it sees as ASCII (i.e. The number 69 is E)</li> <li><code>,</code> Takes one keystroke of user-input, and stores it into the cell it's at</li> </ul> <p>And... that is literally all you get. No, seriously.</p> <p>It <em>is</em> technically possible for Brainf🐱k to execute any<br /> program, making Brainf🐱k Turring Complete by definition.</p> <p>Go have fun I guess now. Try to go make something possibly.</p> https://www.lexaloffle.com/bbs/?tid=149521 https://www.lexaloffle.com/bbs/?tid=149521 Sat, 14 Jun 2025 03:23:26 UTC Celeste Maker <h3>NOTE: New update to version 1.1! Read the change log for more info!</h3> <p> <table><tr><td> <a href="/bbs/?pid=163214#p"> <img src="/bbs/thumbs/pico8_celeste_maker_v1_1-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=163214#p"> celeste_maker_v1_1</a><br><br> by <a href="/bbs/?uid=69779"> SwordF</a> <br><br><br> <a href="/bbs/?pid=163214#p"> [Click to Play]</a> </td></tr></table> </p> <img loading="lazy" style="margin-bottom:16px" border=0 src="/media/69779/5_CelesteMaker Logo.png" alt="" /> <p>Hey you! Have you ever wanted to make your own Celeste levels, but have no idea how to use Pico8 what-so-ever? Well now you can with <strong>Celeste Maker</strong>, a <em>simple</em> level-pack editor to design your very own level-pack and save it with others!</p> <h1>How do I use the editor?</h1> <p>The editor interface is decently simple.<br /> Use the arrows to move the player (and camera).<br /> To draw terrain and place objects, simply click on an element in the topbar, and start drawing.<br /> The tiles will (usually) automatically connect themselves. You can erase tiles by clicking on the eraser on the sidebar</p> <img loading="lazy" style="margin-bottom:16px" border=0 src="/media/69779/basics.gif" alt="" /> <p>If you want to change specific tiles, you can utilize the <strong>Magic Wand</strong> tool.<br /> This wand can be used to modify objects and get just the right terrain tile you wan.<br /> And it's all with a single click too! (or multiple)</p> <img loading="lazy" style="margin-bottom:16px" border=0 src="/media/69779/wand.gif" alt="" /> <p>You can also change the music playing for each level with the small symbol at the bottom.<br /> And on top of that, you can switch between rooms and delete rooms as well.</p> <img loading="lazy" style="margin-bottom:16px" border=0 src="/media/69779/rooms.gif" alt="" /> <p>Finally, you can go into the <strong>level settings</strong> to edit background colors,<br /> your level name, and other stuff.</p> <h1>How do I save and load levels?</h1> <p>To save the level, you click the little floppy disk on the sidebar, you will hear a jingle, then<br /> a message to copy the level code via Ctr+C. Make sure to make this code somewhere like a text document or text editor.</p> <p>To load your levels to play or continue editing them is roughly the same. Click the clipboard button, then paste (Ctr+V) your level code into the editor.</p> <img loading="lazy" style="margin-bottom:16px" border=0 src="/media/69779/levelcode.gif" alt="" /> <p><strong>NOTE THAT OLD LEVELS MAY NOT LOAD IN POTENTIAL FUTURE VERSIONS</strong></p> <h1>Version 1.1 Example Level-pack</h1> <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;"><br /> Copy this code and paste it!<br /> <code>1.1 sHOWCASE█sWORDY█0█2█13█7█0█28█7,7,1,2,2,2,2,2,6,6,3,3,3,3,1,9,9,9,9,9,5,8,8,8,8,5,5,5█6b6b69000000000000693132323232326b6b286b6924483233006b28282425256b6924254825322548336b676829696b26283828312669696937696969314825482532266969692425330000000000002610290024252526692426696b6b69243369313233692425252525266b286b28323232322525483233282824266b286b6b6b690000000000006969696969696928286b696924330000002a386b3148256b69242525331031260010281000696b26292a28103769696900002a28383125253328242369692433280000000000002628000031323233693133696b6b6924696900000069313232323233286b6b28692829002448336b286b6b24266b6b006b6b690000000000006b6b34352222226b286969212600000000006b281024256b69244826382a2937002a6b2900696b2600003829001b1b1b0000002828102433283831266921266b6b6b6b000000003338000069696969690000696b6b6924690000000069696969696969006b6b00693808002426696969696924262800006b6b69000000006b6b286b00283125486969692125263e143d00002a6b2924486b69313233291a001b0000380000696b263f002a000000000000000038290024002a2900312225266b286b286b696969002a000069690038000000696b6969246900002d002a67682900006900280000692a003b2433390000000024266b00006b6b691111116b286b6b6b00283831252222222548252222233d00003800313269696969692b00000000002a000069694823003d3a3911111100000028000031000000002824253328106b0000343522000000001b1b0028002c0069696921252311110000006b380000001b000000006900003b3068280000000031330000006969692122222236286b00002a281024482532323232254832230d002a0069692222222236000000000000000f2122222525222235366969690000002a000000007e00001031266b6b000000001028241039000000000010003c3f21222225482522231100002a6b0016000000003a28692b3a103729380016000069690000006921222532323369696969000028282425336b286b003126693700000000696b32254826000000390000680000313248254825330028286b2900000000000000696969002828306b0000000000282824002a39001100002a0021222525323232254832360000006b0000001100001000692b382969002a000000001b1b00002c69244826286b6b6b6b286b0000382924266b6b6b00000037692b00000000696b6b3125330000002800002800003b69313225262b002a6b6b0000000000000000222223002838300000000000002a383100003800202b00003a312548332a2828483300000000002a00000027003a290069002a3b69000000110000000000143c224825336b6b286b00000000002a0024266b286b00000000692b00000000696b6b2830000000002800006b00003b696b6b31262b000028290000000000170000252533002a29300000000000000028106b002a39692b002a2810313300002838260000000000000000000030382900001b00003b6900003b692b0000111134223232336b6b6b34360039000000003d2433006b2800000000692b00000000696b286b37000000006b00002800003b6969286b302b00006b000011000000000000253300000000370000000016000028296b00002a692b0000382900697e002a0026000000001700000000003700000000000000001b0000001b0000000e0f6924286b6b006b2800003a1000000000214800006b00001100001b000000000069696b000000000000287d00280000001b69002a372b00002a0000270000000011112600000000001b0000000000000038006b6b0000692b00002a0000690d000000330000000000000000000028000000006b00000000000000000028006b0069246b280000006b0000282800000000242500000000006900003900000000000069000000002c3d6969696969690000391b000000000000000011301039003a212233000000000000000000000000002a00286b0000202b00000000006900000000000000000000000000000038000000006b0000000000000000006b006b006b316b3d7e3f0000003a382900000e0f2448000000003f69000038000000000000003f007e003c27692122222369000010003d7e003f000000112133002a38293132000000003a39000000003a390000000028286b00171300000000001b0000390000000000001111000000006b000000006b006b00000000006b00286b28002869222222236969696969690000000031253d007e002769003a6b00001200000800230d0e0f2126692425482669113a6b392222222311111121263839000000400000000000102800000000382800000000006b6b00000000000000390000006b0000000000006969000000006b007e00006b006b00007e000028006b0028006b6948252526006b00006b000000003a1024230d0e0f306900102839001700000011260000002448222525254822236b2938252548252222222533002a39000000000000003a28280000003a2829000000006b6b6b286b00000000006b00003a290000000b00006969000b00001000000b006b6b6b0000170000286b28006b00002825254826006b00006b00003a382828242628390030693a28286b383900000021260000002425254825252525261000284825252525254826000000103900002100003a102838390000102800000000006b6b006b286b286b003a38393a28000000000000006969000000006b000000006b006b00000000006b006b006b00006b32335253643132252662540000003b69336b0000006b6b306b286b6b52535431690000000031252652536431323225253232323369313233692a38286924252569696969242525323300002a2831252532322525266969693125336b6b6b000025253232322669286b6924253232252569692448323233696b38286b6b31252540006264386b28312523550000003b696b6b000000002126106b00006253534369000000006931336264106b2900312569696969690000006900282869242548222223692432336b0000000010283132290031322522236969376b6b0000000025336b6b00376928386931332810312569212526696969692a286b6b282824250000000000106b6b3126650000003b696b5b003d3e3f24266b0000000062636369000000000069692a6b282900003b312310286b000000001b3a6b101b24252532323369376b0028000000002a282900003a6b1031322523696b14000000000026286b000028696b2869006b6b29003169244833692b1b1b0028292a1028312500000000002a6b281031230000003b69737374212222482600000000003b2122690000000000000000386b0000083b42266b6b0011000000006b282900244825286b2969006b006b000000000038001138286b002a2831266969690000000000266b1000002a28102869392a380000002225266b692b005a0010393a6b28282400005b003d003828293b300000003b6922222248252532330d0e0000003b2448692b000000001600002a290000003b52266b003b693a383900283800002432326b10002a00106b6b00001100002a3b69006b295900383b31236b390000002c003300280000006828292a1000280000003248336b692b0000002a6b6b282838314374212223112a6b003b300000003b69483232254833382800000000003b2425232b00000000000000000011111111522628003b69002a6b102829000037400028290011006b0028003b272b0000001b112a0000006b3b6937106b0000003c3f00002a0000006b38000028002a00000069306969692b0011000038292a6b28286421253232362b6b003b300000003b6933281024262b2a2800000000003b2425262b00000000000000003b7273734353266b003b690000002a6b000000000000380000452b6b0010003b301039000000232b0000002a3b69006b6b003b6921220000000000006b2800006b000000000028371b1b1b003b2700002a0000286b10222533282900002a003b3000000000006b382831262b001000110000003b3132331111110000286b6b00001b1b1b6253262900006b0000000038000000000021290000552b00006b003b30006b000000262b000000003b69002a6b003b693132000000000000102900002900000000002969000000003b3011111111002a290025336b2800000000003b3700000000006b280045372b002a3b27000000003829696969692b0000286b280000000010623300000028000000002a000000000031002d00552b00006b003b372b2a383911331111000000001b000038003b6969690000000000002a00000000000000000000000000111111242235353600002d0026286b29000000000000000000000000296b00552b0000003b30000000002a00691b1b1b000000006b286b11003a2838000000006b0000000000000000000038000000652b00000000006b0000002a69696969000000000000002900003a34220000000000000000000000000000000039000000343522482669696900000000266b3800000000000000000000000000002a00552b0039003b372b00000011116939111111111100006b28271029002a007e00006b000039000000000000002a3900001b00000000000010000000001b2223692b6b00000000000000002a102400000000000000000000000000000000280000002a6b3132266968290000000026002a00000000000000000000000000000000552b0038003b452b0000006969696b69690d0f692b006b6b3700000000737374002800001000000000000000006b0000000000000000006b3f0000002c2533692b28000000006b000000006b310000000000000000000000000000000028002c00002a386b3710290000000000263f00000000000000000000000000002c0000652b006b003b652b001111696b446b6b00006b691100286b6b00000000222236002800002800000000111111111039003a3900000000002a27007e003c267e692b6b006b000028000008002829000000007e00007d000000000000000028393c00007e002a206b0000110000002523007e0000000000000000000000003c7e001700002839006b000069696928546b10006b2942442b006b6b6b007e00483300006b00002a39000000696969692a38286b28000000000011300d0e0f21261700006b102800006b0000000038000000006969696969696969696900000028282123696969006b67003b692b000025260d0e0f7273737400000000000000236969276768106b006b000069286b6b53446b14281252542b00286b72737373260000006b0000002a39000069212222006b292a103900001111212639000024260000006b006b6b106b000000002a00000069427373737373737373446900002821482522222300382900006b0000002526283900212222230000000000000025222226386b286b006b0000696b286b53546969694253542b006b6b21222222260000006b00000000383900692425253a6b00006b283839212225262a676824260000006b006b00006b00000000000000004254212222222222222352440000282425252548263a6b3900006b000000696931252525252526692425262828243232323232322526696b6b286b69286b6b6b2869302828290031322669696b6b6b69244833102824252525324825323226696b6924252548253232322548252569696969696969286b28286928383b242525252533696969242669692b3b69242525323232323232323232332a38282423696924252532323369313233282824696969696969242669696b6b28696b10286b6b6930290000002a28242369696928693133002a6b2448253328313340002669386924482525333829003132254822222322222369696969286928283b242525253328282869242669692b3b692432331b1b1b1b1b1b1b1b1b1b00282924252369312533001028696969692a282422223522236924252369696969692828696969693011111100006b242522236928696b2900003824253300100010283926696b69313225266b2800002a28312548253232323222222223696910293b24252526282829006924262b00000028314428000000003a3828102829002a002425266969372b3a28281b1b1b6900003125336b2426692425252222222369382a69213535323535362b001031323225226b69282c003b212533393a28006b6b2126286b286b38312628106b000028282425332810290031324826696928003b2432322523287e000024332b0000002a385428390000000011111111111112112425252369692b38282900003b6900006926102831266931323232323225236b0069371b286b2828290000286b696924486b696b3c003b24266b386b6b002a6b31336b282900282931236b283900382924262b281600002a283125236929003b31696931323536000030100000000000285428291100003b69343535366969692432252522233a282800005a3b692b3b69336b2938306969696969696924262900691b3a286b6b000000002838286b3125286921232b3b313329002a6b390028382a6b1000002a00003135353536280024262b2a0000000038283148230000002828691b1b1b1b003b3028000011000028542867692b163b692b2a675868293b24693125252628292a3900003b692b3b69286b002a24232b1b1b1b1b1b2426000069136b290028000000002a2900286924696924262b0000000000002810006b29002829000000003a286b6b28002a00242600000000000028283b24260000003828690000111111113028393b692b002a5428290000003b692b002a1029001331396924252628393a38111111692b001b2a29000024262b16003a6b282426000011111111002a11000000110000293b246921252611111111110000386b002a00002a00000000003829002a2800000024261111110000112a293b24260000002a2869003b34353535332a28001b0016005428001100003b692b0011111100001b106b31253328102828343535362b003a0000000024262b0000112a382426000022352223110069000000692b00003b3122253248222222222311006b29000011000000000000006b3900006b390000242522222311116900003b313300000000696900001b1b1b1b6900380011000000542900272b003b692b3b2135362b00006b2969302b2a28282828396b28390010007e000031332b003b692b6b3133000033282432231169111111692b00003b6948336b31323232323236002a00003b69000000000000006b286768286b29002432324825222223000000000000000000692b0000111111001b00283b692b0000641111302b5a001b003b302b1b3a39006b0000302b002828286b282828282828696900001b1b00003b692b6b1b1b003a6b29376b242235353522230000000000336b28281b1b1b1b1b1b000000003b69000000000076002a6b292a2839000024281031323232332b000000000000003a692b00002122230000002a001b3a390022222226111111111111302b002a290038007e302b00286b28283829112a282922360000000000003b692b2a0000006b380028283133696969313300000039002828292811111111111100005a00001b0000000000276768287f002810676924292a28001b1b1b0000000039000000281b00000031252638390000000028100025323232353535353535332b0011111128000f372b006b29112a283b200038002600000039000000006b000000003a6b29002a101b1b1b1b1b1b1b00003a2800297e002869696969696900000000003a2c000000003069692122222369692125007e28001111110000003a2800003a283900003a28243328282900000028286733102829001b1b1b1b1b1b003b212222290000000000283b20002800003a290033000000283a0000006b3900000038283f7e3d28390000000000003a386b2839001700283422222222360000000000283c007e00692422222548252522222548696928396969690000003828390028102800001028372829000000003a28282828297e00003a2828382829163b24253200003a6b00002a000000283900280000386758686b2839003a38280000006b1023692123386b2900003a6b29002a281039003a2838312548336b39003a283a6b230d0e0f2125252525254825252525252223382821222339003a28282828282838393a28290000003a2839003828292a6969693a391111111111111111242669286b102839000000003a286b28103900286b286b6b106b286b6b2839003a286b252248266b28003a2810280000006b286b10286b6b2824266b6b10286b6b283826675868244825252525252525482525252628282448261028282900002a382828282828003a3828281028282828393a222223283821236969692122222526692525332b283b69696969696969696969482600002a10283132323232266924250000625431252526282824252533550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003233692b283b342223692122236921222526000000002a282900001b37692448000000624431323328103125334264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000696900002a00103133692432336924252526110000000038005a00003b692425000000006243742b2828753742640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a39000028283b69372828283125482523111111112a000000003b6924250000000000552b0038283b42640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003a292a39002a383b6928292a293b242525482222222311000000003b6931480000000000652b0028283b55000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a393a290000283b69280011003b242525253232322523110000003b69692400000000000000002a293b6500000000000000000000002c002c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000039002a29001100293b69283b452b3b24482533002a283148232b0000003b692400000000000000000000000000000000000000000000003c793c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000280000003a690000001b283b552b3b242533280000282831332b0000003b692400000000000011111111110000003900000000000000002135230000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000038003a283869000011002a00552b3b2426282900002a001b1b000000003b693100000000003b69696969692b0000280000000000000034336931360000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002839002a28691111272b0000552b3b24262800000000110000000000003b69280000000000001b1b1b1b1b000000380000000000000069696969690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a1000000034352226111111552b3b24332838283900452b00000000003b6938000000000000000000000000003a28000000000000000028002800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002839000000103148236969652b3b31102829002a28551111000000003a2828000000000000390059000000002828000000000000000038002800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000112a2800000028292425362900003a28002a000000005521230000000010282a000000000000280000000000001028000000000000003a29002a390045000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002300283916002a002426287e003a29003e007e0000116524261111003a282900007e0000003a2800000000003a28280000000000000028007e001072540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000026113828000039112426281700103900230d0e0011752125334244112828000022222223003828390000003a3828290000000072742122230d0f212362740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002523282867682821252628003a28283826000000452125264253534428383900254825260028282810282828282800000000002122252526393a24252223000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000█those seeking for the#definitive summit shall#fall lest not prepared#for the worst to happen.█1,1,1,3,3,3,3,3,1,1,13,13,13,13,1,12,12,12,12,12,12,2,2,2,2,2,2,2█spike jump#press z early█5,5,5,13,13,13,13,13,3,3,5,5,5,5,0,0,0,0,0,0,0,1,1,1,1,1,1,1</code><br /> </div></div></div></p> <h1>Change Log</h1> <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> <h2>v1.1 - <em>Bricks and Crows</em></h2> <ul> <li>Rem is now fixed when sliding on ice walls (this is more of a tech fix)</li> <li>Brick blocks, both as solid and background tiles!</li> <li>Blue Balloons are here! They only refill a single dash.</li> <li>You can now change the color of the background tiles for each screen!</li> <li>Added a 3rd and 4th dash with Pink and Rainbow hair.<br /> (Note that the 4th dash is only accessible via a green balloon.)</li> <li>Added crows, use one to say dialog specified in the level settings.</li> <li>The Settings have now been split into the main settings, and the text settings.</li> <li>Added 3 songs to the Music Options <ul> <li>Prologue (2018 Celeste)</li> <li>Lani's Trek (Celeste 2)</li> <li>Summit Music (Forever Red)</li> </ul></li> </ul> <p>Levels from version v1.02 should be able to carry over and save as a v1.1 level.</p> <h2>v1.02 - <em>Popping Bugs, and Popping Balloons</em></h2> <ul> <li>Fixed a horrible bug with how levels are saved, it's should be now fixed.</li> <li>Green Balloons! Use the Magic Wand on red balloons make them green.</li> <li>You can right-click to erase instead of clicking on the eraser.</li> <li>You can now use middle-click as an eye-dropper tool.</li> </ul> <h2>v1.01 - <em>Memorials and Colors</em></h2> <ul> <li>Fixed a bug that overwrites the player spawn via dragging a tile onto it</li> <li>You can now edit the memorial text</li> <li>You can now change the tile color for each room</li> <li>Wand Tool tiles are slightly more intuitive</li> <li>Tweeked level codes, 1.0 levels <strong>CAN NOT</strong> load anymore</li> <li>Some boring token optimizations that no one cares about</li> </ul> <h2>v1.0 - <em>Initial Release</em></h2> <ul> <li>Released, was a silly little idea in my head</li> <li>Let's see how far this idea goes haha<br /> </div></div></div></li> </ul> https://www.lexaloffle.com/bbs/?tid=147646 https://www.lexaloffle.com/bbs/?tid=147646 Tue, 04 Mar 2025 02:58:11 UTC Mt.Fua <p>Oh boy it's time to remake my horribly named mods. Back when I was a little bitty boy I made my very first mod, called &quot;funny mountain game&quot;, although some of you might call it with a, different word... And now, 7-ish months later, I now made this, a remake (more of a reboot, but you know what I mean.) of the original mod. So uh, have fun I guess.</p> <p> <table><tr><td> <a href="/bbs/?pid=162332#p"> <img src="/bbs/thumbs/pico8_mt_fua-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=162332#p"> mt_fua</a><br><br> by <a href="/bbs/?uid=69779"> SwordF</a> <br><br><br> <a href="/bbs/?pid=162332#p"> [Click to Play]</a> </td></tr></table> </p> <p>This Celeste mod is significantly harder than the vanilla game. I'd suggest you play the original first before playing this mod. There are <em>3 routes</em>, with all of the berries being possible. I'd ask you if you can but lets face it, you're probably gonna try to get all berries anyway.</p> <h2>Controls</h2> <ul> <li>Arrows to walk</li> <li>Z to Jump</li> <li>X to Dash (when you get the ability to so)</li> <li>Enter to pause and go take a dump real quick</li> <li>Ctr 8 and Ctr 9 to record yourself doing stupid things</li> <li>L to do absolutely nothing</li> <li>Power button to turn off the game (and your computer)</li> </ul> https://www.lexaloffle.com/bbs/?tid=147294 https://www.lexaloffle.com/bbs/?tid=147294 Mon, 17 Feb 2025 17:02:50 UTC Tower of Arcania <p>After a while, I finally made a Pico8 game that isn't overrated Celeste slop, about time!</p> <p><strong>Welcome to Tower of Arcania, a tough-as-nails arcade-platformer.</strong></p> <p>Your goal is to run dodge bullets, and defeat each enemy on each floor you come across.<br /> Can you climb the 30 floors of the tower and get the very cliche-girl?<br /> Or do you suck at videogames?</p> <p>And, if you want, you can also play with a friend if they too also wish to suffer!</p> <p> <table><tr><td> <a href="/bbs/?pid=160888#p"> <img src="/bbs/thumbs/pico8_towerofarcania_v1-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=160888#p"> towerofarcania_v1</a><br><br> by <a href="/bbs/?uid=69779"> SwordF</a> <br><br><br> <a href="/bbs/?pid=160888#p"> [Click to Play]</a> </td></tr></table> </p> <h2>Controls</h2> <ul> <li>⬅️ ➡️ to move</li> <li>🅾️ to jump, you can also jump off of walls</li> <li>❎ to shoot fireballs</li> </ul> <h2>Other Key Points to Know</h2> <p>Every <em>10,000</em> points is an extra life.<br /> And to top that, the faster you defeat enemies, the more coins they drop.<br /> Each enemy also has a pattern to recognize, try to get used to them.</p> https://www.lexaloffle.com/bbs/?tid=146663 https://www.lexaloffle.com/bbs/?tid=146663 Mon, 20 Jan 2025 21:20:44 UTC Multicart Project Sneak-peak <p>Was working for a multi-cart that would be published in like, 7 months, and decided to give y'all a taste of what's to come this cc-mas with a demo of Chapter 1. Hope you enjoy! :D</p> <p> <table><tr><td> <a href="/bbs/?pid=159530#p"> <img src="/bbs/thumbs/pico8_multi_sneakpeak-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=159530#p"> multi_sneakpeak</a><br><br> by <a href="/bbs/?uid=69779"> SwordF</a> <br><br><br> <a href="/bbs/?pid=159530#p"> [Click to Play]</a> </td></tr></table> </p> <h2>Controls</h2> <ul> <li>Arrows to Move</li> <li>Z to Jump</li> <li>X to pickup and throw objects</li> <li>Down + X to place the object down rather than throwing it.</li> </ul> https://www.lexaloffle.com/bbs/?tid=146211 https://www.lexaloffle.com/bbs/?tid=146211 Thu, 19 Dec 2024 20:49:34 UTC Celeste Smol <p>Celeste Classic but it's on a smaller screen and also has visual upgrades I guess.</p> <p> <table><tr><td> <a href="/bbs/?pid=156941#p"> <img src="/bbs/thumbs/pico8_celeste_smol-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=156941#p"> celeste_smol</a><br><br> by <a href="/bbs/?uid=69779"> SwordF</a> <br><br><br> <a href="/bbs/?pid=156941#p"> [Click to Play]</a> </td></tr></table> </p> https://www.lexaloffle.com/bbs/?tid=145174 https://www.lexaloffle.com/bbs/?tid=145174 Wed, 06 Nov 2024 04:56:09 UTC Celeste Randomizer <p>3 and a half months ago, I had a silly idea of &quot;What if Celeste was randomized?&quot;. So, I started to work on a little proof of concept, and I really liked it, so I kept improving and adding more content to the point that it really should be shown to the world.</p> <p>So, here it is. <strong>Celeste Randomizer</strong>. A cart-mod of Celeste-Classic that randomizes the entire game with a variety of in-game settings to select from.</p> <p> <table><tr><td> <a href="/bbs/?pid=155563#p"> <img src="/bbs/thumbs/pico8_celeste_randomizer-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=155563#p"> celeste_randomizer</a><br><br> by <a href="/bbs/?uid=69779"> SwordF</a> <br><br><br> <a href="/bbs/?pid=155563#p"> [Click to Play]</a> </td></tr></table> <br /> Original celeste game made by Maddy Thorson and Noel Berry</p> <h2>Randomizer Options</h2> <ul> <li>Seed customization, allowing for people to play the same seed (maybe for races?)</li> <li>Changing player spawning or even have multiple at once!</li> <li>Berry placement, or none at all</li> <li>Changing the map to be vanilla, random tiles, or even procedural generated!</li> <li>Changing background and spike tile placements</li> <li>Game modes to select from</li> <li>Custom player graphics!</li> </ul> https://www.lexaloffle.com/bbs/?tid=144688 https://www.lexaloffle.com/bbs/?tid=144688 Thu, 10 Oct 2024 18:29:13 UTC Reprogram <p>This is a Pico8 demake of one of my original games.</p> <h2>Notes</h2> <p>This is a programming puzzle game where you use simple commands to reach the goal in each stage.<br /> And as a programming puzzle game, it <strong>at least expects</strong> you understand the core concepts of programming, like execution order, variables, loops, etc.</p> <p>This game <strong>does</strong> feature save data.<br /> It saves automatically upon beating a level, or unlocking a new area.</p> <p> <table><tr><td> <a href="/bbs/?pid=154301#p"> <img src="/bbs/thumbs/pico8_reprogram_v1_2_1-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=154301#p"> reprogram_v1_2_1</a><br><br> by <a href="/bbs/?uid=69779"> SwordF</a> <br><br><br> <a href="/bbs/?pid=154301#p"> [Click to Play]</a> </td></tr></table> </p> <h2>Controls</h2> <ul> <li>Arrows to move</li> <li>Z to Jump</li> <li>Click with the mouse to examine grid coordinates</li> <li>Use the keyboard to type commands in the code editor.</li> <li>Enter to open pause menu</li> </ul> <p>This game has a OST with <strong>enhanced music</strong> that can be found <a href="https://soundcloud.com/user-560669104/sets/reprogram-pico8-enhanced-ost">&gt; here &lt;</a>.</p> <p>If you wished for a walk-through of the game, one I made can be found <a href="https://www.youtube.com/watch?v=6H9NwJbuVfg">&gt; here &lt;</a></p> <h2>Update Log</h2> <h3>v1.2</h3> <ul> <li>Added new tilesets for each world</li> <li>Visual change to level 28</li> </ul> <h3>v1.1</h3> <ul> <li>Entirely changed level 26</li> <li>Made level 25 slightly easier</li> </ul> <h3>v1.0</h3> <ul> <li>Release</li> </ul> https://www.lexaloffle.com/bbs/?tid=144257 https://www.lexaloffle.com/bbs/?tid=144257 Mon, 16 Sep 2024 03:37:27 UTC Gock <p>This Celeste Classic mod took me so damn long to make, at least a month's worth of time dedicated to this. I really hope you enjoy this.</p> <p> <table><tr><td> <a href="/bbs/?pid=153118#p"> <img src="/bbs/thumbs/pico8_gock_version_1_1-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=153118#p"> gock_version_1_1</a><br><br> by <a href="/bbs/?uid=69779"> SwordF</a> <br><br><br> <a href="/bbs/?pid=153118#p"> [Click to Play]</a> </td></tr></table> </p> <p><strong>Controls</strong></p> <ul> <li>Arrows to move</li> <li>Z to jump</li> <li>X to dash (when you acquire the ability)</li> </ul> <p>There are 18 collectibles in total, and <em>only one</em> Gemskip Route, leading to the best ending, however you won't be able to collect all the collectibles in this route, due to collectibles being either in fake walls, or being way too out of reach.</p> <p>Making a 0-dash Gemskip route was already hard enough with the options you even have anyway.</p> <p><strong>Update Log</strong></p> <p>v1.1</p> <ul> <li>Fixed the arrow block glitch where can get you stuck.</li> <li>Added quick restart button.</li> </ul> <p>v1.0</p> <ul> <li>Release</li> </ul> https://www.lexaloffle.com/bbs/?tid=143814 https://www.lexaloffle.com/bbs/?tid=143814 Thu, 22 Aug 2024 23:57:10 UTC funnymountaingame.p8 <p>This was the very first Celeste Classic mod I made.<br /> This was made for a stupid sibling or something idk.<br /> <table><tr><td> <a href="/bbs/?pid=152832#p"> <img src="/bbs/thumbs/pico8_mountaingame-3.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=152832#p"> funnymountaingame.p8</a><br><br> by <a href="/bbs/?uid=69779"> SwordF</a> <br><br><br> <a href="/bbs/?pid=152832#p"> [Click to Play]</a> </td></tr></table> </p> https://www.lexaloffle.com/bbs/?tid=143732 https://www.lexaloffle.com/bbs/?tid=143732 Sun, 18 Aug 2024 03:53:16 UTC Celeste EA <p>If Celeste was made by EA, this would be it i guess?</p> <p>Just a silly little mod I made for no reason whatsoever.</p> <p> <table><tr><td> <a href="/bbs/?pid=151916#p"> <img src="/bbs/thumbs/pico8_yihkedeko-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=151916#p"> Celeste EA</a><br><br> by <a href="/bbs/?uid=69779"> SwordF</a> <br><br><br> <a href="/bbs/?pid=151916#p"> [Click to Play]</a> </td></tr></table> </p> https://www.lexaloffle.com/bbs/?tid=143374 https://www.lexaloffle.com/bbs/?tid=143374 Tue, 30 Jul 2024 01:28:45 UTC Pineapple Pizza <p>This is a mod of Celeste Classic I made, being a demake of a Celeste mod me and someone were working on.<br /> This said mod, as of this date of post, is uncomplete. I doubt we will ever be able to finish it.</p> <p>So I guess for now you can do whatever with this.</p> <p>There are 11 red berries, a crystal heart, and a golden to collect. Can you collect them all?</p> <p> <table><tr><td> <a href="/bbs/?pid=151915#p"> <img src="/bbs/thumbs/pico8_wpukinew-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=151915#p"> Febten's Pineapple Pizza Act I</a><br><br> by <a href="/bbs/?uid=69779"> SwordF</a> <br><br><br> <a href="/bbs/?pid=151915#p"> [Click to Play]</a> </td></tr></table> </p> https://www.lexaloffle.com/bbs/?tid=143373 https://www.lexaloffle.com/bbs/?tid=143373 Tue, 30 Jul 2024 01:25:11 UTC