Log In  

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

Cart #52760 | 2018-05-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

Z: Dash
X: Shoot
Arrow keys : Fly Around

Out in the fringes of ice-cold space,
an Ace pilot is flying HOT.

You tackle any obstacle with Style,
(and brag about it in an extravagant fashion to your friends)

Can you reach the top of the list, and stay there?
Post your scores!

Made for a physical arcade cabinet, to inspire others to start making games.
Specificly designed to incite high-score battles and bragging rights among the local community.

Dries Vienne (Coding @ Aesthetics) --> twitter
Steven Simoens (Design) --> twitter
Check out some more fun stuff from our jam collective

[ Continue Reading.. ]

7
5 comments



1 comment


Cart #52749 | 2018-05-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA


Am in the process of creating some sample carts for posts and so I put together Rabid Gremlin's cart from his videos while documenting what does what. Will continue to comment it for future use in class.

Rabid Gremlin's Tutorial is pretty great. I just wanted to provide a bit more documentation for the code and then provide a final build. Need to comment more.

0 comments


Cart #52741 | 2018-05-14 | Embed ▽ | License: CC4-BY-NC-SA
2

I came across this really cute cart by: SuperPuffeXIV

The grand diamond theft 100
I made some modifications to prevent level from breaking.
locked patrolling enemies on "Y" , made some custom doors and change a window from a breakable prop to a pickup so it breaks faster. Oh and added some FXs to a diamond :)

Have fun :)

2
0 comments


I discovered tonight that the modulo (%) operator is treating the nadir value, 0x8000, as if it is positive, whereas other math ops treat it as negative:

> ?0x7ffe/10
3276.6
> ?0x7fff/10
3276.7
> ?0x8000/10
-3276.8            <-- as expected, -32768/10 == -3276.8
> ?0x8001/10
-3276.7
> ?0x8002/10
-3276.6

> ?0x7ffe%10
6
> ?0x7fff%10
7
> ?0x8000%10
8                  <-- unexpected, -32768%10 should be 2
> ?0x8001%10
3
> ?0x8002%10
4

I'm guessing this is an edge-case side effect of whatever you do to make modulo not flip directions at 0 (which I'm very glad you do).

0 comments


Cart #52728 | 2018-05-14 | Code ▽ | Embed ▽ | No License

3 comments


Cart #52726 | 2018-05-14 | Code ▽ | Embed ▽ | No License

0 comments


I'm back after a (very extended) hiatus! Episode 4 is ready for you here: https://anchor.fm/picochat/episodes/4-feature-complete-e1fg1d/

I've switched to anchor as my podcasting platform, and the new episode should be going live on Google Music and iTunes within 24 hours. If you'd like to listen to back episodes, they're all available at https://anchor.fm/picochat/

Thanks for your patience! If you'd like to participate in a future episode either as a guest or with your own segment, e-mail me at [email protected]. Thanks!

2
1 comment


Cart #52720 | 2018-05-14 | Code ▽ | Embed ▽ | No License

0 comments


Cart #52720 | 2018-05-14 | Code ▽ | Embed ▽ | No License

0 comments


Cart #52720 | 2018-05-14 | Code ▽ | Embed ▽ | No License

0 comments


Edit: I wasn't thinking straight, nothing to see here.

Seems like on Windows 10 0.1.11g the capital Z glyph doesn't seem to be working. I just got a new laptop, switch from Apple back to a Windows PC so there is a possibility there's a keyboard mapping issue?

Up: ⬆️
Down:⬇️
Left:⬅️
Right:➡️
Z:▥
X:❎

Am I missing something? I tried searching the forums and didn't see anything.
When testing the glyph, it did not function as the input to btn(▥) but btn(4) still worked fine.

5 comments


Cart #52699 | 2018-05-14 | Code ▽ | Embed ▽ | No License

0 comments


A lovely puzzler where you must fix your broken heart, putting it back together over and over. Alternate control of the two halves in an attempt to become reunited forever!

Cart #52695 | 2018-05-13 | Code ▽ | Embed ▽ | No License
13

13
3 comments


Cart #52687 | 2018-05-13 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

I wanted to share my first Pico-8 game with everyone. It's not much, but I'm using as a prototype for an iOS game I'd like to build next.

Gameplay: Try to eat as many worms as you can while avoiding the fishing bobbers!

0 comments


Cart #52684 | 2018-05-13 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

Ghost Punch: an endless ghost punching arcade!

First "full" game I've made! Just discovered PICO-8 today in about 10 hours while deciding to join the GDL May 2018 jam (https://itch.io/jam/gdl-may-jam). I grew up playing a lot of River City Ransom esque beat-em-ups, but since this was my first project i wasn't confident to make a traditional side-scrolling beat-em-up game quite yet. I was also inspired by how "good" it feels to charge and release Doomfist's punch in Overwatch, so I lifted that mechanic over here.

It was super fun to make everything from scratch, from art to music (music is soo hard, even though I can hum something it's so hard to transcribe to the Pico music system for me).

I lifted some code for the screen fading from Gist @smallfx (https://gist.github.com/smallfx/c46645b7279e7d64ec37), and other various snippets like camera shaking from the BBS here. Thanks everyone for sharing your work :)

5
4 comments


Cart #52680 | 2018-05-13 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
12

Hello guys, I'm working on a short article for fanzine #5, and I'm going to talk about game feel. So I wrote this tiny library that is super helpful and allows you to simply tween any value in your objects with some cool math functions. Here is a small example:

function _init()
-- the object that has your value
p={
 x=32,y=32
}

-- the tween function, takes args:
-- p - your object
-- table - table with the target values you want
-- 1 (optional) - time (in seconds) in what your value should end with your target value, default is 1
-- "quad_in_out" - easing function, you can look up all defined functions in the tab 1, I've implemented a few examples from https://easings.net/
local v=tween(p,{x=96,y=96},1,"quad_in_out")

-- you can also define a function that will run at the end of tweening
v.onend=function()
 stop()
end

-- and you can even set the delay before tweening you object!
v.delay=0.2
end

function _update60()
-- just update the library, if you use _update, update value to 1/30
tween_update(1/60)
end

function _draw()
cls()
-- draw our circle!
circfill(p.x,p.y,4,8)
end

[ Continue Reading.. ]

12
7 comments


Cart #52675 | 2018-05-13 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA


A game I made for the Dream Hack Austin game jam. http://jams.gamejolt.io/dreamhackaustinjam/games

Hopefully I get to be a finalist :)

0 comments


Cart #52664 | 2018-05-13 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

Features:
Randomized minefield (16x15, 40 mines [customizable by editing the code])

Open with Z, flag with X
Restart the game by clicking on the smiley/frown-y face
Status bar: red=#flagged, green=#opened, blue=time

1
4 comments


Cart #52660 | 2018-05-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

Made for the One Hour Game Jam! Used my song from the last game jam in it!

1
0 comments




Top    Load More Posts ->