Log In  
Follow
Lahat

Cart #tamago-1 | 2024-01-27 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA


Just working on a tamagochi like thingy with my daughter

0 comments



Cart #yuwowanugo-0 | 2022-08-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

0 comments



Cart #langtons_ant-0 | 2022-02-06 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2


I was bored and made a Langton's ant, after quick success, I decided to try to make it more complicated by following the more advanced rules by Greg Turk and Jim Propp. Which allows for more colors. There is also a rule editor by pressing "Z".

2
3 comments



Cart #pokemon_bouncer-0 | 2021-07-04 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
11

This is the first game that my talented 5 year old daughter made, I've helped her with the code, but she made the sprites and sounds by herself.

11
3 comments



Cart #jelpimath-1 | 2020-04-11 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
12

I've made a math games for my Daughter.

I am did not want to focus on the art side (not my strong point). So I have heavily modified the Jelpi demo (just kept the sound and the beloved Jelpi).

Dear @zep is it ok if I use jelpi and his music for this cartridge?

12
2 comments



Hi I have made a quick python script to turn an square picture to a string of text that can the be parsed by pico8 to make a nice splashscreen.


Pico8 code

function txt_to_pic(txt)
 local d={
 a=10,
 b=11,
 c=12,
 d=13,
 e=14,
 f=15
 }
 d['0']=0
 d['1']=1
 d['2']=2
 d['3']=3
 d['4']=4
 d['5']=5
 d['6']=6
 d['7']=7
 d['8']=8
 d['9']=9
 local x=0
 local y=0
 for i=0,#txt do
  if x>128 then 
   x=0
   y+=1
  end
  c=d[sub(txt,i,i)]
  pset(x,y,c)
  x+=1
 end
end

And here is the python script (just replace "me.jpg" by your image):


import numpy
import PIL
#%%
img = PIL.Image.open("me.jpg")
img = img.resize((128,128))
imgarr = numpy.array(img)
newimg=numpy.array(img)
img.resize((128*10,128*10))

[ [size=16][color=#ffaabb] [ Continue Reading.. ] [/color][/size] ](/bbs/?pid=69552#p)
5
6 comments



Cart #brexit-2 | 2019-10-31 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
22

A highly realistic simulation of Brexit negotiations. Enjoy the riveting and exciting career of a Brexit Prime Minister. Only you can do this, because no one else wants to deal with it.

I have not seen any 'political satire' games here, so I hope its a good precedent. There is very contextually implied nsfw material which is based on real events and quotes.

22
13 comments



Hi, I am having a problem with sprites and the map.

It seems that the botom half of my spritesheets is interlinked with the bottom part of the map.

It is realy frustating, is there anything I can do?

1
3 comments



Following the vein of word quiz animals I have now made another version.

Code wise it now enables to use funcitons instead of sprites.

The drawing function do not use any global variable besides the tick number (tick+=1 every _update()).

Any suggestions would be welcome.

Cart #word_quiz_shapes-3 | 2019-10-24 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

To do:

better mainpage.
MOAR shapes.

2
8 comments



Cart #word_quiz_animals-2 | 2019-10-21 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

A small young children game for learning to spell and read.
want to update with more and more animals (ideally consume all possible sprites).

5
14 comments



Cart #58686 | 2018-11-02 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

A simple generative art.

The formula is printed at the bottom of the screen.

2
4 comments



Cart #58501 | 2018-10-28 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

generative art

2
0 comments



Cart #58466 | 2018-10-27 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

Just playing with pixels.

A bit of generative art.

3
3 comments