Log In  

BBS > Community Superblog
All | Following | GIFs | Off-site

Cart #growth-3 | 2019-07-17 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6

A flower blooms slowly towards the sky.

This is a game made for the 220th One Hour Game Jam, the theme of which was "Growth".

Also on itch.io.

Cart art by the amazing Wallkick!

6
1 comment


Cart #gbenikuje-3 | 2019-08-10 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

A Breakout clone for the CIS102-T301 course. The skyline in the background is a pixel art rendition I made based on this picture by Thor Rudebeck.

1 comment


Cart #asteroids_pico-1 | 2019-07-20 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

A little game that I made, inspired by the classic Asteroids.

It does have a few differences:

  1. Sprite based graphics.
  2. Camera is centered on the player.
  3. Bullets don't wrap, but you can shoot as much as you like.
  4. No teleport ability.
  5. Shooting the UFO not only gives bonus points, it also allows experienced players to skip levels.

Edit: In the new version, which is likely the final version, I have added the UFO, more asteroid sprites, an override for the spawn safety, and a little score pop-up that shows how many points you got from shooting something.

4
2 comments


Cart #godohegeri-0 | 2019-07-13 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

2 comments


Clone of breakout I am working on for school.

0 comments


can someone tell me why I am getting nil when printing out the stars px and py values?

local stars={}
for i=0, 16 do add(stars,{x=rnd(128),y=rnd(128),px=x,py=y,c=7}) end --px and py are equal to x and y

drwmenu=function()
	if btn(2) then menuind-=1 end
	if btn(3) then menuind+=1 end
	menuind=mid(0,4)

	for v in all(stars) do
	print(v.px) --prints nil 
	print(v.py) --prints nil
		line(v.x,v.y,v.px,v.py,v.c)
		--line(v.x,v.y-128,v.px,v.py,v.c)
		--v.py=v.y

		--v.y+=8
		if v.y > 127 then v.y-=128 end
	end
	if (time()-last > 1) then
		rectfill(0,112,127,120,1)
		print("press start!",0,114,7)
		if (time()-last > 2) then last=time() end
	end
end
2 comments


does yield() work outside of coroutines and inside functions?

I feel coroutines are a pain to setup and update when it would just be easier to call yield inside a function
not to mention the tokens required to setup coroutines and call/update them

function wait(t)
  for x=1,t do yield() end
end

function test()
 wait(2)
 print("test")
 wait(2)
end

function _update()
 test()
end
4 comments


Cart #brickbreakerx-0 | 2019-07-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

0 comments


Cart #wrongkynd-0 | 2019-07-12 | Code ▽ | Embed ▽ | No License
12

Wrongkynd is a creepy top down horror and action game in a gory and gloomy atmosphere.
It was created by me originally for the Gorejam of July 2019.
You are the archdemon Tluk'itral and have managed to enter into our universe.
You exist only to devour human beings by dozens.

Note: The sounds may lag sometimes if you play online on lexaloffle website.

2019 - Atygeek - All rights reserved

12
6 comments


All timestamps in the forum
are shown as "NaN years ago".
Am I the only one to experience this issue?

2 comments


Cart #yodasbricks-0 | 2019-07-12 | Code ▽ | Embed ▽ | No License
1

1
0 comments


Cart #pizezotewe-0 | 2019-07-11 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

Simple Rick Brick

This very simplistic game was made for CIS102 at Bellevue University. I can honestly say that my experience in the PICO-8 community has been phenomenal and want to give shout out's to all the programmers, developers, and designers out there! I've loved video games for a long time now, but from the spectator side. It's overwhelming to learn just how much time, effort, and energy is placed into these games.

0 comments


Cart #pico_dictator-0 | 2019-07-11 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

pico dictator 1.00

This is a pico-8 demake of one of my childhood memories, the turn based strategy game "DICTATOR" for the Sinclair ZX Spectrum.

I didn't recreate it 100% but instead tried to recreate the look and feel of the game (I added some more graphics etc). The internal engine for the game rules though should be nearly identical.

In DICTATOR you are the ruler of the African banana republic Ritimba and you need keep the different factions of the country - the army, the peasants and the landowners - happy while working tightly together with your secret police. Other parties you need to manage are the guerillas, the neighbor Leftoto, the Russians and the Americans.

[ Continue Reading.. ]

5
4 comments


Cart #ostrich_n_fire-2 | 2019-07-12 | Embed ▽ | No License
6


Submission for NABAVision 2019 @ NABA, Milan

6
0 comments


Cart #interlace-2 | 2019-07-12 | Embed ▽ | No License
8


Submission for NABAVision 2019 @ NABA, Milan

8
2 comments


Cart #moonscape-3 | 2019-07-12 | Embed ▽ | No License
11


Submission for NABAVision 2019 @ NABA, Milan

11
4 comments


Cart #momiyihijo-0 | 2019-07-11 | Code ▽ | Embed ▽ | No License
3

Just a small test that I made for fun. I've always been interested in programming some sort of graphing calculator, but never attempted it. Well, this is one step closer. I made a viewer that draws 14 different functions. You can also zoom in and out to get a better view of the function.

It would be cool to make something that actually allowed you to input your own function, but that is a project for another day. I also wanted to add option to move around the coordinate system, but lack of buttons made that difficult.

Anyway, I hope someone gets something out of this. At least I had fun coding it. :)

3
3 comments


Cart #welcome_hello-1 | 2019-07-12 | Embed ▽ | No License
3


Submission for NABAVision 2019 @ NABA, Milan

3
0 comments


hello! i have made a tool to make pico 8 music composing easier

see it in action: https://twitter.com/maplesbian/status/1148878267316932608

get to the good stuff: https://github.com/Lana-chan/it2p8.py

have fun

4
7 comments


Cart #mujewzke-0 | 2019-07-11 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

1
0 comments




Top    Load More Posts ->