Log In  
Follow
bekey
[ :: Read More :: ]

Uh... yeah. Sorry about this...

As an retired half-life modder and frequent forum poster, I'm pretty used to the idea of mega-threads. Basically, the modding forums that I often visited had at the very least a "random" thread, which people used almost like a chat.

Some others would also have a WIP thread, which incentivized people to post their WIPs more often, because they didn't need to go through the effort of creating an entirely new thread, just to show off some minor thing they're working on.

So yeah, hate it or love it, I'm just putting the idea forward.

Post what you're working on right now here.

P#51880 2018-04-22 15:27 ( Edited 2018-04-22 19:27)

[ :: Read More :: ]

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

I am so terribly sorry. I actually intended to demake Insaniquarium using this game kit as some form of sample game, but it ended up sitting on my computer for months.

Anyway, over said months, I probably forgot the actual state of this gamekit, but from what I remember:

  • Allows players to take a break for at least 3 years before breaking.
  • Provides a screen for entering date + time. With this info the game calculates the last time the player played the game. (You basically rely on the player not lying to you, because Pico8 doesn't expose the OS clock.)
  • Unique feature where time is progressing slower while the game is running. /s
  • No seriously, the clock isn't accurate while the game is running, but it should be somewhat accurately calculating the time since the last playtime.
  • Lots of finicky floating errors and overflows to keep in mind with while setting up the numbers.
  • Define your own "resources" (hunger, gold, joy, etc...) with their own min, max and starting values. As well as the tickrate and tickamount (negative or positive!)
  • Uses cartdata

Obviously I welcome any and all optimizations. Actually... considering the token count I should beg for them, but whatever, date calculations are hard, yo!

P#42876 2017-07-29 08:56 ( Edited 2017-07-29 13:08)

[ :: Read More :: ]

You know that feeling when you only have 8x8 pixels to draw something, and it takes an hour to get it right?

Let's make that feeling worse by posting our sprite in this thread, without context, and then despair when none of the other users can figure out what it is.

I'll shamelessly start it off with this thing...

And no, it's not pikachu... :(

P#40186 2017-05-04 13:08 ( Edited 2017-05-04 21:33)

[ :: Read More :: ]

Hey, first of all, excuse my poor photoshopping (Using Krita on Linux, terrible tool. No idea why I'm not using Gimp).

But anyways... What if, while in the code editor, you could hold down a key (maybe ALT?) and it would turn all tokens into coloured blobs. So you could instantly see where and how most of them are used up.

Something like this:

Additionally, maybe instead of being randomly coloured, certain tokens (such as keywords, variable names, separators, etc...) could have a dedicated colour to them.

Now, disclaimer... I don't actually know how the tokens work exactly, I just coloured in the tokens as I felt.

The token blocks themselves, should also look more like this, but in pico8 colour palette:

but I think the image gets the point across even with my terrible photoshopping.

P#40185 2017-05-04 12:03 ( Edited 2017-05-07 19:00)

[ :: Read More :: ]
increment_second = function(this)
    this.second = (this.second + 1) % 60
    if this.second == 0 then
        this.minute = (this.minute + 1) % 60
        if this.minute == 0 then
            this.hour = (this.hour + 1) % 24
            if this.hour == 0 then
                this.day = this.day + 1
                if this.day > days_in_a_month[this.month] or this.day > 29 and this.month == 2 and this.year % 4 == 0 then
                    this.day = 1
                    this.month = (this.month % 12) + 1
                    if this.month == 1 then
                        this.year += 1
                    end
                end
            end
        end
    end
end

I'm creating a tamagotchi kit, and since os.clock is no longer part of the API, I figured it'd be okay if the user would have to type his/her current time at every launch.

Currently at 1500 tokens, with a datetime input screen, an "are you sure this is correct?" screen, a class for stats/resources (ie. health, hunger, random_event_countdown, etc...), a class for date calculations, and plenty of overflow control for both classes.

Nearly done, but before I submit it, I'd like to inquire if there's a possible improvement to this eye sore of a function?

P#40109 2017-05-01 17:00 ( Edited 2017-05-03 08:42)

[ :: Read More :: ]

I wonder, once the highscores feature comes into play, will it be possible to do some extremely limited networking using it? Say for example, instead of using the highscore number as a highscore number, but instead as data. I imagine it wouldn't allow for any real-time networking, but I think it's worth keeping in mind that the highscore number could be used for other things than scores. Maybe showing what decisions other players took, like a Telltale game. Or gravestones of players who have passed away and where.

P#39997 2017-04-28 15:34 ( Edited 2018-09-22 18:33)

[ :: Read More :: ]

Cart #39878 | 2017-04-23 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

My Ludum Dare 38 game.

This is my first pico-8 game, and as such I had to cut about 3/4 of the intended features.
Please excuse the abhorrent collision detection and the rushed pixel-art.

If you do play and finish it, I hope you find that the slow walking speed wasn't too much of a waste of your time.

Protip: Try to avoid facing another object while dropping your current object.

Controls:

Arrow keys to move.
X/Y/Z to start pulling the item in front of you.
X/Y/Z to stop pulling.

P#39874 2017-04-23 15:24 ( Edited 2017-04-23 20:26)

Follow Lexaloffle:          
Generated 2024-04-18 08:09:23 | 0.119s | Q:16