Log In  
Follow
tetris mino

I make games and songs!

pico-8 (doom editor?) bug!
by tetris mino
[ :: Read More :: ]

so the new picotron is finally out, and the browser version is no where to be seen! even though pico-8 and voxatron had browser versions! but I think that the reason lexaloffle cant make the browser version is just because they can't figure out what to do with the workstation, and I don't blame them! it would be hard to make it a seamless transition between the full version and the browser version, and the only way I could ever think of is using a default background and limiting use to just the cartridge. I hope lexaloffle will make the browser version one day to open the field to wider audiences!

P#143350 2024-03-16 18:12

[ :: Read More :: ]

Cart #sebukizibu-0 | 2024-02-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

it breaks when i add autoclicker

P#141559 2024-02-16 16:31

[ :: Read More :: ]

I have recently learned to program on the NES, please keep the scope lower, I have 4 3-color palletes to work with here, so some may look worse than the original game, if you have your own idea, please don't post it here, this place is for me to learn the ins and outs of the NES, and I figured Id post it here because its easy for people to think of 8-bit style games, and I'm okay with not making my own stuff for a while, and then after I learn more, Ill try to make more of my own games!

bye for a line!

P#140714 2024-01-27 18:39

[ :: Read More :: ]

room-??

Cart #huh-0 | 2024-01-23 | Code ▽ | Embed ▽ | No License
1

P#140466 2024-01-23 01:47

[ :: Read More :: ]

so, how does it work? you may ask.

well right now, i have the map editor

and you can do this:

[13x7]

but why?

because im bored

P#139434 2023-12-31 20:38

[ :: Read More :: ]

Cart #spoopybeat-0 | 2023-10-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

halloween is coming up so i decided to make a music for that reason

its simple music, but on halloween, ill do an even spookier thing (get ready for that)

anyway, have a happy halloween, and hopefully the same for every other day

P#135935 2023-10-15 17:56 ( Edited 2023-10-15 18:00)

[ :: Read More :: ]

on pico-8 EDU, its really hard to not paste the GFX you copied from another website, (with credit) for some reason, even going to copy something unreadable and then copying whatever you want does not work, it just copies it again

(sorry the gif looks bad, pico-8's screen recorder does not record copying and pasting)

P#135873 2023-10-14 05:54 ( Edited 2023-10-14 05:55)

[ :: Read More :: ]

yes, this is totally a real recording of pico-8, nothing wrong here

P#135869 2023-10-14 02:00

[ :: Read More :: ]

it has been a while since i talked about my game (or talked at all) so i am going to share the first demo clip: dialogue

its really cool, its going to be in the first playable demo, too!

...and anything that has to do with "N O D E" and made by me

and remember to have a...

[62x10]

P#134405 2023-09-15 18:07

[ :: Read More :: ]

thats right, i made optimised sprite drawing for picotron, although, you might wanna have chatGPT do it for you...

function sprpt(s,x,y)
 if s=="star!" then
  rectfill(x+2,y+2,x+5,y+5,10)
  rectfill(x+3,y,x+4,y+1,10)
  pset(x,y+2,10)
  pset(x+1,y+2,10)
  pset(x+1,y+3,10)
  pset(x+7,y+2,10)
  pset(x+6,y+2,10)
  pset(x+6,y+3,10)
  pset(x+1,y+6,10)
  pset(x+2,y+6,10)
  pset(x+1,y+7,10)
  pset(x+6,y+6,10)
  pset(x+5,y+6,10)
  pset(x+6,y+7,10)
 end
 if s=="heart!" then
  rectfill(x,y+1,x+7,y+4,8)
  rectfill(x+1,y,x+2,y+5,8)
  rectfill(x+5,y,x+6,y+5,8)
  rectfill(x+2,y+5,x+5,y+6,8)
  rectfill(x+3,y+5,x+4,y+7,8)
 end
end
function _update()
 sprpt("star!",30,30)
end

i spent more time on the star because even copy+paste does not save much

yes, admittedly, it does not work from data based sprites, its code based only! if you want an unoptimized lazy version, ill upload one later!

P#133338 2023-08-21 04:33 ( Edited 2023-08-21 04:45)

[ :: Read More :: ]

yup, i decided to get lore put into my game, it is not complete yet but heres the description to start the lore before the game is done!:

Dive into the heart of the digital universe and embrace the role of Node 42, a digital storage unit with a destiny unlike any other. In "N O D E," a retro action-adventure game, you will embark on an epic journey to protect Nodekind from the malevolent threat of "The evil master"

P#132840 2023-08-07 20:58

[ :: Read More :: ]

So, im on my PS4 browser and the search system just wont let me search, i dont know why! Please fix this, @zep

P#131990 2023-07-15 06:17

[ :: Read More :: ]

this allows you to make an image in pico-8, it also allows you to use the tools in the sprite editor to make a new image, just make sure to save!

--image details
w=16
h=16
palette={0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15}
--init image
for i=0,15 do
    pal(i,palette[i+1],1)
end
cls()
spr(0,0,0,w,h)
--disable console controll (untill esc is pressed)
function _update()
    flip()
end
P#131896 2023-07-13 02:54 ( Edited 2023-07-13 02:56)

[ :: Read More :: ]

for some reason, no matter what i try, i always catch myself doing game development! i dont know why! i dont like going through the pain that is bug fixing, but i just do it anyways!

P#131615 2023-07-04 06:03

[ :: Read More :: ]

this idea came to me while i was making my multi-cart, its not the coding thats hard, no, its tedious, even with copy and paste, it gets tedious, and debugging can get tedious as well! so, i quit making games, its not that i quit pico-8! im gonna exclusively make songs now! the only other thing i am able to do is songs. so, goodbye game dev, hello composer

P#131482 2023-06-30 03:59

[ :: Read More :: ]

Cart #razohewipu-0 | 2023-06-27 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

its a...
[19x5]
between me and pico-8 where i just cant code without having issues.

P#131377 2023-06-27 00:18 ( Edited 2023-06-27 00:19)

[ :: Read More :: ]

Cart #yayyijiha-0 | 2023-06-26 | Code ▽ | Embed ▽ | No License
1

SEE LESS -- a celeste mod, it replaces your world with checkerboard tiling!

P#131331 2023-06-26 05:58

[ :: Read More :: ]

multicarts are cool, so im gonna make one

i have no information on how to do this, so im just gonna make the simplest type of multicart, literaly just loading different carts for different levels, i dont know why multicart games like poom dont use this! although, i may be wrong about how cart loading works... hopefully i dont need to worry though! ill try to push through and make the best cart ever!

P#131182 2023-06-21 02:34

[ :: Read More :: ]

Cart #nodojonezo-0 | 2023-06-20 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

depite the name, its not an OS, its a launcher, you can use it to launch .p8 files, its meant to make things more tidy and be able to do the things you want, its based on actual OSes, but mostly, the graphical explorers that exist, like ones that don made for ms-DOS, its not as "tidy" as this though! i hope you love it!

P#131159 2023-06-20 07:28 ( Edited 2023-06-20 07:30)

[ :: Read More :: ]

[24x24]

the pico-8 large font (made by me) is quite cool, it allows more detailed letters and much more! i will soon make a "larger font", hopefully, it wont take up too much more space!

[128x32]

P#131124 2023-06-18 23:04

View Older Posts
Follow Lexaloffle:          
Generated 2024-03-28 16:41:30 | 0.081s | Q:50