Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

ahmwma

541
Posts
9
Topics
367
Followers
245
Following
A member registered Mar 18, 2017 · View creator page →

Creator of

Recent community posts

This is beautiful!! And so cool!

Snep! Thank you so much for playing! I'm so glad the color change worked out.

Ohh I love this! I've sometimes compared making things in decker to being a little bit like physical arts and crafts (paper dolls, shadow plays, shoebox dioramas, etc.) and this is so perfectly up my alley. Though I didn't know anything about the history of these toy theatres! I'm fascinated.

Thank you very much for this wonderful deck (And for your occasional blogging during the project -- I enjoyed following along).


This is fantastic! All the art! And somehow I picked every single wrong choice but that's fine because then I got to enjoy all of the text.

It's no joke to try to put together something like this on a short schedule and I think you did amazingly.

The art is gorgeous! 

Thank you for all of your support! Especially over the last little while. And thank you so much for playing :D

Thank you SpunkyDude! (And good luck with your project!)

I'm thinking about it! I've got something else cooking that I want to try first, but I think a longer Mystlike is going to happen sooner or later... Thank you Salty!!

Thank you very muchly, friend... I hope to showcase even more ingenuity someday...

Yay! And thank you for playing!

The technical side of the panels opening was entirely down to the ease module, which handles the math side of things for certain kinds of animation. So I have to admit I was mostly picking the effect I wanted from the already prepared options within the module.

But I am very flattered and happy that you liked it!I think about that throughline a lot too. And thank you very much for playing!

You are eloquent as always, Mind Ape. I'm nodding along with the idea of working within (and being shaped by) the medium. I haven't seen that film but I might have to since you've mentioned it. Thank you for playing!

Thank you! Yeah, time got away from me this month so I had to cut away at the scope until I was sure I could get it done.

It does definitely make me want to give this kind of game a try again sometime, without any time pressure.

I'm glad there's several paths to the answer, haha... Thank you for playing! (And for checking out the behind-the-scenes!)

:'D Thank you Millie

Thank you IJ! 

This is really nice! It's always so lovely to spend time with your characters.

Yooo! Thank you and good luck! I'm looking forward  to seeing what you've been working on!

I'm Baker 3? That seems way cooler than me, but I'll take it. 😎

This thing is so packed full of details, amazing work!

 

Yeah this rocks

This is super beautiful! I really like your art

i will be here with you 🥺

Sounds! So many sounds.... custom sounds....

I really love the back and forth feeling between you and missooni, it's really a "wow! two  great cakes!" situation for me. :D I'm going to continue playing with this and cinnamon!

This is not a complete answer, this is kind of just a gesture towards one. The actual complete answer will kind of depend on what's going on in your game, y'know? But I can point to a couple of things.

Here's some recent discussion of the sokoban example specifically: https://itch.io/post/16368974

And for the path module here's the card that has an example that gives a visual example of the forbidden color thing: https://beyondloom.com/decker/path.html#followeranim (click the checkbox at the bottom) 

Some of the code for this is inside the module, not the deck's scripts but I believe it uses .hist to check parts of the movement grid for a specific color, and forbids movement onto that square of the grid if it finds any.

It should be possible to do something similar with a different kind of movement system too, if the path module itself doesn't have the kind of movement you had in mind.

Absolutely killer. I've got a lot to think about.

Oh, oof. But it was beautifully told.

I've been thinking a lot about Myst and Riven in the last few months so I'm aiming for a simple point and click type game with a puzzle or two. It'll all have to be very simple... I don't have much of a story in mind. But I really enjoy making interactive scenes and there's a new flourish or two I'd like to try.

(1 edit)

We're halfway through Decker Fantasy Camp and since there wasn't a social thread open for it specifically I thought it might be nice to get one started (even if it's late)!

I know a lot of folks have already submitted projects or have been working on them a while but nonetheless feel free to talk about what you're working on or about what you've already done! Sneak peeks, mini postmortems and vague future ideas are all welcome.

Haven't started anything yet? There's still time to open up Decker and play around.

 July 31st EDIT: If you're just a little late finishing your project (a day or two) there's always a grace period where you can email Internet Janitor to get a late submission link for the jam. Good luck if you're still working on things!

This is really wonderful, thank you for sharing it with the community too!

Oh hey! This is going to be useful!

Hey Salty!

I've been poking at the contraption and only managed to break it in the way you mentioned once. I think something may have happened to the 'on click pos do' event handler inside the contraption? This is the final event handler in the contraption's script, as it (probably) should be:

on click pos do
 v:get_options[]
 w:(.7*c.size[0])/count v
 set_value[v[floor(first pos)/w]]
end

If this event handler isn't there to do something with clicks, then clicking the tabs doesn't do anything.

So that would be the first thing I'd check. 🤔 But also, since your actual writing is safe in their own fields you could also remove the contraption and bring in a fresh copy. (Or take a working copy and give it a higher version number so it automatically replaces the old ones when you paste it in...? I think that's how that works. Save your deck first for safety!)

(And your project looks really neat!)

Adorable!!

(1 edit)

To start with, you probably need the "Show" attribute. Specifically to set things to .show:"none" 

Invisible buttons are more useful for things you want to be able to click that don't look like buttons (for example, navigating around a scene in a point-and-click game). And a "None" button is truly hidden and unclickable until you change their setting, so that seems like what you might be after.

To set a widget to "none" visibility you can do it in code or with the menu while you're editing.  
While Editing you deck: Select a widget and use the menu Widgets > Show None ]

And in code, this sets the visibility of a widget:

widgetname.show:"none"

To make it visible again you would need to set it's show attribute to one of the other visibilities, so this...

widgetname.show:"solid" 

...would set it back to the default visibility it had when you made it. (Other options: "transparent" and "invert")

Just a thought, but if you only need to track the progress on one card for now and you don't need to check back on it later you could just make things appear one by one in the button scripts.

For example, here's a simple example script for a button that sets some text in a field then makes the next button visible:

on click do
myname.text:"Pyrefly Studio"
favefoodbutton.show:"solid"
end

and then script in the next button (favefoodbutton, which just became visible) could be something like

on click do
favefood.text:"Blueberry Ice Cream"
coolfactbutton.show:"solid"
end

etc, etc. These widget names (fields: myname, favefood / buttons: favefoodbutton, coolfactbutton) are made up, of course, so you'll want to make any names match the widgets that actually exist. 

But I hope this helps you get started changing widget visibility and setting the text of a field using scripts.

Incredible sounds....

So many of the missions made me chuckle, especially the autonomy ones. 

This turned out absolutely beautiful.... wow.

Do you mean the background of the card or the "background" of the drawing area, where you color with markers?

I had something far less refined in mind to try to do with Patternshop but could never find the time to dig in, so this is really a delight. You're making such cool and useful tools, Missooni! It's really inspiring!

I'm looking forward to spending more time with this thing you made during the upcoming decker jam.

(1 edit)

People who post their own versions of Wigglypaint without lying and stealing art are fine. Change logs for various versions of Wigglypaint actively encourage people to try tinkering with the program.  Legit, free and honest modifications of Wigglypaint have always existed, and Internet-Janitor has answered questions helping people make their own modifications in the past

But when we're talking about scams we're talking about people lying about being "The Official Wigglypaint", sometimes pretending to be Internet-Janitor personally and stealing hundreds of people's artworks for their community galleries to look like a legit official website. These scammers are doing shady things to deceive new artists into giving them money, often tricking them into thinking that they're supporting the creator. That's why there's a scam warning here.