Log In  

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

Cart #42681 | 2017-07-21 | Embed ▽ | License: CC4-BY-NC-SA

In this unnoficial simpsons movie game you can run over hoards in a car and exit with v when you are just Homer you can kill them with pigs you spawn with x.

0 comments


I copied the dev kit mouse into my code, how to I get the variables that the mouse outputs?

function _init()
	poke(0x5f2d, 1)
end

function _draw()
	cls()
	spr(16,stat(32)-1,stat(33)-1)
	print(stat(34))
end
1 comment


Cart #46281 | 2017-11-14 | Code ▽ | Embed ▽ | No License
124


You've been flushed away in The (Endless) Sewers of d'Oh!
Now try to escape, pathetic paddling!
Hint: You can't! This is an infinite breakanoid! Muahahahaha!

Have fun!

v1.2.1: more sensible use of dset/dget (stalls on Pi+microSD, see here)
v1.2.0: warrior mode, better background, ugly label.

...

Sewers of d'Oh is a prequel to The (Bottomless) Pits of d'Oh! (available on itch.io and [u]gamejolt

[ Continue Reading.. ]

124
15 comments


Cart #42649 | 2017-07-20 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

Contrôles :

flèches = déplacement entre les menus
z = valider
c = annuler
entrer = menu pause

Occupez-vous de votre tamagotchi !!
Si vous téléchargez la cartouche pour pico8 PC ou pico8 Pocket CHIP vous pourrez bénéficier du système de sauvegarde.
If you download this cart for Pico8 on PC or Pocket CHIP, there is a save system.

5
4 comments


Hi all!

I have almost tears in my eyes thinking that I've almost completed a very basic and lame implementation of Pong.

I'd need to draw a very simple intro screen (with game name and settings).

I would like to make a big image (128x128) that will cover the whole screen.

What is the suggested method for this?

Thanks :)

4 comments


Cart #42640 | 2017-07-20 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4


Not a overly flashy game. but a personal challenge I set my self to better understand how to code.

I wanted to make a very basic calculator to better understand how to input and compare variables and output an answer. the two variables will increase in randomness based on your correct answer score. The operation are limited to addition subtraction and multiplication, No division as that would require a decimal place or to check the answer is a whole number which i have yet to finger-out.

--controls:--
use arrow key to navigate key pad.
press Z to input your answer
press X to submit your answer (or select the return button on key pad)
selecting the C button on key pad will clear your current answer.

--please help--
If anyone know how to check for a whole number please put in comments below

having a issue with numbers over 9999? seems to generate is know random number if i try to input a number over this. Is this a limitation with the programming language or my programming skills?

4
3 comments


Hi!

I'm just starting out with pico8. can I somehow split my code into several files? So that I can easily re-use certain functions, or libraries like https://github.com/clowerweb/Lib-Pico8/

How would I import them (putting them into lib/file.lua then import "lib/file.lua" does not seem to work – it doesn't expose the defined functions.

3 comments


Hi,

I think this is a bug:

  • create a simple cart:
function _draw()
	cls()
	spr(001,0,0)
end
  • save it
  • draw a painted sprite at position 001
  • export the sprite sheet (do not save the cart!)
  • load the cart
  • run the cart, nothing is visible
  • import the sprite sheet
  • run the cart, nothing is visible!!! my expectation was that the sprite would be visible
  • escape and switch to the sprite editor: no painted sprite at 001
  • reboot

  • load the cart
  • import the sprite sheet
  • switch to the sprite editor: painted sprite at 001
  • run the car: visible sprite.

So it seems that switching to the sprite editor after importing a png does something that is not performed only by importing the png.

0 comments


Cart #42629 | 2017-07-19 | Code ▽ | Embed ▽ | No License
4

-- Use the arrow keys to move up and down, press x for a boost in either direction. Game objective is to color the ground light green as you pilot the sun through the sky, with the color changing based on how close the sun is to the ground. Loosely based off of the myth of Apollo/Helios dragging the sun across the sky.

-- Hope y'all have fun and enjoy the challenge!

4
0 comments


Hey.. Can someone please explain what's going on here for me?

Here's a test cart that prints the content of table 'x' (a table with the first 16 offsets set to 1 by default) and the value of '#x'..

LEFT/RIGHT changes the offset of table 'x'
X sets the offset to 1 / Z (O) sets the offset to nil

Cart #42605 | 2017-07-18 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

If I set certain values to nil in a table, then len will start returning 0 even though there are still items inside the table. This seems to happen when a 'certain' number of items, including the item in offset=1 are set to nil, and then offset 0 or offset -1 are set to nil:

This doesn't seem entirely consistent.. Here, if I start at offset 7 instead of offset 13, then len still returns the highest index with non-nil data. Even if I'm setting offset 0 or offset -1 to nil:

[ Continue Reading.. ]

2
5 comments




Hi, this is a very very basic cart I made to experiment with music bars.
the "music" is crap because I didn't have much time to write some decent.
I need this for a bigger project (some kinda demo!!) that I'm currently working on,
I figured out it would be useful to someone.
At first I didn't find out much info about the memory storage of SFX and music,
but just after I figured out on my own how the bytes stored the info about notes and stuff,
I found this guide, which would have been quite useful if I just... well, if I had found it before.
https://gist.github.com/paniq/7814560e2b560b76911b

Nevermind,
hope you enjoy this!

0 comments



This is a beta
version 1.2

Version Yellow Camel

Changes

  1. 3D version
  2. Better startup screen

ToDo

  1. Fix paddle bugs
  2. Add music
  3. make startup screen fancier [Done]
  4. Fix "off screen bug"

(c) 2017

2
0 comments



This is a work-in-progress on its way toward being an Arkanoid-type game where your paddle is confined to a circle. But at this stage of development, the game had an oddly meditative and simple feel, so I decided to share.

3
1 comment


I would expect "in" to be pink and "all" to be green possibly in the below code, but they are both gray in Pico-8's code editor.

my_table={1,2,3}

for x in all(my_table) do
 print(x)
end
1
3 comments


Cart #42562 | 2017-07-17 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
9

A Downwell inspired shooter where the twist is you shoot sparingly and use your mirror shield to reflect bullets!
Made for the Game Maker's Toolkit Jam
<Can you find my devcheat?>

9
3 comments


Cart #42634 | 2017-07-20 | Code ▽ | Embed ▽ | No License
9

A bad demake of the mobile game of the same name (iOS and Android)

Try not to miss the platforms, they get faster and smaller the longer you survive! Hit the center of platforms to keep the platforms big!

Probably done with this, leaving it in WIP because it's not really "finished"
CC4 is too restrictive so here's the license for my cart - it's just public domain in case anyone wants to use anything from it (I'd recommend against even reading my code, though!)

9
7 comments


Some errors seem to be printing scientific notation for certain things. I've only seen this happen on the raspberry pi build. I believe I've seen similar errors printed out for line numbers in the past.

1
0 comments


Cart #42556 | 2017-07-17 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
9

Arcade wizard game made in 48 hours for GMTK Jam.

Press Z to jump, X to shoot magic missile. Down+Z to drop through platforms.

Smash all the gems with your magic to advance to the next level. When you shoot the missile, you're left vulnerable, so be careful! See how far you can get and set the high score.

9
3 comments


Cart #42553 | 2017-07-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

Just messing around with bitmasking. The code is quite messy and could easily use some optimisation, but at least it's working for now.

1
1 comment


Cart #42547 | 2017-07-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
8

Steer a rocket around the earth. If the asteroids are annoying: Fly faster!

Control your ship with left and right. Press X To Launch!

8
2 comments




Top    Load More Posts ->