Log In  

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

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


Total sfx 63
Press a Z/X to play sfx from random seed

4
0 comments


Cart #pico_1k_jam_2024-0 | 2024-09-01 | Embed ▽ | License: CC4-BY-NC-SA
4

PICO-1K Jam 2024

The 4th annual PICO-8 1K Jam (#Pico1k) has now started! 🥳
🌐 https://itch.io/jam/pico-1k-2024

You have until the end of September to make cool things in PICO-8 (or Picotron)
...by using only 1K (1024) Compressed Bytes of code 🗜️

No using of built-in Gfx, Map or Sound data (or external files)
ALL content must be created using code submitted.

It can be a:
🕹️ Game
🎞️ Demo (Animated or Interactive)
🛠️ Tool or Utility
...whatever you can fit within 1KB, basically!

It's a relaxed, non-competitive jam, running for a whole month.

Please refer to the PICO-1K 2024 Jam page for Rules, FAQ & Resources & more info.

[ Continue Reading.. ]

2
1 comment


Cart #pico_1k_jam_2024-0 | 2024-09-01 | Embed ▽ | License: CC4-BY-NC-SA
4

PICO-1K Jam 2024

The 4th annual PICO-8 1K Jam (#Pico1k) has now started! 🥳
🌐 https://itch.io/jam/pico-1k-2024

You have until the end of September to make cool things in PICO-8 or Picotron
...by using only 1K (1024) Compressed Bytes of code 🗜️

No using of built-in Gfx, Map or Sound data (or external files)
ALL content must be created using code submitted.

It can be a:
🕹️ Game
🎞️ Demo (Animated or Interactive)
🛠️ Tool or Utility
...whatever you can fit within 1KB, basically!

It's a relaxed, non-competitive jam, running for a whole month.

Please refer to the PICO-1K 2024 Jam page for Rules, FAQ & Resources & more info.

[ Continue Reading.. ]

4
2 comments






Do you have PICO-8 or you don't have PICO-8 use a PICO-8 Education and type load #sewesazayathen press enter and then cart loaded then press ctrl+r to run cartridge

Is hardware powerful you press 🅾/❎ mobile or Z/X PC to run hardware

Thanks to @Pixeled_Peczu to werid but awesome cartridge Image label Someone called us monkeys on typewriters. Had to prompt it. by midjourney on redit using Simple Image Resizer for make PICO-8 Label using Depict by @bikibird in 32 colors mode

[ Continue Reading.. ]

2
0 comments


Orange Hill

Cart #orange_hill-0 | 2024-09-01 | Embed ▽ | No License
1

Howdy, this is my first cartridge/wallpaper.

How to use

To add this to your picotron wallpapers type this in Terminal (which assumes you've already created a /appdata/system/wallpapers folder):

load #orange_hill
save /appdata/system/wallpapers/orange_hill.p64.png
1
0 comments


Today I finished some code restruction,from scatch and noticed I forgot to "copy" the sprites and the map and no problem
export foo.png //nice
export foo.map.png //nice
and easy
import foo.png //nice

and
import foo.map.png //ups just spritesheet is full
? okay
import map foo.map.png //nope

Of Course I can just copy the code to the cart with the map I want, but is there a command I didn't found? There are parameter import foobar.png -L, that do not help me.
The Pico-8 manual has only export map...

2 comments


I discovered that the following statement was making my PICO-8 application crash with an error of [2] 76047 illegal hardware instruction /Applications/PICO-8.app/Contents/MacOS/pico8 crash-example.p8.

print("|⁴ュ◝り◝T⁷Z◜」\0ク◝あ⁶¹²ヌ◝、\0$²へヲ¹\0そ◝メ¹ˇャ9\0ヌ◝ク¹エャ■\0\0\0⁙²Nョ:\0005\0て³ᶠョ◜◝な◝ャ\0キ¹オ◝{\0]¹x⁵ュ◝◀\0ャ\0uャハ◝キ◝け²ンャ9\0\n\0し³テョ⁷\0009\0J⁶◆ッ\0\0k\0オ³9⁵³\0ッ◝し⁶u²⁸\0は◝O⁷")

This does not happen when running the line from pico-8-edu.com, or from the web export of the cartridge.

I am on version 0.2.6B of the Mac OSX PICO-8. My platform is a 2014 MacBook Pro running macOS 11.7.4.

Cart #konzdufa-0 | 2024-09-01 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

[ Continue Reading.. ]

0 comments


Cart #botthebuilder-0 | 2024-08-31 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
14

Bot the Builder

Play as a robot and build platforms to scale up a mountain. With 19 puzzles, approach every solution creatively and get to the top!

About the game

The game was originally made for the GMTK 24 game jam ("Built to Scale"). This version (v1.1) adds multiple QoL changes and improvements, to be a fun and fresh experience for anyone :)

In the cart you'll find:

  • An in-game speedrun clock (if beating games fast is what you want)
  • An in-game placed blocks counter, to improve your personal score
  • An option menu to customize the game to your liking (activate or disable music, screenshake, HUD elements and change inputs)

About the licence

[ Continue Reading.. ]

14
3 comments


Hello,

I'm a beginner programmer, trying to figure out good practice. To be honest, I get a lot of joy out of refactoring code even though I know it's more important to create something of value. Seems to give my brain comfort.

I've been creating a card game and realised that one of my challenges is that I have a card object that has some game logic associated with it but I'm also mixing up a bunch of presentation information on that card. It's getting messy.

Which got me thinking about trying to separate concerns. Wondering what the community's view is on an approach like below?

The general idea here is that a card needs to know nothing about its presentation (but is linked to its presentation). It's a bidirectional link, a card_view is related to its card.

Obviously, in a game where there are not a lot of objects, this might be overkill.

function _init()
	renderer = Renderer:new()
	animator = Animator:new()
	deck = {}
	x_offset, y_offset, i = 0, 0, 0

[ [size=16][color=#ffaabb] [ Continue Reading.. ] [/color][/size] ](/bbs/?pid=153542#p)
0 comments


Cart #yuguigoudazuozhan-1 | 2024-09-02 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6


Tips: You can press X to accelate speed!

6
2 comments


Cart #keyblocks-3 | 2024-08-31 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
13

A small puzzle game I developed for the theana jam. I hope you like it!

Solved some bugs.

13
6 comments


Cart #stratagem-4 | 2024-10-18 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

Stratagem is a match-3 game: its objective is to get as many points as possible by swapping adjacent gems to clear touching groups on the grid. Spend your chances to make wrong non-matching moves wisely; once you run out, it's game over!

Changelog

v0.5.0

  • Bit-shift scores down by 16 to increase maximum score value
  • Let the player gain 1 chance per level

v0.4.1

  • Hotfix: reset player combo when leveling up

v0.4.0

  • Add animations in between game states
  • Add mouse controls
  • Add better instructions for incrementing release versions
  • Split cubic easing into its own function
  • Fix UI nitpicks
  • Move "level-up" logic elsewhere from idle game state
  • Simplify particle animations by using quadratic ease-out

v0.3.1

  • Hotfix: update label & bump version number

v0.3.0

  • Player can now move the cursor during gem-matching combos (#32)
  • Left-pad score in HUD (#26)
  • Fix #34 by separating functions into files (#35)
  • Use off-screen printing to calculate text width (#33)
  • Use spr instead of sspr for drawing gem grid (#28)
  • New animations leveling up, swapping gems, & clearing matches (#14)
  • Nerfed overpowered scoring rules (#27)

v0.2.0

  • Fix #24: rearrange state transitions to act like other Match-3s
  • Fix #20: add menu option for resetting leaderboard
  • Gem resprite by squaremango
  • Fix #18: Bring back pico-tool & update cart building scripts
  • Fix #12: add credits screen

View its source code here: https://github.com/vm70/stratagem

7
2 comments


the issue

when you open the readme on Linux, it's empty.when you open it in an external editor, it shows -[[pod]] then a load of gibberish. for whatever reason, when i try to copy paste said gibberish, it comes up with this:

--[[pod]]
lz4

I'm not sure if it's user error (I'm quite new to picotron) or something else.

2
10 comments


Tony the Tiny Chef

I took part in the GMTK Game Jam, and made this game about a tiny chef who has to cook an English breakfast

Cart #tonythetinychef-0 | 2024-08-30 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

Controls

Press X to pick up and drop food items.
Press Z to start the game

Some food may require chopping before being fried.
Don't leave food on the frying pan for too long, or it may burn.

3
2 comments


Cart #gturtle_gravity_fractal_twt-0 | 2024-08-30 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

Tweetcart- all source code is 280 characters or less.

Edit in Education edition here!

The blue lines indicate the trajectory of simulated particles as they are pulled by the planets' gravity. If a particle hits a planet (one of the colored outlines) it colors its originating pixel the color of that planet. If a particle doesn't hit a planet within a certain number of steps in the simulation, it colors the originating pixel black.

[ Continue Reading.. ]

2
0 comments


Give my new album a look! You can find it in a separate spoiler below, labeled "Gifts!"

Hey all!

We're getting closer and closer!

All that is left is:

  • Level decorating
  • Expert mode (The flesh out)
  • Whatever else I feel like adding if there's room...

As always...

Pardon our dust...

Cart #picovania-158 | 2024-12-25 | Embed ▽ | No License

Controls:

Press ⬅️ and ➡️ to move left and

right

Press ⬇️ to duck

Press ⬆️ or ⬇️ in front of a stair
railing to ascend or descend stairs
as appropriate

Press ❎ to jump

Press 🅾️ to use your whip

Hold ⬆️ and press 🅾️ to throw a
sub weapon

Instructions:

  • Whip candles to collect sub weapons,
    hearts and money bags

  • Hearts supply you with ammo for your
    sub weapon

  • Money bags award points

    • Collect a porkchop to gain 6 health, up to a maximum of 16
  • Collect the Multi stone for Multi Shot, which allows you to have more sub weapons on-screen
    at once!
    • Multi Shot can be upgraded twice, but if you collect a different sub weapon or die you will lose it

I will update this post to keep everyone up to speed when I upload a new cart. Check out the spoiler
below if you're interested!

Change Log:

(12/23/24)

Soundtrack

  • Voyager has had one note extended. Minor, but it was bugging me

Game

-Dracula and the Curse of Man have been added

  • Victory fanfare for completing the game is implemented
    • End cutscene has been added
    • Work on Expert mode has begun
  • Currently, enemies move faster, and there are more of them in places
  • Expert mode badge is applied to the hud while playing an Expert mode game
    • New wall and ceiling checking code for a better solution
  • If you are partly inside a wall, the game will try to push you out
  • If there is a ceiling tile directly above simons head he cannot jump

(12/18/24)

  • Glitchy-looking chunk transitions have been fixed
    • Stages 6, 17 and 18 have been added, and have been filled out with candles and enemies
    • New entrance for stage 16
    • Behavior tweaks to bat boss to allow him to be used as a mook
    • Skeleton bone throwing arc has been extended a bit. No more small lobs...
    • Final area has been included, but only has a placeholder coffin for now, no boss just yet

(12/14/24)

Soundtrack

  • Walking on the Edge has been adjusted to let the notes hold for a bit longer
  • Nothing to Lose adjusted to subdue notes

Game

  • Level 5 has been filled out with enemies and candles
  • Death boss battle has been added
  • Rooms with multiple secrets are now supported
  • Whip upgrade item drops have been reworked
    • Two whip upgrades cannot spawn at the same time
    • When a whip upgrade is collected, a cooldown timer is initiated.
      Whip upgrades cannot spawn within this window. Using your whip to
      defeat enemies decreases the cooldown more quickly
  • Stub for level 6 has been added

(12/11/24)

Soundtrack

  • Out of time has been slightly reworked for a fuller sound

Game

  • New cart label is in place
  • Level 4 has been filled out with candles and enemies
  • Frankenstein's monster and Igor boss have been added
  • Eagles have been added. They carry fleamen, and wont hesitate to drop them on you
  • Skele-dragons have been added. they are surprisingly quick, and like to stay out of reach
  • Red skeletons have been added. Slow moving enemies that can't be killed, only immobilized for a brief time
  • Axe Knights have been added. They maintain distance, and throw axes. Their armor is tough.
  • Stub for level 5 is in place. That's it, though.

(12/5/24)

Soundtrack

  • Prologue has been filled out with a 4th channel, as was as reworked the other channels to make it fit

Game

  • Death has been added. His erratic movements make him hard to hit, and his scythes will surround you
  • First chunk of level 4 has been filled out with candles and enemies
  • Reworked item collision for more reliable pickups
  • If you attempt to throw a sub-weapon, but then take a hit before it
    flies, your ammo is refunded. Not applicable to the stopwatch.
  • (12/2/24)

  • Level 3 has been populated with candles and enemies
    • The unreachable secret from the original game is now collectable... or is it?

(11/30/24)

  • Special super secret has been added... somewhere. Can you find it?
  • Level 3 has been blocked out. No enemies or candles, yet
  • Mummy bosses have been added
  • Fall transition to Level 4 has been added
  • First chunk of level 4 has been blocked out. No enemies or candles, yet

(11/28/24)

Soundtrack

  • Walking on the Edge has had some percussion added
  • Underground has been Changed to be more bassy, and also more harmonious(?)

Game

  • Brand new sprites for Simon have been added, drawn by @Retro_Pup_Pico_8. Many thanks go to them for their
    fantastic work!
  • Collisions have been retooled for the whip and weapons against enemies. Hits should be MUCH more sensible now
  • Ravens have been added. They swoop down, and attempt to collide with you
  • My first home made Power up, the infinite shot, has been added. Collect it to get unlimited simultaneous weapons
    onscreen for about 10 seconds. Beware... after the time is up, not only do you bust back to single shot, all on
    screen subweapons are destroyed, including the one you have equipped

(11/25/24)

  • New powerup has been added: The infinite shot. Once collected, you can throw an unlimited number of sub-weapons while your ammo holds out, for ten seconds. Afterward, you're left with single shot, and no sub-weapon, and all onscreen sub-weapons are destroyed
  • Level loading bug has been fixed!
  • Skeleton collision has been tweaked to allow for more interesting gameplay
  • ammo economy has been adjusted

(11/23/24)

  • Rest of level 2 has been blocked out, and missing enemies have been placed
  • Medusa boss has been added
  • Swooping bat has been added
  • Ghost spawners have been added
  • Beginnings of level 3 in place. No more than that, though

(11/19/24)

  • Lingering issue with File select screen have been fixed
  • An enemy drop system has been added. How many enemies you've destroyed will determine what you MIGHT get
  • Some polish to the Phantom Bat's animation
  • Proper points awarded for the different enemies,
    as well as for weapon combos (sincere thanks go to @Retro_Pup_Pico_8 for the research!)
  • Ghosts have been added
  • Fleamen have been tweaked (I just can't leave those dudes alone...)
  • 1ups have been added. They currently have a 1% chance to drop instead of a multishot

(11/17/24)

Soundtrack

  • Whole soundtrack was re-recorded to up the volume a bit
  • Underground has been filled out more
  • Gate has been renamed to Prologue
  • Vampire killer received small tweaks to fades
  • Stalker now has even more oomph in the bass
  • Wicked Child has had a pass to bring more balance, and make some notes more distinct
  • Walking on the Edge has had a few cuts added to many notes
  • Out of time has had cuts added to notes. It sounded kinda "Whiney" to me before...
  • Nothing to lose has had minor alterations to the drum line
  • Voyager has been cleaned up a bit

(11/15/24)

Game

  • Underground song has been made more accurate
  • File select "Copy Mode" has been added
    • Progress should be properly recorded in all instances
  • You can now skip the map cutscene if you get there by loading a saved game.
  • Beginning of some code TLC. Let me know if anything gets caught sideways
  • Skeletons have been added. Very nimble for what they are. Don't underestimate them!
  • Fleamen have been tweaked, and new mechanics added
    • Now, if you are invincible, they run away...
    • They're a bit faster now
    • small tweaks to map

Soundtrack

  • Track 1 has been given its proper name (Underground) as well as been trimmed properly
  • Bonus guest album Castlevania III No Densetsu or Whatever has been added

(11/11/24)

Game

  • A File select screen has been added.
    • Choose New game to enter your name in a slot (No blank names allowed, unless you use space...hmm)
    • Choose a slot with an existing name to load
    • Use Delete a file to clear a slot, but be careful as it is permanent!
  • level 2 has been built out a bit. It is still incomplete, buts we're getting there!
  • Flying Medusa heads, have been added. Their sinusoidal pattern can make them tricky...
  • Fleamen have been added. They hop around like crazy, and are a general nuisance.

Soundtrack

  • The File select tune has been added

(10/31/24)

  • Player animation and control polish
  • Full Soundtrack is in! This will be the beginning of change logs for it.
  • Knight has been added. He will give chase if he sees you
  • Fishmen have been polished
  • Bats have been tweaked
  • Slight map changes, some enemies and candles added
  • Map Screen has been added, showing where the player will start, and where to find the boss
  • First area of level 2 has been added. Nothing more... Plenty of messages, though.
  • The bat boss now has hitstun
  • Slight rework of stopwatch mechanics all around
    (10/9/24)

  • Nothing to Lose has been added
  • Heart of Fire has been added
  • Bat has been added to the title screen. He's just a placeholder until I can get one of my very own
  • Panther has been added. A fast moving cat that can sneak up if you aren't careful
  • Fishmen have been added. They burst from the murky waters and belch fire. Tread lightly
  • Reworked the map a bit to utilize the new enemies
  • Simon can now jump backwards if you tap the rear direction, and press jump at the same time
  • Made a pass over some animations

(9/30/24)

  • This release was me taking a small break from coding to work on some music

    • Stalker has been added
    • Wicked Child has been added
    • Walking on the Edge has been added
  • Made a pass over gameplay and visuals to be a little more polished and readable,
  • Crushers have been added, but wont be used in the first level
  • Dialed in the boss' behavior

(9/22/24)

  • Moved some stuff around on the map...
  • Polish on the boss
  • Fixed Multishot getting broken
  • Simon now has a moment of hitstun
  • Tweaked the axe hitbox a bit
  • Adjusted Simon's walking speed

(9/20/24)

  • More work has been done on scoring. There are now multi hit combos and more money bags
  • Secret areas and breakable walls have been added! Can you find them all?
  • Bats have been added
  • The boss has arrived! He is pretty tough... I may have to nerf him... like, a lot.
  • First stage now has just about everything to be considered a complete first draft!

(9/17/24)

  • Level loading issue has been fixed!
  • Tweaked a few sound effects
  • Added a more dynamic health bar

(9/16/24)

  • Map has been expanded. Only rough dev art for now
  • Castle entrance has been added
  • Zombies have been added. They're numerous, but slow and weak
  • Initial work on a scoring system has begun
  • Brazier candles have been added

(9/15/24)

  • Added door transitions
  • A new area is in place, That boss position is vacant...

(9/13/24)

  • Porkchop has been added. Collect it to gain 6 health
  • Bone towers have been added. Watch out for their fireballs!
  • Map layout has...changed? Castlevania itself is a creature of chaos, after all
  • Damage functions are enabled
  • Tweaked a few hit boxes for some balance
  • Intro is in... Mind the construction, and wear your hard hat. Don't lose it...

(9/12/24)

  • Work on title screen has begun. Artwork by the ever talented Cephaccino!
  • A stub has been added for the intro. It's left disabled for now

(9/11/24)

  • Added HUD to Game Over screen
  • Added a few more platforms to play with, and rearranged some candles
  • Revisited Vampire Killer to sound a little less harsh (I'll get it eventually...)

(9/10/24)

  • Floating platforms have been added
  • Initial map loading is implemented. Use the stairs to traverse the different levels
    • Lower level added to try it out
  • Still tuning the stairs. They're still not quite perfect, but getting there...

  • Made another pass over music and SFX, to balance audio and to prevent clobbering

(9/5/24)

Alright, peeps. I need to do some research on map manipulation and loading.

Let's see what I can learn, then I can continue! In the meantime, let me know how

the current features feel.

  • Made another pass on the stage one music, and rebalanced the audio

(9/5/24)

  • Added stage one music
  • tweaked a few sfx and instruments

I'll have to make another pass to try and eliminate sfx clobbering

(9/2/24)

  • Added a victory state, it currently just sends you back to the title screen
  • Added some more music, victory and game over

(9/1/24)

  • Game is now fullscreen, gameplay and hud adjusted accordingly
  • Axe now has a new feature: when throwing an axe, hold the movement arrow in the direction you're facing
    to throw it farther
  • boomerang now goes faster to cover the screen

(8/31/24)

  • Candle contents take some context
  • took a crack at fixing the stairs
  • You can now travel up and down on the stairs,
    it's the same area, but im testing transitions
  • Fixed subweapons not throwable after dying
  • Tweaked small heart to drift to the left first
  • Continuing from game over resets score

(8/30/24)

  • Adjusted some sfx
  • Tweaked hitboxes for whip and all subweapons
  • Fixed stopwatch not honoring the ammo cost
  • Added initial multishot
  • Stopwatch tuned so you can only throw it once
  • Multishot added. Collect a II to double your shots, collect a III to triple!
  • if you have no subweapon or a stopwatch, they give points instead
  • small score graphics added

(8/29/24)

  • Added in some SFX

  • Adjusted hit boxes to more closely
    match visual feedback

  • New playground map with candles to
    whip

(8/23/24)

Initial release on Picotron!

LEGACY

(8/9/23)

  • Several powerups have been added, as well as all sub-weapons
    • Stopwatch: Freezes time to give you some room to breath, but it costs quite a few hearts to use
    • Cross: Emits a blinding holy light, destroying all enemies on screen! One use on pickup only.
    • Invisibility potion: Makes you invincible for about ten seconds.
  • The whip upgrade is now fully working. Grab 1 to get a chain whip. Grab another to make it longer!
  • I've sprinkled candles throughout the level to play with. Every available item and sub-weapon should be attainable, but some of the more valuable stuff is placed in harder to reach areas. Can you find them all?
  • First Enemy has been added; The Bone Tower! (Thanks again for the art @HeyNetters. I saw your Bone tower and
    was inspired for my first enemy!)
    • Acts more like a sentry than anything, but where it lacks in mobility it makes up for in toughness. Recommend at
      least a chain to deal with these guys. Watch your footing...

(11/22/22)

  • I've decorated the map a bit, using assets and ideas provided by @HeyNetters. Many thanks go to them for the art! This is all preliminary for now, but these just looked too good to not include them.

  • Chain upgrade has been added. The chain graphics reflect the first upgrade, and the added length reflect the second. Collect the whip powerup to upgrade.

  • Gameplay pause added upon collection of the whip powerup.

  • Whip has been fixed so that you can no longer hit things behind you. Still need to look into that janky
    animation...

  • Thanks to suggestions from @dw817, Simon's walk speed has been increased a bit, with matching animation. The whip also stays out for just a bit longer.

  • Minor changes to small heart to keep it from flying around so much.
  • Tweaking pass on SFX.

(8/26/22)

Sorry for the long delay, guys. I recently started a new job, and I have less time to work on this project now. I do, however, fully intend to see this project to completion. I need to work on some systems that can cut down on repeated code in here, as the token count is getting dangerously high. Despite that, I'm happy with where it is at so far. Let me know how you guys like it!

  • Candles have been added. Until I can work out a feasible spawning system, these are hard coded. Whip them to make
    items come out.

  • I have mocked up a status bar along the top of the screen. This is all subject to change as I figure out what will
    fit and what will not.

  • A game clock is in place. It ticks down in seconds, and once it reaches zero, you're dead. There isn't much you
    can do about it at the moment, but I thought it would be fun to add, and it was really simple to implement. The
    clock will even start to beep after awhile, just to give you some unnecessary stress.

  • Hearts have been added. You now have a limited stock of ammunition. Whip candles to find more.

(7/21/22)

  • Boomerang can now be caught. Small reason to post an update, but I thought it was important.

  • Boomerang graphics rearranged so it animates like in the original game.

    This may be the last update for a little bit. The code for climbing stairs MUST be rewritten before I will
    continue. While it works great as it is, the code is just too darned bloated right now.

(7/20/22)

  • All throwable weapons have been added. Hold ❎ and press ⬆️ or ⬇️ to cycle through them,
    and press ⬆️ and 🅾️ to throw one. Like before, you can throw 3 at a time!

  • Holy water was redrawn to not be so huge.

(7/19/22)

  • Holy water has been added, press ⬆️ and 🅾️ to throw it. You can throw 3 at a time.

  • Simon's sprite has been redrawn to make him more detailed and look a lot less scrawny. Many thanks go to the
    Discord community for their feedback on this matter!

(7/18/22)

  • Stairs now work in all 4 directions.

  • Plenty of stairs have been added to the map, so play around and let me know if anything breaks horrifically.

  • It is no longer possible to jump when a block is directly above the player.

(7/16/22)

  • Commented out the code and formatted it so anybody could take a look and decipher it all...

  • Taking a hit will now interrupt your attack.

  • Player can no longer warp through the ceiling when hurt.

(7/15/22)

  • Player health, hurt state and death are implemented. There aren't any enemies yet, so for now you
    can press ⬆️ and ❎ to beat yourself up. These are disabled while on stairs...

  • Continue screen has been added

  • Made a pass on music and sound effects. I feel like the music instrumentation is way better now, and many of the
    sound effects are improving as well!

  • Initial HUD elements added. There are here only for a visual to pair with testing health and lives for now.

(7/12/22)

  • Changes to walk and stair climbing movement and animation speed. It felt just a tad sluggish before...

(7/11/22)

  • Stairs are in progress. Right now there is only up-right and down-left movement, but this is a pretty good proof of concept. Whip is disabled for now while climbing them until I flesh out that aspect.

  • The bottom of the screen is now a bottomless pit, and you will die and be reset.

  • A small map to test out the mechanics and play around in.

  • Preliminary artwork has been added to make the view a little more interesting

(7/10/22)

  • Jump physics have been reworked and the jank is now gone for the most part. I feel like the jumping is in a pretty good spot now.

  • Initial work on the whip has been started. The animation is just a little janky, but I'm working on that :)

  • I am currently prototyping ideas for stairs. I haven't added stairs yet, so don't try...

(6/26/22):

  • Basic movement is implemented; Walking, ducking, jumping and hard landing are in. There is one little niggle
    with collision and platforming. I'm sure you guys will know when you find it. (Edit) I've created a temporary workaround
    for this. Please let me know if you like how it handles. Collision is still not perfect, and you might still get
    hung up, but I'm working on that.

  • First draft of music has been created. Let me know how you like it! I might need to shift things around a bit
    before I release: I've not included everything I'd like to, and I've run out of room due to some initial (less
    than optimal) SFX layout choices.

(6/27/22):

  • I've tweaked the jump physics to more closely match the original game.

  • Invisible walls have been added. I wanted a way to create impassible areas without changing the collision.
    You can test this out near the lone block on the right.

    Now is the time where I sit down and take a class on Picomap by @JadeLombax. I may as well get this figured out
    and implemented now, since stairs will likely rely on it...

[ Continue Reading.. ]

27
25 comments


Cart #docs-7 | 2024-09-28 | Embed ▽ | License: CC4-BY-NC-SA
29

Docs currently doesn't work on the BBS.

Introduction

Docs has been built so that it can be a helpful companion while you code. It is built so that others can add their own files to docs if their app requires documentation.

Installation

In the terminal run load #docs and then save it with save apps/docs.p64

Updating

To update the documentation in Settings click "Force Update".

Note

The Picotron documentation is currently being added, and so the current version has incomplete information. If you would like to help write the documentation feel free to reach out to me.

29
15 comments


Recently, I've been working on a word-typing game called Catreeboard with my son. At the beginning and to simply get the game to a state where we could work on animations and gameplay, I naively created a simple table-based dictionary that is subdivided by length of the word. It looked something like this:

dictionary = {
    {
        "a",
        "i",
        "on",
        "at",
        "it",
        "is",
    },
    {
        "cat",
        "dog",
        "sun",
        "hat",
        "bat",
        "pen",
    },
    {
        "home",
        "love",
        "ball",
        "star",
        "blue",
    },
    {
        "house",
        "quick",
        "plant",

[ [size=16][color=#ffaabb] [ Continue Reading.. ] [/color][/size] ](/bbs/?pid=153444#p)
1
4 comments


Hog Runner

WIP: Endless Runner Test with some cusom Sonic sprites

Cart #hog_runner-0 | 2024-08-29 | Code ▽ | Embed ▽ | No License
2

2
0 comments




Top    Load More Posts ->