Log In  

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

Cart #15759 | 2015-10-23 | Embed ▽ | License: CC4-BY-NC-SA
1

Best game yet :)

1
0 comments


Cart #15727 | 2015-10-22 | Embed ▽ | License: CC4-BY-NC-SA
1


It's really fun... :)

1
0 comments


Cart #15725 | 2015-10-22 | Embed ▽ | License: CC4-BY-NC-SA
1

Hey guys on this level you will save your kingdom from evil dangers...

1
0 comments


Cart #15723 | 2015-10-22 | Embed ▽ | License: CC4-BY-NC-SA
1

Beware the Hellephant

1
0 comments


Cart #15721 | 2015-10-22 | Embed ▽ | License: CC4-BY-NC-SA
1


This game is the best :)

1
0 comments


Cart #16020 | 2015-10-30 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
20

It was a pleasant Sunday morning drive in the mountains until a volcanic eruption happened to ruin everything.
Race home along the winding roads, swerving to avoid the slow and the doomed, just seconds ahead of a molten stream of lava.
Maybe if you can drive through the night and into the next day, you will be safe.

Keep the hammer down to avoid a fiery death, but don't skid out on curves or crash into the other motorists.

Up: Drive
Down: Break

v 1.0
This cartridge is feature complete, though it could use some better sound and, of course, some music.

-Electric Gryphon

20
7 comments


Cart #15695 | 2015-10-21 | Embed ▽ | No License


Hi, it's fun, trust me :)

0 comments


Cart #15693 | 2015-10-21 | Embed ▽ | No License

Play my level have fun :)

0 comments


Cart #15690 | 2015-10-21 | Embed ▽ | No License

This level I made for my Dad Chirag, Yeay!!!

0 comments


Cart #15688 | 2015-10-21 | Embed ▽ | No License


This is a surprise for my Dad!!!

0 comments


Cart #15686 | 2015-10-21 | Embed ▽ | No License

This is my first level :)

1 comment


hey is it just me or is sgn(0) returning 1 where it should return 0?
i get this with both literal 0 and 0 through arithmetic

2
11 comments


Hi!
I was making tables recklessly and then i think i hit the ram limit. The thing is that it happen when i run the game, and in the first frame, not even where the tables are defined, and it hangs pico8 entirely almost every time.
So, i have one table less and it works, but if i put that last table item without removing another, that happen when i run the game.

I have a menu that doesn't define this vars, and then i hit a button it enters the gameplay when it defines them. It's my undestanding that this would have to happen when i reached the gameplay and the vars are defined, but pico8 hangs when i hit run.

I verified that is not a bug of the game and i'm almost sure that it is the ram limit, but is weird that it happen before the game reaches the segment when it defines this variables.

I'm not asking for more ram XD but i'm pretty sure that something is broken with the exception handling in case of runtime memory, and i don't entirely undestand why it overflows before reach the execution of the code that fills the content of these tables.

Thanks!

6 comments


Cart #15666 | 2015-10-21 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
10

Having a blast writing tunes in Pico-8. I have a few more carts I'd like to share, but I don't want to overwhelm the forum with music-only carts. I'll wait a few weeks, or wait for a music only section.

Thanks for listening!

@gruber_music

10
5 comments


Cart #15652 | 2015-10-20 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
10

So this isn't a game, but it is interactive.

Controls: right / left.

Explore, there are a number of things going on. In the interests of not wasting everyone's time, I'll mention that by the time you see the full moon you'll have seen everything interesting, depending on what you consider interesting.


As for techniques involved, the source is a bit of a nightmare. I wrote the code mostly by piling on and re-using odd things here and there. It seemed right for this kind of thing where quirks are part of product. So: if you have questions about the techniques involved and doen't want to read through the code I'll be happy to explain it.

P. S. I would like to acknowledge Parlor's [i]The Stroll

[ Continue Reading.. ]

10
9 comments


Cart #15644 | 2015-10-20 | Embed ▽ | No License

This is my first level. It was a lot of fun when making this game.

I wish to make more games in the future.

0 comments


Cart #15642 | 2015-10-20 | Embed ▽ | No License


This is my first level
I'll be working on it more.

0 comments


I don't think anything ought to change, but I thought this was interesting. Pico-8 allows this:

x = 1
if (x == 1) do
  print('a')
end
if (x == 2) do
  print('b')
end

Notice that this is not "if-then-end" but "if-do-end". This appears to be supported accidentally due to the "if (...) ..." shortcut, described in the manual as:

IF THEN END statements on a single line can be expressed without the THEN & END

  IF (NOT B) I=1 J=2

  -- is equivalent to: IF (NOT B) THEN I=1 J=2 END
  -- note that the condition must be surrounded by brackets.

The intent is for "if (cond) exp..." to parse expressions to the end of the line. However, if the last expression is a do-end block, the block is allowed to span multiple lines. Of course, this requires that the condition be in parentheses.

I found 7 carts posted to the BBS that use "if-do-end" across multiple lines. Pico-8 does what's intended, so it's hard to call it a mistake.

Unrelated: "if (cond) block else block" is undocumented but supported. "if (cond) block elseif (code) block else block" is not supported. The else's block is optional (though pointless to omit): "if (cond) block else" I found 13 carts using the else form of short-if.

1
7 comments


This crashes:

function t()
  return
end

print(t())

I'm not sure how Lua describes this in language terms. The spec doesn't have much to say about returning no values; it's not a nil or table. (An empty list?) Lua 5.3.1 just prints an empty value.

This is Pico-8 0.1.3.

3 comments


Cart #15604 | 2015-10-19 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
32

A little arcade game.

32
9 comments




Top    Load More Posts ->