Log In  
Follow
notcl4y
:: Unfold ::

Cart #topfivejumpscares-0 | 2023-04-01 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

Thanks to squewe for inspiration

P#127956 2023-04-01 09:11

:: Unfold ::

Cart #stringtospritereader-0 | 2023-03-11 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

I saw some cartridges had large images that would take the whole space of the spritesheet. To prevent that, they use strings to store data.

The bugs:

  • For some reason, the image contains black pixels at the left

Colours:

  • Q: 0
  • W: 1
  • E: 2
  • R: 3
  • T: 4
  • Y: 5
  • U: 6
  • I: 7
  • O: 8
  • P: 9
  • A: 10
  • S: 11
  • D: 12
  • F: 13
  • G: 14
  • H: 15

Special characters:

  • J: New line
  • K: Space

An example of a string that generates the PICO-8 colour palette

kkkkwwwweeeerrrrj
kkkkwwwweeeerrrrj
kkkkwwwweeeerrrrj
kkkkwwwweeeerrrrj
ttttyyyyuuuuiiiij
ttttyyyyuuuuiiiij
ttttyyyyuuuuiiiij
ttttyyyyuuuuiiiij
ooooppppaaaassssj
ooooppppaaaassssj
ooooppppaaaassssj
ooooppppaaaassssj
ddddffffgggghhhhj
ddddffffgggghhhhj
ddddffffgggghhhhj
ddddffffgggghhhh
P#126955 2023-03-11 08:34

:: Unfold ::

Cart #sprprint-0 | 2023-03-08 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

I got an idea to make this from this post: https://www.lexaloffle.com/bbs/?tid=51903 (I probably didn't understand what did they mean though)

This library is still in development.

Something to be fixed

  • Define the sprite position via the amount of letters with their widths
  • Define the index by its number regardless of its length (like instead of #001 you type #1)
  • Backslash support ("Hi! #001" -> "Hi! â•”", "Hi! \#001" -> "Hi! #001")
P#126779 2023-03-08 11:00 ( Edited 2023-03-08 16:08)

:: Unfold ::

Cart #tanahijeyo-0 | 2023-03-03 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

This project contains a system that stores multiple objects of the same or the different type.
And yes, I use this system.

P.S. You need the open this project via PICO-8 or PICO-8 Education Edition to look at the code.

P#126548 2023-03-03 13:41

:: Unfold ::

Earlier I noticed that the "New cartridges" tab adds the updates of the cartridges too.
But when I updated PICO-EXPLORER to 4.0, I haven't found it in that tab.

P.S. Changed the category of this post to "PICO-8: Chat" because almost nobody checks the general posts

P#126535 2023-03-03 04:31 ( Edited 2023-03-03 04:37)

:: Unfold ::

In this game the world generates, there are no controls, but it is customizable through the editor, like add your own tiles or change the world structure.

The 25th of January 2023

v1.1

  • Added tiles
    • Bricks
    • Wood
    • Leaves

Cart #world_gen-1 | 2023-01-25 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

The 28th of December 2022

v1.0

  • Initial release

Cart #world_gen-0 | 2022-12-28 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

P#123182 2022-12-28 14:07 ( Edited 2023-01-26 04:55)

:: Unfold ::

Cart #codemorse-0 | 2022-12-17 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

P#122615 2022-12-17 19:54

:: Unfold ::

Look at the sky with stars and the moon! There are also different moons, changing the lighting and the position of the moon and a creepy music (I wanted to make a beautiful music), but they can be set only in the code.


When I tried to make this post with the cartridge for some reason the title turned into "StarShot 350" (If I recall correctly) and I couldn't change the title, tags and the description (I couldn't change the tags and the description too). :P

Cart #stars-2 | 2022-11-03 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

P#120036 2022-11-03 10:01 ( Edited 2022-11-03 10:43)

:: Unfold ::

How to delete an element in table instead of using

x = {10,40,70}
x[2] = nil

Because it will make an element empty

x = {10,nil,70}

Expected result is

x = {10,70}
P#120032 2022-11-03 09:05

:: Unfold ::

Just a demo of grapple hook that badly works on spaghetti code.

Arrows - Move
Up arrow - Jump
Right Mouse - Activate grapple hook
Left Mouse - Go to the grapple hook

Cart #grapple_hook_demo-0 | 2022-11-01 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

P#119931 2022-11-01 08:05

:: Unfold ::

PICO-EXPLORER is like the file explorer but it uses its own file system

Something to be added

  • Opening, adding, removing and editing files and folders

v0.4

  • Now the file order automatically changes when a file is deleted
  • Changed the information bar's colour from dark blue to black

Cart #pico_explorer-3 | 2023-03-02 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

v0.3

  • Fixed bug that called an error when you try to select the next file after the last one
  • Added the ability to open .txt files
  • Added the ability to close opened window (in pause menu)
  • Added the ability to remove files (in pause menu)
  • Added the "removing" sound

Cart #pico_explorer-2 | 2022-10-30 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

v0.2

  • Added the ability to make new folders, but without naming them
  • Added error
  • Added error sound
  • Added property bar

Cart #pico_explorer-1 | 2022-10-29 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

v0.1

  • Initial release

Cart #pico_explorer-0 | 2022-10-28 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

P#119771 2022-10-28 14:55 ( Edited 2023-03-02 13:20)

:: Unfold ::

Extended Jelpi is a remake of Jelpi Demo with more features.
I wanted to make a Jelpi Demo remake with alternative palette and extended second level. And why not make and extended version of this game?
In the remake you can change palette, multiplayer in the pause menu. Also there are icons in the pause menu and top bar now!

Cart #extended_jelpi-1 | 2022-10-22 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6

v1.1

  • Added ending screen in level 4

Cart #extended_jelpi-0 | 2022-10-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6

v1.0

  • Initial release (extended)
P#119147 2022-10-15 12:53 ( Edited 2022-10-22 07:25)

:: Unfold ::

Cart #inserting_disk-2 | 2022-10-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

v1.2

  • Added sound when the disk is inserted
  • Added monitor (you can remove it in pause menu)

Cart #inserting_disk-1 | 2022-10-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

v1.1

  • Fixed sound when inserting a disk

Cart #inserting_disk-0 | 2022-10-14 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

v1.0

  • Initial release
P#119111 2022-10-14 17:51 ( Edited 2022-10-16 11:18)

:: Unfold ::

Cart #pico8crash_screen-0 | 2022-10-07 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

Just a PICO-8 crash screen with random errors.
It is recommended to use PICO-8 itself or PICO-8 Education Edition.

P#118713 2022-10-07 07:29 ( Edited 2022-10-13 04:17)

:: Unfold ::

Cart #lighting-0 | 2022-10-07 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

Just a ball with different sprites that makes the feeling the light is emitting it.
P.S. there are other ball sprites too, but you have to load the cartridge in the PICO-8 itself or PICO-8 Education Edition

P#118712 2022-10-07 07:25 ( Edited 2022-10-23 04:48)

Follow Lexaloffle:          
Generated 2023-10-03 06:05:52 | 0.083s | Q:73