Log In  

BBS > Superblog
Posts: All | Following    GIFs: All | Postcarts    Off-site: Accounts

Cart #33493 | 2016-12-14 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3


We started this game during the Tuesday night eat n educate programming class at the Melbourne Makerspace in Melbourne Florida on December 13, 2016.
The idea is to eventually have an AI or 2nd player at the top throwing snowballs back down at you. So you have to balance making snowballs (you can't move while making them!) and dodging and throwing snowballs.
We even thought about making a snow fort / wall to hide behind and having a third thing to worry about by having to stop and build up the wall / fort as it gets slowly chipped away by opposing snowballs.
A work in progress!

3
1 comment


Hello, I'm trying to use a function that uses a power that is less than 1, and for some reason pico will always evaluate it to 0. Is this just a limitation of pico? and any ideas on alternatives to achieve a similar result?

sin( x ^ ( 1 / 3 ))


3 comments


ALT-ENTER also opens the pause menu.
that looks like a (arguably) slightly annoying feature, until you redefine the pause button to something else than ENTER and it stops happening.
so I guess it's actually a slightly annoying bug...

1
9 comments




Arseny don't like New Year's eve. Why? Because he is a perfectionist and hates garlands hanging around with their unequal number of colours. But this year everything will change, because Arseny has got a canon (Where did it come from?!) and came up to set up rights on streets of the city.

Little simple game we made together with my friend Liza for course of Computer Game Industry. Rules are pretty simple: shoot in lamps of different colours to equalise their number. X to shoot, Z to restart level. This game was designed for russian audience, but you still can try to play it.


0 comments


Seeing all the LD Jam carts has me wondering about the Jam category here in the BBS...should carts related to LD and others get posted there? Or go into the normal Cartridges category?

Ultimately, I guess it doesn't matter - they all show up in the primary list - but just wondering what the intent is between the two sections.

6 comments


Hello! I am trying to make my sprite stop moving when they hit a wall sprite. I have gotten to the point where I can observe when the sprite is or isn't in the flagged wall sprite, but I can't actually stop the sprite from moving. Still very new to pico-8 and coding in general so any help is much appreciated!

x=16
y=16
dx=0
dy=0

function _init()

end

function _draw()
	cls()
	map(0,0,0,0,16,16)
	spr(3,x,y)
	if collide() then 
		spr(5,0,0)
	end
end

function _update()
	x+=dx
	y+=dy
	if btn(0) then 
		if collide() then 
		dx=-dx 
		else 
		x-=1 
		end 
		end
	if btn(1) then
		if collide() then 
		dx=-dx
		else 
		x+=1 
		end 
		end
	if btn(2) then 
		if collide() then
		dy=-dy
		else
		y-=1
		end
		end
	if btn(3) then
	if collide() then 
		dy=-dy
		else 
		y+=1
		end
		end
end

function collide()
	v = mget(flr(x/8)+1,flr(y/8)+1)
	return fget(v,0)
end
0 comments



Kind of on vacation but.. I had an idea for how to make the lines a lot more visually appealing so here you go.


4/3/2018 - This adds support for a 'kanji' mode. Currently it just includes all 79 of the JLPT5 kanji. The way characters are stored has been updated, and should allow for more kanji in the future.

There have also been some graphical updates (mostly just to the title screen and kanji mode, but yeah..

Anyway, hope some people find this useful. I know that just plotting out the characters for this has helped my reading speed a /lot/. Oh and if you notice any mistakes, please let me know!!

Oh yeah, eventually I want to add support for different pronunciations and a Mandarin (han) read mode. A screensaver feature could be cool too, but I'm waiting to convert the kana/gana to the new data format first.


[ Continue Reading.. ]

27
24 comments


Afternoon

I am complete NOOB when it comes to Linux on my Raspberry PI!

Could someone point me in the right direction on how to execute PICO-8 under Rapsbian Jessie (PIXEL)?

I have the zip file unpacked in /pi/home/pico-8/ but what do to start it up?

Many thanks!

Jason

1
6 comments


Cart #chamber-1 | 2021-04-06 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
52

A mini adventure game.

This cartridge extensively abuses Lua memory, lossy zlib compression, data-stored-in-code, and dget to render a 600×252 image with pixel-perfect scrolling. This is more a tech demo but I ended up doing a full mini game for Ludum Dare 37.

I’ll write a postmortem to explain all the hacks.

52
13 comments


Cart #33416 | 2016-12-13 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4


LD37 entry

Summon enemies to be stronger, and slay the demon.

arrow key : move
z : open items window
x : open summon window

credit: nonsako ( @nonsako) : programming / art

4
1 comment


Hi everyone,

I have enhanced the Pico-8 cheat sheet based on the PDF version.
I included more info which I find useful.
This version fits best on a 1080p screen (or closer aspect ratio),
while the pdf version fits best on an A4/letter size paper.

revision: PICO-8 0.1.11g (rev:M)
fixed: shl, shr, for loops, character limit
added: p/enter, folder, mkdir, peek4, poke4, lshr, ceil, shrink code category, coroutine category, indent selection, cartdata category
enhanced: colors for visual clarity, screen coordinate, rearrange layout
removed: dark theme

revision v0.9.7: (PICO-8 version 1.11d)
fix: fullscreen shortcut: alt enter/F11

revision v0.9.6: (PICO-8 version 1.11d)
added: import, export, !=, tostr(), tonum()
modified: sfx(), fullscreen shortcut
enhanced: dark theme, music keyboard layout

revision v0.9.5: (PICO-8 version 1.10c)
ADDED:
Commandline: shutdown, reboot
Sprites: sget, sset

[ Continue Reading.. ]

325
57 comments


Cart #33395 | 2016-12-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

This is my first game i've created. It is a work in progress and loosely based on a tutorial I found. All you do is dodge / shoot asteroids and try for a high score.

0 comments


Cart #33390 | 2016-12-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

1
0 comments


This is "Vault", my LDJAM37 compo entry, created around the theme of "One Room".

You are a police detective, asked to investigate a double homicide.

A millionaire woke up this morning to find two thieves dead in his super secure vault.

Search the crime scene for clues and discover what really happened...

Controls:

Arrow-keys/D-pad: Move around
Z (or N or C): Inspect where you are facing
X (or M or V): Use the currently equipped item.
Enter: Open the Pause/Inventory menu

Inventory:

Up/Down: Select item
Z: Equip or Unequip
X: Close inventory

Cart #33385 | 2016-12-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

2
4 comments


Cart #teniyowune-0 | 2022-12-10 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
108

Heliopause: 2D space exploration and combat for the pico-8!

v1.2.1:

  • Revert minified source code
  • Create an object class

v1.2:

  • Original 2017 Release

You can also find this on github here.

Controls
(change style in options > mouse+music > control mode)

Gamepad
left, right - turn ship
up - thrust forward
down - point in the opposite direction of movement
z - open and close the pause/ship menu (use arrow keys to make selections]
x - fire weapon

Mouse
Ship will rotate to face mouse cursor
right click thrusts forward
left click shoots

[ Continue Reading.. ]

108
34 comments



Explore a mysterious and exciting dungeon filled with exciting mysteries without ever leaving the same room!

Why would you change rooms when clearly this one has all the danger and excitement and danger that one could possibly need?!

Come to the One Room Dungeon and live the rest of your newly mysterious-and-exciting life there!!!

One Room Dungeon is my entry to Ludum Dare #37, of which the theme was 'One Room'!

It's definitely my most ambitious LD entry so far and I'm very happy with it too! Sadly I had to rush the audio a bit towards the end because time was going faster somehow.

The game is also on Itch.io and of course there's the Ludum Dare submission!

[ Continue Reading.. ]

165
22 comments


Cart #33367 | 2016-12-12 | Code ▽ | Embed ▽ | No License

http://ludumdare.com/compo/ludum-dare-37/?action=preview&uid=123963

0 comments


Cart #33362 | 2016-12-11 | Embed ▽ | License: CC4-BY-NC-SA

0 comments


Cart #33356 | 2016-12-11 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
25

Hi,

This is my first pico-8 game! It's also LD37 submission for a theme "one room".

The game is a highly minimalistic roguelike. I'm not very good with graphics or sound, but I tried to make gameplay fun and balanced. The core mechanic is weapons - there are three different ones (won't spoil it here) and they have "charges". If you ran out of charges, you cannot attack! I'm quite happy with how it turned out. It's not very difficult to win for a roguelike, but you'll very likely die a few times.

25
6 comments




My entry for Ludum Dare 37 (theme: one room).

You're an interior decorator, and your job is to give your clients nice and shiny new homes. Take note of their demands and try to give them exactly what they want.

Features:

  • a whopping 8 different pieces of furniture!
  • a massive two (2) unique clients!
  • almost 30 furniture styles!

Controls:

  • arrow keys: move cursor/select item and style
  • Z (circle): new item/pick up item/place item/confirm/continue
  • X (cross): finish decorating/delete item/cancel

Feel free to post screenshots of any neat rooms you decorate!


Not entirely satisfied with this one, could have gone further with it but I started losing motivation toward the end. I think it's a neat concept and I have some unexplored ideas on where it could go next, but I'm doubtful I'll keep working on it post-jam.

The cart is released under CC4-BY-NC-SA, so if you want to remix it or expand upon it (like adding more furniture or clients (or just cleaning up the spaghetti code)), I encourage you to do so.

11
2 comments




Top    Load More Posts ->