Log In  

BBS > Community Superblog
All Users | Following | GIFs | Off-site

Cart #hearthstone-1 | 2024-09-23 | Code ▽ | Embed ▽ | No License


I am working on a demake of HearthStone. It is still missing a lot of features but I plan on implementing them in the future. Tell me your opinion and more features that you would like to see included.

The current work plan:

  • Complete artwork
  • Re-draw field and add player's hero as target
  • Implement card effects such as taunt, poison,...
  • Implement enemy's AI
1 comment


ant
by Nedim
Cart #ant-2 | 2024-09-30 | Embed ▽ | License: CC4-BY-NC-SA
2

Ant algorithm

UPDATE: You can now hold down [Left mouse button] to spawn ants at the cursor location

Rules:
-if pixel is black: move forward, then turn right
-if pixel is white: move forward, then turn left
-always swap color of current pixel

2
0 comments


Cart #ball_game-0 | 2024-09-23 | Code ▽ | Embed ▽ | No License
2

In the heavens, Asi and The Ball battle for dominance. The Ball cannot be beaten, but Asi's will is indominable.

[MOUSE]- AIM

[LEFT CLICK]- SHOOT

2
2 comments


Cart #ftl_scsv-1 | 2024-09-26 | Embed ▽ | License: CC4-BY-NC-SA
3

Here's another screensaver I made. You can watch pretty galaxies fly by. Hopefully I can make it work much better once batch operations become a thing.

3
0 comments


by Maca
Cart #mars8-0 | 2024-09-23 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

A #pico-8 homage to the groundbreaking 1993 PC Intro "Mars" by Tim Clarke, in 972 bytes of compressed lua code. Produced for the 2024 #pico1k jam.

Use the left and arrow keys to move sideways along the landscape, and up and down keys to move forward and backwards, respectively.

5
6 comments


Cart #exterra-1 | 2024-09-23 | Code ▽ | Embed ▽ | No License
66

"Haru, the Mothership Callisto deployed a protective barrier over the moon - if we don't remove it in time, Operation Surge will fail. You need to infiltrate the mothership and destroy the core from within."
"Where's my ship"

Inspired by titles like Crimson Clover and Cho Ren Sha, this caravan-styled shmup has two fast and punchy stages that emphasize close quarters and highscoring. Each stage challenges the player in different ways, both designed to be quick and "in your face", with short runtimes and a demanding, run-ending final boss.

[ Continue Reading.. ]

66
12 comments


Cart #grimmrobe_deckandlabyrinth_a1-5 | 2024-10-19 | Code ▽ | Embed ▽ | No License
18

The Deck and the Labyrinth

Alpha v1 (c)2024 grimmrobe

The Deck and the Labyrinth is a roguelite deckbuilder(lite) maze crawler where you, a mysterious hero with a magical deck of cards, traverse 28 floors of a randomly generated maze to battle monsters, collect cards, and eventually defeat the evil creature that brought the maze into existence.

Controls

Exploration

Up,down - Take a step forward or backward
Left,right - Turn 90 degrees left or right
z/c/(O) - View map, open chest, interact, close window
x/v/(X) - View deck, close window

Battle

Left,right - Change selected card
Down - Hold to see what the selected card does

[ Continue Reading.. ]

18
25 comments


a small demo

Cart #iliazeus_drops-0 | 2024-09-23 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

4
1 comment


Fruit Machine Simulator (wip) (unfinished)

3
0 comments


Cart #pibowisage-1 | 2024-09-23 | Code ▽ | Embed ▽ | No License

0 comments


I'm brand new to coding in general and need help.
I'm trying to make it so that there is a 50/50 chance of getting a specific sprite to appear shortly after the game starts.
This is what I came up with, but it jus glitches and overlaps both sprites on top of eachother. Can someone let me know what I'm doing wrong?

if time()>8 then
end
if rnd(10)>5 then
cls()
map(0,0,0,0,16,12)
spr(017,px,py)
end
if rnd(10)<5 then
cls()
map(0,0,0,0,16,12)
spr(018,px,py)
end

5 comments


I'm currently developing a handheld Pico-8 console using a Raspberry Pi Zero 2W, with a 480x480 HDMI screen for display. The system is functioning well, except for one issue: the Pico-8 screen does not scale to the full screen size. Instead, it is confined to a smaller square in the center of the display. This problem does not occur in Raspbian, where the desktop utilizes the entire screen area correctly. I have experimented with various resolutions, but there has been no improvement. Additionally, it appears that there is no config.txt file for the Raspberry Pi version of Pico-8. Could you provide assistance with resolving this issue?

3 comments


Testing batch gfx operations for picotron 0.1.1d -- this demo can draw 64k particles at 60fps, by storing all of them in one large userdata and calling pset(all_dots), and using a single userdata operation to add dx,dy each frame.

12
2 comments


One of the simple examples in the LUA documentation for metamethods is to implement set logic on tables.
s1+s2 returns a new set that is the union of the two by defining __add, s1*s2 returns the intersection thanks to __mul, so far so good.
There is also the very useful __index and __newindex to handle reads and writes to unassigned indexes of the table, but the very important assignation metamethod at table level seem to silently not exist, as if it were of no use.

when I do
set1=set2
followed by
set2=set2+{new_elem}

I most certainly didn't mean for set1 to be changed.

There's of course plenty ow ways to force the behavior I wanted :
set1=set2+{}
would work.
We could define a set_copy function
set1=set_copy(s2)

But there seem to be no way to override the assignation behavior, like we would redefine the = operator of a class in C++ for example.

Could someone please shed some light on the subject ? What is the reason behind this omission ?

[ Continue Reading.. ]

3 comments


Remake of New Rally-X

2
0 comments


Cart #snakecolors-3 | 2024-10-02 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

2
0 comments


Cart #arcane_attack-0 | 2024-09-22 | Code ▽ | Embed ▽ | No License
21


I created a clone of Worms, the dueling battle game! The game includes three battle maps, set in different terrains. The players can select different spells that consume different amounts of mana.
AI isn't implemented for the second player yet, so when selecting:

  • '1 player', both characters will be controlled by controller 1
  • '2 players', characters are controlled by different controllers

Controls:

  • left / right - move
  • up / down - select spell
  • x - jump
  • o - fire

Version 1.0

  • no AI for 2nd player
  • missing music
21
4 comments


Cart #think_it_over-0 | 2024-09-22 | Embed ▽ | License: CC4-BY-NC-SA
2

2
1 comment


Cart #jumpandrun-0 | 2024-09-28 | Embed ▽ | No License
10

Hi everybody!

This is yet another template-have fun with it. Or don't. Kinda tired of promoting my stuff. This will be my goto template for Metroidvanias.

You can jump but you can't hide.

UPDATES:
-27.9.24 added ladders and one way platforms and made all of those and spikes sprite flag based.

10
2 comments


Cart #savethestar-1 | 2024-09-22 | Code ▽ | Embed ▽ | No License
5

the star is being attacked by a drone! destroy it to save the new galaxy!
controls -
in-game: mouse to aim and lmb to shot
X - restart game (game over / win)
keys - change parameters of next game (win)

this is an entry for pico 1k jam '24

5
0 comments




Top    Load More Posts ->