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 - stepsoversnails

#1
I'm talking about the black vertical borders that show up on the side when playing a game in fullscreen mode.
Sorry, i should have been clearer!
#2
Hi!
I was wondering if there was a way to change the colour of the letterbox.
I know it might seem like a trivial thing to change but it would really help me if it were possible!
thanks.
#3
Critics' Lounge / ZX Spectrum style game
Fri 25/09/2015 02:29:34
I wanted to share this video of a little ZX Spectrum style game i was making last year.
It was really just to see if i could pull it off. I might revisit the idea if i ever do a game jam.
enjoy!
https://vid.me/50kn
#4
My Gamma settings are fine and my game running in 32-bit (true-colour). I actually have an item in my game that is coloured with 255, 0, 0. That's how i noticed the pale text in the first place. and yeah i screen capped it to check what the RGB value was. It's of course not just the red that comes out pale in the text. it's any colour i set it to.
At the risk of unveiling my game early, here's a screen cap of the issue i'm facing:

I tried setting my game to 8-bit and the text showed as the right colour. it's pale in 16-bit, though.
#5
Hello!
So I have an issue with the colour of my speech text and message text. It's too pale!
For example, I'll set my characters speech colour to red (255, 000, 000) but when it shows on screen it's (255, 80, 80).
Here's the comparison:

I've tried everything! I've tried different fonts and made the colours darker to compensate but nothing works.
It might seem like I'm nit-picking but this is pretty important to me.
Any advice?
#6
So when i first found out about AGS, 3 years ago, i was very excited to make a game. I've since tried to design over 10 games, some big ideas and some small. I have this one great idea that i've become very protective of and feel, as an artist, it could be one of my greatest accomplishments. that being said, i've decided not to make it until i actually am better artistically and as a game designer. I'd hate to squander my great idea due to lack of experience. This thought led to the idea of making a "test game". But even when i try to make a game to simply test my skills, i get carried away. It's not like i'm over ambitious, which has been a problem before. it's more that i just want it to be a great game. even if it's just a test. I can't bring myself to let go of that and just freaking make something. I see people on these forums releasing great little games and i so badly want to contribute to that but i can't bring myself to lower expectations of myself and make something that i might not like in a few years time.
I suppose i just need some advice or something. Maybe somebody who understands can share their experience.
#7
I love these. you guys should set up an itunes store thingy.
#8
My search is working fine but I do know I've had problems with it before.
The flowchart and the puzzle explanations saved me from a world of hurt. Before I had been writing out puzzles a little bit like this: Get key> Use Key with door> Go to next room> Talk to frank. The only thing I've really changed about the doc is that I added coloured boxes to the flowchart that show when your objective changes.
#9
I've been designing an adventure game for at least two years now. Until recently it was spread over various notes, drawings and little tests done in the AGS editor. After reading the Design Document for Grim Fandango i decided it was the perfect format for my own design doc. So i was wondering if anybody else has used a similar system to Tim's Grim Fandango design document or if they follow a different method that maybe you got from another game or you completely designed yourself.
#10
having to replace an object with another object of equal weight, in a classic reference to raiders of the lost ark. Though i only remember that happening in Monkey Island 2 and Sam and Max hit the road.
#11
Quote from: Ryan Timothy on Fri 16/09/2011 02:50:18
We're currently playing around with the animation system I've coded. It uses two layers for the head and body. Used whenever characters talk or want to express a certain gesture/pose. It looks fantastic even though some of the quick gestures and expressions are programming graphics and we're still missing a few other expressions. It really adds a lot of life to this project. I can't wait to see the whole array of gestures completely done and in use.

Now I want to add some random blinking or itching/boredom animations whenever the character is standing around.

"That's amazing! I always wondered if it were possible to do that with AGS." stepsoversnails says, praying for a module or plugin.
#12
i don't really understand what you're asking. verbcoins were indeed short lived but they remain to be my favourite way of navigating through an adventure game. If you're looking for more games that use the interface you should check out full throttle. Also the special edition of monkey island 2 has a pretty interesting take on the coin. Left clicking brings up all the actions (from the original 9 verbs) you can actually perform on an object (some one should make an ags mod for that). and there a few ags games that use it too, though the only one that comes to mind right now is Nelly Cootalot.
#13
it king of sounds like Super Putty or Super Putty Squad on the SNES. Just without the shooting and turning into a robot.
#14
ah perfect. Except the animation speed. It seems if i set it to anything below 3 it doesn't animate and anything above 3 makes it move so fast it looks like a blur.
#15
thanks, that did the trick. This works great.
There are few things such as the character doesnt view his diagonal pose, he walks too slow and animates too fast and he cant jump onto higher platforms BUT i think i will have a tinker and try to figure out some of that stuff myself. Though don't hold your breath.
if i make this game someday you will be getting a big mention, Khris.
#16
Hmmm. AGS comes up with an error saying "undefined Symbol 'updown'".
Am i meant to have initiated this at some point?
#17
Thanks Khris. I think i even learnt a little.
The reason i used Getviewport was because it was the only thing i had any experience with.
I have the programming skills of a Bran Muffin.

Your code is great and i think i understand it well enough.
There are two main problems with it though. The Character doesn't animate while walking and it also doesn't obey walkable areas. I couldn't figure this out for myself without getting a bombardment of errors.
And another thing that isn't a problem but i feel i should mention, i still want the character to be able to move vertically and horizontally while only moving diagonally if the player presses up/left or down/right etc...

thank you for your time  ;D
#18
I just meant a platformer on an isometric view. The best example i can provide is a game called Whizz, which was on the super nintendo.

The only code i've been able to figure out so far is
Code: ags
	if (keycode == eKeySpace) {
		cEgo.Move (cEgo.x-GetViewportX(), cEgo.y-GetViewportY()-70, eBlock, eAnywhere);
		cEgo.Move (cEgo.x-GetViewportX(), cEgo.y-GetViewportY()+70, eBlock, eAnywhere);
	}
	
	if ((keycode == eKeySpace) && (keycode== eKeyLeftArrow)) {
		cEgo.Move (cEgo.x-GetViewportX()-30, cEgo.y-GetViewportY()-70, eBlock, eAnywhere);
		cEgo.Move (cEgo.x-GetViewportX()-30, cEgo.y-GetViewportY()+70, eBlock, eAnywhere);
	}


It mimics jumping when pressing space. Though when pressing Space and Left Ego still just goes straight up and then down. But really the script obviously has more serious problems than that. I don't know how i could do this without blocking the entire game while he jumps or how i could stop ego from landing on non walkable areas or how ego could land on higher platforms.


#19
I'm currently toying around with the Keyboard Movement Module, trying to create an Isometric Platformer.
I am, however, horrible at programming.
I'm not looking to do anything too fancy, in fact all i need to achieve right now is Jumping.
I tried every theory i had and none of them worked.
I'm really hoping someone might be able to nip this problem in the butt for me as it would help me achieve making a game i've dreamt of making since i was a kid.
#20
I'm having trouble scripting a button to animate while the mouse is over it. I'm sure it's not difficult and i'm just stupid.
SMF spam blocked by CleanTalk