Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Kara Jo Kalinowski

#1
The gear / fullscreen option does not work on my mobile device... I would like it to full screen to landscape but the button just does nothing. If I tilt my phone to hold it landscape, it is stretched and doesn't fill the whole screen vertically. itch.io does it correctly but I'd like to have it shown on AGS site. Using safari in iphone 13 mini on 18.3.1. AGS 3.6.1.31. See my MAGSMan game for an example..
#2
Quote from: cat on Sat 22/03/2025 18:39:44Congrats!

Here are some mini reviews:

Limblob (by Soulstuff)
Spoiler
Fun and short game with some nice details like the circle hole in the door. Good effort for a first game!
[close]

Finding Balzac (by pell)
Spoiler
A joke that can be viewed in different ways. Funny but not really a game.
[close]

MAGSMan by (Kara Jo Kalinowski)
Spoiler
Nice take on the topic and the classic game. When the word is not solved, I would like to see the solution.
[close]

Thanks for the feedback. I also realized this issue, but too late, and I couldn't edit it during voting. But I can maybe add it in now.

Congrats to the winner. Another competition where I didn't get any votes, but I also wasn't expecting any :P - Maybe one of these competitions I'll make a game that takes a full month to do...
#3
Quote from: RootBound on Wed 12/03/2025 15:10:18Well, I did it--the game is fully playable. Still need to fix some GUI issues, add another ending, and then get some playtesters. But I recommend the one-room one-week approach to anyone having trouble getting started. It forces you to get something done and then leaves you with time to refine it before the real deadline. Can't wait to see what other entries we get!

I have an idea but the idea I have is kinda too big - but I may start taking this approach myself, because I have tons of ideas and it's hard to make something bigger while also working on MAGS. So maybe I'll try and dedicate 1 week to MAGS and then the rest of the month to do whatever else.

I did send you a message by the way, if you need a tester, I'm either here or on discord.
#4
Quote from: CharlesS on Thu 13/03/2025 07:38:14Hello, everyone. I've always wanted to create my own game, but I didn't know where to start.
I started studying 3D modeling and eventually realized that my skills were not enough for game development and that Blender 3D was not used as a tool in companies. And such programs as 3D max, Maya, Houdini, and others are very expensive. If you take Anrial Engine, my computer doesn't pull it out. Because it requires powerful hardware. My friend recommended this site to me and said that you can make 2D games here.
I would be grateful for advice or tips on where to start.

Hello,

This site is primarily about games made in adventure game studio, an engine that specializes in making point and click adventure games. It can do other things but that is the focus. To get started, download the latest editor and maybe find a tutorial.

Also, this forum which you posted in is for announcing AGS games you have in production.
#5
Quote from: Jordanowen42 on Sat 01/03/2025 05:31:07UPDATE: Nevermind. I figured it out. You guys are nice to put up with me.


Could you still let us know what the problem was in case there's a bug in the engine that needs to be fixed?
#6
Quote from: Crimson Wizard on Sat 08/03/2025 22:22:46The only on-screen object that may be created dynamically in AGS is still: Overlays.
Everything else would require a pool of reusable objects.

Overlays let to implement any kind of custom visible object, but they are very simple on their own, and would likely require to also have your data in script that defines them, and some extra script to handle interactions.

They might be used for droppable items. Previously one would use Characters, since these are unlimited and you can create as many as there are items in game, so long as that's classic adventure game and not e.g. RPG with thousands of possible items. But since they got improved in 3.6.0 Overlays are viable alternative, except they would require extra scripting.



About typewriter effect, I am puzzled about why do you consider a necessity of multiple objects for that. Normally this is done without any objects, just using a Label or DrawingSurface. It's also trivial to calculate width of text, AGS has a GetTextWidth and GetTextHeight functions that do that for you.
There are at least 3 script modules posted here on forums that support typewriter effect today. For instance, here's mine, which I created based on my Visual Novel experiment years ago: https://www.adventuregamestudio.co.uk/forums/modules-plugins-tools/module-typedtext-0-7-0/
But it's not super hard to write your own (I've seen people just writing a simple script for that when they needed this effect).
If you'd like to have letters as sprites, not relying on standard fonts, that's not a problem either, it's simply going to be a loop over characters in a string to know its size. There's a classic SpriteFont plugin that lets to have font made of sprites, substituting any font in game. But it's also possible to write a script that does the same with dynamic sprites and drawing on a surface. For instance, I made one for my older game Last & Furious. The code may be found in the game's repository:
https://github.com/ivan-mogilko/ags-lastfurious/blob/master/Last'n'Furious/SpriteFont.ash
https://github.com/ivan-mogilko/ags-lastfurious/blob/master/Last'n'Furious/SpriteFont.asc

Of course if it's absolutely necessary to use separate objects for displaying separate letters, then overlays may be useful here as well.
There's a module that makes use of them for extra effects, such as drawing each piece of text in its own way:
https://www.adventuregamestudio.co.uk/forums/modules-plugins-tools/module-fancy-0-1-0/

Thank you for all of the information. I was not aware of GetTextHeight and GetTextWidth (sometimes navigating the help file leaves me unsure where to look). So if I am sticking with standard text functions, it should suit my needs fine. But if I want a fancier looking font I might use the sprite thing still.
#7
I'm wondering for certain types of things if they are possible to create using script instead of in the editor. Both in the current 3.6 version, and in the current 4.0 version.

Things like

Objects
Hotspots
Characters
GUI controls (i.e. buttons)

I asked about this when working on my Kyrandia GUI ages ago, but forget what the actual solution was that was recommended to me. Essentially my best solution at the time was to create a bunch of dummy characters and instantiate them from room to room as needed (easier than dummy objects because objects are room-specific so I would need to create dummy objects in each room.) For that kyrandia GUI, I was looking at specifically being able to drop off inventory items into any walkable area location. so my idea then was to pick an unused character, change the sprite, room number, x, y to the proper place. I'd still like to make the kyrandia GUI at some point, but it's not my current problem.

Now the thing I'm considering is a visual novel style GUI where it would display the text like a typewriter. It's not easy to calculate the width of a word unless your characters are fixed-width so I'm considering the same type of thing, making a bunch of dummy objects in the editor and instantiating each letter as necessary, but that's super tedious. So is there a way to create a new button on the fly? (Also, am I right to think that the only GUI elements that can have images are buttons?) I essentially did the same thing with my MAGSMan hangman game, though that one is limited to words 22 length.
#8
Quote from: heltenjon on Sat 08/03/2025 16:45:36Here are my thoughts this month:

Limblob by Soulstuff:
Spoiler
This is your first game, right? I think you have done a good job. I liked the different walking/bouncing animations, and the blob population reminded me of Shape Village, which is not a bad thing in my book. There's a clear objective in the game, and fair (if easy) puzzles to get there. Well done. Next time, try to add sound or music as well.
[close]

Finding Balzac by Pell:
Spoiler
Short visual novel, four endings, placeholder sketches (which work fine, actually) and a clumsy/evil doc inspired by yours truly.  :-D  I'm honored! This was the funniest entry and had me laughing several times. Downside - unfinished and probably shorter than it was planned to be.
[close]

MAGSMan by Kara Jo Kalinowski:
Spoiler
I wish I had not read your idea before playing! Anyway, Hangman is a classic, and the quite large word list makes the game replayable as a casual game. Downside - no other extras like sound makes the game bare-bones. It's not an original idea, of course, which may count for something in a MAGS vote, even if it may live on my hard drive for a while.
[close]

Mall Quest (Unfinished) by Babar and jfrisby:
Spoiler
Ooohhh, I am getting Commodore 64 vibes again, partly because of the soundtrack, no doubt. I hope you finish this later on. I like the scenarios where the player runs around from npc to npc, fixing their problems and getting other items in return. (Reminding me of the bazaar in Sierra's Conquests of Camelot.) I found the ending, but I don't think a finished game will be spoiled.
[close]

Yeah I wasn't planning to submit due to changing computers and whatnot but after going through all the frustrating things with my pcs and it still being open I decided to make it after all. Thanks for playing!
#9
Quote from: soulstuff on Sat 01/03/2025 06:18:12Holy batcrackers I actually finished something with AGS



WELCOME TO LIMBLOB

A short and simple adventure

Story:

You arrived at the adventure game afterlife. Sadly, your poor
performance in your last game has left you a blob with no mouth or limbs.

You need to find a way to get limbs to be able to leave the afterlife and go into your next adventure.

DOWNLOAD LINK



Use of the theme: (light spoilers)
Spoiler
As you get more parts for your body you get access to actions or verbs. For example getting a mouth allows you to talk to people and since some of them are removable having them or not resolve different things.
[close]

I enjoyed the blob character and the game overall - I left a review on the game itself.

Quote from: pell on Tue 04/03/2025 06:29:45Here's mine. It still has placeholder art, but it's playable. There are multiple endings, depending upon your choices during the game.



https://gamesbypell.itch.io/finding-balzac

A quick funny little game, with a certain kind of humor. I appreciated the multiple endings, not a whole lot of games do that, especially MAGS games. A streamer playing the MAGS games thought that the game might have been hand drawn and scanned in, I was curious if it was that or if you used a tablet or something.
#10
I didn't properly spoiler tag this...but there's no edit/delete function.

https://www.adventuregamestudio.co.uk/play/game/2828/

(Seems this was fixed now, thanks to whoever did it, but an edit/delete function on those might be nice)
#11
Quote from: AGA on Sat 08/03/2025 12:13:44
Quote from: cat on Thu 27/02/2025 09:07:43As a developer, when I upload a game: where is this actually hosted? Is it on the AGS site itself? Or is this forwarded to another server? In this case, this should be stated more clearly, maybe with a link to their terms and conditions.

AGS site.

Quote from: cat on Thu 27/02/2025 09:07:43As a player on mobile, "Press ALT+ENTER to play the game in full screen, then ESC to return to browser." doesn't make much sense. I wasn't sure if it is possible to go to full screen on mobile. It might be a good idea to extend the the text a bit:
"Press ALT+ENTER to play the game in full screen, then ESC to return to browser. Alternatively, use the cogwheel icon in the bottom-right corner of the game." (or similar)

I'll try to tweak the wording!

Quote from: Kara Jo Kalinowski on Thu 06/03/2025 00:59:26When I try to upload a web version with a zip file, it just takes me to a white page and doesn't upload.

Are you following the instructions as given?  'Here you can upload a .zip file of the contents your "Compiled\Web" folder after selecting "Web" in the "Build target platforms" menu of the AGS Editor, then clicking "Build EXE".'  If so, can you please upload the exact zip you're trying to upload and I'll see if I can debug the issue.


Hey, I realized that there was a problem with the game in web, I think it's related to trying to read a text file. As the game is a MAGS game I'll wait before fixing it and trying to upload, but in the website itself it just goes into infinite loading so I'm not sure if it's related. Or I could be completely wrong as to why it's not working.

https://www.dropbox.com/scl/fi/p1x5nwf1r1k50rfb0v11j/Web.zip?rlkey=webg3pklw4s2dykatj6331i47&st=jnggy7ko&dl=0
#12
I have a really interesting idea for this theme but it isn't something that can be explored as fully as I'd like with a "small" adventure game, so I'm debating if I should go with it - or maybe make the MAGS version sort of a chapter 1, and expand on the idea later. The game would deal sorta with trans issues. Not sure if someone else would be interested in collaboration but if not I'll just do what I can.
#13
When I try to upload a web version with a zip file, it just takes me to a white page and doesn't upload.
#14
The deadline is passed, but voting hasn't started yet, so if it's not too late, here is mine. If it's too late for the voting, that's okay. I got a new computer and was dealing with headache of OS stopping working after a few minutes and like 5 or so OS reinstalls.

MAGSMan - a simple hangman style game made for MAGS Feb 2025 - Missing a body part

Created by Kara Jo Kalinowski

https://www.adventuregamestudio.co.uk/play/game/2832/

5000-more-common.txt is a list containing 5000 words that have been marked as common. This list was generated by Michael Wehar and is released into the public domain - https://github.com/MichaelWehar/Public-Domain-Word-Lists/blob/master/README.md. Note that this word list was generated while utilizing OPTED - http://www.mso.anu.edu.au/~ralph/OPTED/

(The original download link contained a small bug with the 10th letter being displayed offscreen for words length 10 or longer, that's been fixed.)

#15
MAGSMan - a simple hangman style game made for MAGS Feb 2025 - Missing a body part

Created by Kara Jo Kalinowski

5000-more-common.txt is a list containing 5000 words that have been marked as common. This list was generated by Michael Wehar and is released into the public domain - https://github.com/MichaelWehar/Public-Domain-Word-Lists/blob/master/README.md. Note that this word list was generated while utilizing OPTED - http://www.mso.anu.edu.au/~ralph/OPTED/

https://www.adventuregamestudio.co.uk/play/game/2832/

#16
Being part of that group myself, I also don't know if I want to focus on it or just have a game with a character that's part of that group. I have another idea, too.
#17
Edit: Deleted info about the game, since I ended up actually making it.
#18
Quote from: heltenjon on Thu 27/02/2025 10:32:42I didn't vote this month. I was a few minutes too late. But as I haven't played all the games thoroughly, that's just as well.

Bière Américaine (MAGS) by Ponch
Spoiler
Nothing annoyed me at all. I like slider puzzles and don't find them particularly difficult. (Perhaps it's the other way around.) And some good humour at the end. So for me, it was a 10 minute, fun game. But if I liked it, surely I'm not supposed to vote for it?
[close]

Skrexeval's Quest (MAGS) by Emma Gundersen
Spoiler
The laptop I played this on didn't have the F-keys operational, so I couldn't save. I decided to come back to it, but didn't find the time before the time limit. From what I played, my thought was that this was probably going to be my favourite, mocking King's Quest with silly instant deaths.
[close]

Artifact by Kara Jo Kalinowski and Pell
Spoiler
I cheated and watched Wham! solve the maze for me. The maze was well made and everything, it's just that I find mapping mazes plain boring, and I've done that too many times in my gaming life already. I liked the annoying puzzle at the beginning/end. And that you had to walk through the maze just to try something new was just the right amount of trolling to be acceptable in this theme. When I tried to vote, but was a few minutes late, I was going to vote for this one.
[close]

One Million Years Dungeon by Falsely
Spoiler
Too long - Didn't Play.
Not really. But I did try it and found out I had to play it in another manner with more time, no noise and pen and paper at the ready. I also gathered from the other feedback that this one would take some time to play. Unfortunately, I've also been trying to play the nominees for the AGS awards and had a lot of work deadlines at the same time. So on the back burner it sits, unfortunately.
[close]

Congratulations to the joint winners!

And if you haven't had enough of breaking the rules, here's Space Quest Historian's game All Demons Must Go To Hell, which tried to break almost every single rule in the book, and turned out a hilarious game. Made in AGS. The maze is programmed in the same way Kara Jo did hers, by the way, as a single room with shifting exits.

Haha well thanks for the vote even if it was too late :P

I agree with the winners of this one. I liked both of them for different reasons, though I voted for one million years dungeon due to how invested I was in note taking and trying to find secrets. Congrats!


#19
My spoilery reviews

Bière Américaine (MAGS) by Ponch

Spoiler
I'm not really the greatest at sliding tile puzzles, especially the end of sliding tile puzzles where there's barely any room to move. But this one starts with small dimensions, so I guess it's the more frustrating part of the puzzle. I liked that it wasn't JUST a tile puzzle and that you had to make a path. Though I solved that part by screenshotting / paint.

I thought that walking off the path by mistake might make you restart the game which would have been awful, but I didn't want to risk it. Still don't know if it actually "kills" you or not. But staying on the path wasn't hard.

I liked the humor in the ending.
[close]

Skrexeval's Quest (MAGS) by Emma Gundersen

Spoiler
I really like the king's quest AGI vibes that this entire game throws. The vertical looping in the desert was a bit strange...as was that you start on the same Y value no matter where you enter the desert from. I felt that this game was one that didn't focus on the theme but rather included it as it authentically would have been used in games back in the day.

I could tell there were going to be soft locks and I didn't want to spend too much time restarting the game, so I'll admit that I did check the walkthrough for soft locks and accidentally spoiled a solution or two in the process. But in general, I like the feel of the game. I wouldn't have guessed that killing the guy caused a soft lock even though I probably should have suspected that.
[close]


Artifact by Kara Jo Kalinowski and pell (My game, but I'll give some thoughts and perspectives to the creation)

Spoiler
I don't expect to win this competition though I'm curious if I will get any votes! I think that there are others had so much more to them and probably deserve it much more than mine. I will say about mine, that my artist wanted to keep it small - and asked to keep it to 2-3 rooms. That's why I decided to go with a labyrinth - with doors on the North, West, East, South that could be shown or hidden to create 1 giant maze. If you look at the code, the entire labyrinth minus the final room is actually just 1 room. The creation of the doors and the random rotation upon entering each room (if you didn't notice!) is all handled through code - arrays specify where each door in each room lead, then it's all set up each time the room is loaded.

It was always my intention from the start that the final room's solution would be "Come here with no items and you won't get trapped" - but I really wanted to make it to where the person doesn't accidentally win the game without trying, if they leave the house right away. So that was my idea with the hat - he won't leave the house without it, so it would be very hard to accidentally leave without it on the first time. And same with having the letter - another added element the player is almost sure to have. I originally was going to have extra "useless" items in the drawers and in the crack underneath the dresser, but I think it worked out great with just the 3 items. And how getting rid of the items actually becomes the puzzle, due to not wanting to accidentally let the player win right away.

There's also a secret with the portrait that some people might miss that's a callback to King's Quest 2..

I don't think that my game will win any awards but I'm quite happy with how I incorporated the theme.
[close]

One Million Years Dungeon by Falsely

Spoiler
I could tell from the beginning that this would be the longest and most time-consuming game, and I was right. You can totally learn this symbol language and I was really invested in that - making sure to translate the text on the title screen and in the manual! As I mentioned before to you directly, I was disappointed that I couldn't manage to translate the Godere stone on its own - if there's an update to this game I really wish that the unused letters that don't appear in any other translated phrases could be provided somewhere, so that it's a bit easier. Cause figuring out stuff like this even when you don't need to is fun!

I felt dumb for needing a hint for that final puzzle and should have realized it myself but when I noticed that happening before I thought it was a small bug...

But yeah overall I really liked this game. Hopefully there's plans to add this one to the AGS database
[close]

#20
Quote from: Stupot on Tue 25/02/2025 04:19:33How are we getting on, campers?
Quote from: Stupot on Tue 25/02/2025 04:19:33How are we getting on, campers?

The theme this month really didn't resonate that much with me, so I definitely won't be making a full fledged adventure game, but I had a funny idea, which I might make.
SMF spam blocked by CleanTalk