Log In  

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

Cart #dubamoniha-0 | 2021-03-02 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

1
0 comments


So, I'm expanding my previously released map generator. I've added stuff like biomes, biome generation types, so on so on.
The thing is, I'm making this generator because I want to start an RP community with stuff like being able to claim territory.
My problem: The map is too small. 128x128 is not a high enough resolution for this map. I've modified for the map generator to work on 256x256 pixels, but that would mean I would have to take four screenshots and manually stitch them together, which is a very frustrating process.
So, my question is, is it possible to take a 256x256px screenshot?
Cheers.
EDIT: I think it's worth noting that for automatically taking screenshots in my code is done with

extcmd('screen')

which could be a slight problem.

11 comments


Whenever I try to run pico-8 on my pc, it takes forever to open, then stops responding. All I've done is change my cartridge folder.

1
5 comments


Cart #letsnottalkaboutit-0 | 2021-03-01 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
9

While playing around with PICO-8's new sound capabilities, the reverb instantly made me think of the reverb effect in Super Mario All-Stars. An hour or two later and you have this, enjoy!

With credit, feel free to use in any cart.

9
7 comments


Cart #voodocb-0 | 2021-03-01 | Code ▽ | Embed ▽ | No License
14


Trapped in Ms smith's home, you, Mr. Voo, have to escape the trap filled house with as less life as possible

This game was made for the Wowie Jam 3 with the help of many friends!

Stuff:

Credits/Special thanks:
-Most of the game and artwork by myself, Coffeebat
-Amazing ingame music by Blameitontherobot
-Poggers logo by Sinclair

14
4 comments


Cart #squirrel-0 | 2021-03-01 | Code ▽ | Embed ▽ | No License
1


Get nut for your grandsquirrel!

1
2 comments


Cart #water-1 | 2021-02-28 | Code ▽ | Embed ▽ | No License
2

2
5 comments


Cart #kotemuputu-0 | 2021-02-28 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

1
0 comments


Cart #fuhadebuto-0 | 2021-02-28 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

Spooky ghost walking around, arrow keys only, doesn't do anything else sorry

0 comments


Cart #teworezudo-0 | 2021-02-28 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

wooooooooooooooooooooooooooooooooooooooooooo

0 comments


ok, so I'm stumped. I have a table that works fine when I make it in the command line, but is missing a value when I reference it from cart. There are no errors on load of the cart data.

Here is the table:

bomber={
 spr={33,34,35},
 val=1000,
 aspd=10,
 gun=missile,  -- table
 mov=_circles, -- function
 ebhv=function(self)
  local e=self
  if (e.elite>elitecut) then
   e.val=e.val*4
  end
 end
}

I am using the following command to check the table when loaded:

for k,v in pairs(bomber) do print(k.." "..type(v)) end

Which returns:

aspd number
ebhv function
spr table
val number
mov function

Whereas pasting the table into command line and running that again returns:

aspd number
ebhv function
spr table
gun table
val number
mov function

Finally I made a dummy cart that seems to work as expected.

function check(tbl)
 for k,v in pairs(tbl) do
  print(k.." "..type(v))
 end
end

function pew()
 return null
end

function _circles()
 return null
end

missile={}
missile.n="homing"
missile.f=pew

bomber={
 spr={33,34,35},
 val=1000,
 aspd=10,
 gun=missile, -- table
 mov=_circles, -- function
 ebhv=function(self)
  local e=self
  if (e.elite>elitecut) then
   e.val=e.val*4
  end
 end
}

[ Continue Reading.. ]

1 comment


Cart #ancientruinsalaka-1 | 2021-02-28 | Code ▽ | Embed ▽ | No License
7

My entry for the 11th Alakajam - "Ancient Ruins".

Press X to jump,
Press O to... you'll see

7
2 comments


Cart #terrainauto-0 | 2021-02-28 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA


README!
This is a terrain/island generator, based on one of my tweetcarts:
I modified it to automatically do the following things:

  • First, run the program as normal.
  • When there are no black/empty pixels, start a timer.
  • Once the timer reaches a certain treshold, do the following:

  • Automatically make screenshot
  • Enable pause menu(you'll see why)
  • Reset cart

The reason it pauses after the screenshot is so that when you leave it unattended it will not just make ten thousand different islands without you knowing. Enjoy!

0 comments


For characters in the Japanese kana range, it seems we must type ctrl + alpha
to get a kana to input. However, ctrl is also used to activate some Pico-8 things like "save" and such.

With poke(0x5f30,1)
we can suppress "ENTER" from bringing up the Pico-8 menu in-game.
Is there a poke I'm failing to see that will suppress Pico-8 from having its "save" function activated every time the user enters ctrl + s to type キ (for example)?

(on another note, backtik-surrounded text to format "code snippet within a line" doesn't seem to work right?)

1
5 comments


Cart #the_lost_night-6 | 2023-01-03 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
306

Controls

WASD/Arrows to move
X Interact/Shoot
Z  Move faster (unlockable)

How to play

You wake up in the middle of a spooky town trying to find your way back home. Help the citizens of this weird town and they will open paths for you.

BUT BEWARE!

The streets are swarming with spirits and if you let them, they will take you away. Shoot them down with your mysterious powers and win candy in return.

Spend your candy on vending machines across the town, and grow in power. Make sure to find them all as the night progresses, the spirits become spookier.

We appreciate your feedback.
-Thanks for playing

Links

Source Code

[ Continue Reading.. ]

306
29 comments


Cart #hmmmm-0 | 2021-02-27 | Code ▽ | Embed ▽ | No License

i'm trying to make a function where the camera will jump forward by an amount when the player character reaches the end of a 'room' (the end of the current screen) but am struggling to find a way to make it work, anyone know what i should do?

p.s. code currently shows what i'd like it to be, currently can't make it do more than two rooms

2 comments


Cart #disposablewowee-0 | 2021-02-27 | Code ▽ | Embed ▽ | No License
1

I participated in the third Wowee Game Jam. The above is my submission!

Can't believe this is my third jam this year...

1
0 comments


Cart #astroid_avoidance-3 | 2018-12-02 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

0 comments


  1. Run the cart at this link: https://www.lexaloffle.com/bbs/?tid=41062
  2. Pick up the hen with the web
  3. Slam into the right side of the screen repeatedly

observe that part of the lines which make up the web are visible on the left (opposite) side of the screen

This happens in v0.2.2 of the BBS player, the native version, and the HTML export from the native version. It does not happen in the previous version.

2 comments


Cart #rocket_blast-0 | 2021-02-26 | Code ▽ | Embed ▽ | No License
15

A game about a tiny rocket speeding through space for energy

Controls

Keyboard

Steer: Left / Right arrow keys
Gas: Z
Brake: X

Controller

Steer: D-pad / Joystick
Gas: A / Y
Brake: B / X

Credits

Sebastian Lind Twitter

Good luck and have fun!

15
6 comments




Top    Load More Posts ->