Log In  

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

Cart #14584 | 2015-09-24 | Code ▽ | Embed ▽ | No License
3


This is a song I made up today. I wanted to make something chill, because a lot of chip stuff these days is super uptempo and arpy. Please enjoy! Sorry there is no interactivity.

Feel free to use this in your own games, just let me know about it.

If you like this, I will make more!

3
1 comment


What are some methods to use in order to decrease token amount in the game?

1
2 comments


Hi all.
The following code doesn't work -- players don't get drawn.
What am I doing wrong?
Thanks in advance.
Alex

players = {}

function make_player(col)
  local p = {}
  p.x = 0
  p.y = 0
  p.color = col
  return p
end

function draw_player(p)
  rectfill(p.x-2,p.y-2,p.x+2,p.y+2,p.color)
end

function _init()
  players.home = make_player(1)
  players.visitor = make_player(8)
end

function _draw()
  cls()
  foreach(players, function(p) draw_player(p))
end
6 comments


foo() -- 3 tokens
foo"" -- 2 tokens

when calling an argument where arguments are not used, note this is the same as passing an empty string, not nil!

you can also call a function and pass a single table using

foo{1,2,3,4}
--which is cheaper than
foo({1,2,3,4})

use with care! =)

1
2 comments


Cart #14860 | 2015-10-02 | Code ▽ | Embed ▽ | No License
87


How to play

Go forward in right direction.
Seek a hollow as refuge not to be crushed.
[Z][X]: start/retry game

Release notes

0.61 (Oct 2, 2015)

  • Draw background and so on.

0.50 (Sep 28, 2015)

  • Tune logic of generation of cave.
  • Play music.

0.30 (Sep 24, 2015)

  • Initial Release.

(Older versions)
[hidden]

Cart #14707 | 2015-09-28 | Code ▽ | Embed ▽ | No License
87

Cart #14547 | 2015-09-24 | Code ▽ | Embed ▽ | No License
87

[ Continue Reading.. ]

87
27 comments


Cart #14537 | 2015-09-23 | Code ▽ | Embed ▽ | No License
4

This is the first thing I did in PICO-8. It's not so much a "game" as it is a proof of concept and an attempt to figure out what all this "machine" is capable of with a little inginuity. It...doesn't sound CLEAR, but it kinda sounds like speech, so I'll take that as a success at this point!

4
4 comments


Cart #18754 | 2016-02-09 | Code ▽ | Embed ▽ | No License
4

Dom8verse is a demake of our WIP game Domiverse.
It is a multiplayer arena, one hit “Nooo” game, where aliens with unique skills fight for the domination of the universe.

The pico-8 version only has one character and allow 1v1 versus friend. So it is highly recommended to use joysticks to play the game.

Default inputs:

Player 1:
Move: Arrows
Jump: N
Shoot/reload: M

Player 2:
Move: ESDF
Jump: Left Shift
Shoot/reload: A

We will make updates to add characters and map.

Domiverse website

Changelog:

0.1.1:

  • Fix bug due to pico-8 update

0.1:

  • Initial release

Domiverse website

4
6 comments


Cart #14609 | 2015-09-25 | Code ▽ | Embed ▽ | No License
2

Heart Wars

Use your heart beam to strike your opponent's heart for the win!

Still a work in progress but small changes are on their way!

Player 1 is the orange heart (using E,S,D,F)
Player 2 is the green heart (using the arrow keys)

2
4 comments


I've been hanging out in the IRC channel for a while and it's been really cool to see the community come up around Pico-8. The Fanzine ramped things up by showcasing the cool stuff people have come up with. I haven't made many carts yet but some people expressed interest in what I think makes good code as a professional software developer.

Because of that, I wrote this little series for you guys based off of what I saw in the Fanzine: Clear Code. Some folk in IRC got a kick out of it so hopefully someone here enjoys it as well :)

I also have to say a huge thank you to everyone who contributed to the Fanzine. It takes a certain courage to put your code in public like that so I certainly hope no one minds that I picked some of it apart to make my points.

If you have opinions on code or code snippets to share, post them! I love talking code and Pico-8 brings a lot of interesting developers and ideas together.

3
11 comments


Hi,

Is there a way to make bitwise operations in pico8?
Otherwise, I don't understand how btnwe are supposed to use the bitfields returned by the functions btn() and fget(n).

Shouldn't we be able to do something like :

flag2_set = fget(tile) & 2

I know fget(tile, 2) would work, but I don't see how to use the bitfield. Am I missing something obvious?

1
2 comments


Cart #14490 | 2015-09-22 | Code ▽ | Embed ▽ | No License
3

Here's my Pico8 game 3D Wars.

It's a simple invaders game, with an added anaglyph (red/blue) 3d mode.

The anaglyph mode is very rough and ready. The red/blues aren't quite the correct hue (and as there's no way to hack the palette they just have to do). Also, because there's no blendmode natively available, it relies on persistence of vision to make it work. [ WARNING ] This means it is VERY flickery - if you're in any way sensitive to strobe lighting give the 3d mode a miss!

3
6 comments


Hi,
I'm trying to port to PICO-8 a version of the classic old-school plasma effect I have done in javascript.

This is the code so far

I have the major problem that due to pico limitations, all those sin, cos and sqrt just freeze it. If you don't try to fill up the whole screen (for example,

for y=1,10

instead of

for y=1,127

it mostly works.

Any idea on how to improve in this?
Thanks

5 comments



This is my first game on the Pico-8, and, to be honest, the first game that I have "polished" to this level.

Goal:
Explore a hazard-filled cave, collect all of the treasure, and then escape through the elevator hidden in the depths.

Controls:
Left and Right to move.
Up to jump.

Game:
As befits a normal human going against skeletons, slime creatures, and demonic bats, you are completely defenseless and can only shrug off damage that comes your way. Luckily, the intelligence of said critters is meager at best, so it is possible to avoid coming into contact with them.

Let me know what you think.

Thanks,
[i]ElectricGryphon

[ Continue Reading.. ]

20
8 comments


Cart #14457 | 2015-09-21 | Code ▽ | Embed ▽ | No License
2

Regards

2
1 comment


Cart #14453 | 2015-09-21 | Code ▽ | Embed ▽ | No License
14

The final game created in my PICO-8 tutorial.

14
3 comments


Cart #14449 | 2015-09-21 | Code ▽ | Embed ▽ | No License
7

Original Flash experiment

When I was starting programming this Flash experiment by André Michelle really struck me.
It had beauty, conciseness, and I could see the (at the time really cryptic to me) code.

This cartridge is a humble and sort of crude hommage to this good memory

Ideas for performance improvement, increasing particle quantity:

  • Maybe using QuadTrees to avoid looping through too far away neighbours

Use arrow keys to move Blob
Z to Attract
X to Repulse

7
8 comments


I realize saving comes to Pico, but I've always wondered how one would create password save system like old games had. Any tips?

1 comment


Cart #16901 | 2015-11-23 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
26

Windy is really moody today... maybe the weather will get better if you play a little bit with her.

My first cartridge is this little physics demo.
Had lots of fun learning PICO-8 with this!

Sorry but there is no playability yet.
Who knows, maybe i'll work a little bit more on it.

Code will be updated over here: https://github.com/cauli/PicoBox

Changelog

0.0.4

  • Now using a faster trifill algorithm by nusan (borrowed from Pico8 3d Renderer by orange451)

0.0.3

  • Added ripple effect
  • Jump with camera movement

0.0.2

  • Improved stability by using sqrt0
  • Reduced number of trifill seam glitches drastically
  • Improved performance by reducing the number of tris/quad from 4:1 to 2:1, yet maintaining graphic quality
  • Particles fly beyond the screen
  • You can make Windy jump to nowhere using Z+X

Older versions:

[ Continue Reading.. ]

26
14 comments


I've kinds thought about this, but there aren't any true rules established, but instead just common sense.

I feel that should probably change.

So, I've got a short list of rules that I'd like you guys to read.

  1. No derogatory terms/imagery (racist terms, KKK stuff, et cetera).
  2. Cursing is allowed, but only in moderation. (Don't go on a raging session, folks.)
  3. No Spamming, trolling or excessive caps. (Trolling on the lines of asking questions like "Does a penguin fart?")
  4. Respect your fellow members and moderation team (whenever that happens).
  5. Post things in the correct category. By that, I mean:
    Discussion is for general chatting, discoveries, and questions.
    Editor is for the Editor, and the Editor only.
    WIP holds incomplete carts and what-not.
    Cartridges are where cartridges in a complete/presentable form are shown.
    Collaboration holds topics for community/team projects.
    Support is for problems with the PICO-8 Editor/Player itself.

[ Continue Reading.. ]

0 comments


New games:

Cart #14478 | 2015-09-22 | Code ▽ | Embed ▽ | No License
19


Cart #14477 | 2015-09-21 | Code ▽ | Embed ▽ | No License
19

Games:

Cart #14411 | 2015-09-20 | Code ▽ | Embed ▽ | No License
19


Cart #14384 | 2015-09-20 | Code ▽ | Embed ▽ | No License
19

[ Continue Reading.. ]

19
15 comments




Top    Load More Posts ->