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

#41
The Rumpus Room / Re: What's on TV?
Sun 11/11/2018 15:03:33
You are correct. I suppose you didn't like it much as you only watched a few episodes? I think it's a pretty special show with lots of laughs but also sad and hard hitting bits. It's such a weird mix of the two.
#42
The Rumpus Room / Re: What's on TV?
Sun 11/11/2018 14:51:03

Here's another screenshot. As you can see the show is not actually in black and white. Only the first part of the second season is.
#43
The Rumpus Room / Re: What's on TV?
Sun 11/11/2018 10:25:34
Looks like I really killed this topic. If anyone wants me to post another screenshot please let me know. Otherwise someone else feel free to post a new one.
#44
The Rumpus Room / Re: What's on TV?
Sun 04/11/2018 13:21:15
Allow me to post a show I never really hear anyone talk about but I personally really like:

#45
The Rumpus Room / Re: What's on TV?
Tue 30/10/2018 16:38:55
Looks like the Trailer park boys cast but I don't remember anything like the screenshots. Is it from the new season?
#46
The Rumpus Room / Re: *Guess the Movie Title*
Sun 07/10/2018 16:18:16
Yes that was an easy one, if you've seen it. Great movie though
#47
The Rumpus Room / Re: *Guess the Movie Title*
Sun 07/10/2018 09:03:16
Yeah Room is a great movie. Had it been "The Room" though, I would have guessed it even faster probably :=

#48
The Rumpus Room / Re: *Guess the Movie Title*
Fri 05/10/2018 17:38:54
Room?
#49
The Rumpus Room / Re: *Guess the Movie Title*
Tue 11/09/2018 17:41:56
Dallas Buyers Club?
#50
The Rumpus Room / Re: *Guess the Movie Title*
Sun 09/09/2018 08:38:21
Okja?
#51
Quote from: Danvzare on Wed 29/08/2018 12:09:42
Personally, I'm still upset with them removing the button that found the same image in several sizes. That used to be brilliant at finding the original source of an image. :~(

Unless they moved the button and I just can't find it anymore. :-\

You mean Google images?
https://images.google.com/

Quote from: Slasher on Thu 30/08/2018 04:25:45
Now Google wants to bill you to have Google Maps!

I feel an IE coming on!

I don't get what you mean. Google maps is still free on Google Play. I still have it on my phone and tablet and not getting any charges there.
#52
The Rumpus Room / Re: Name the Game
Sun 26/08/2018 10:32:15
Looks like some kind of Virtua Cop game, with the crosshair around the target.
#53
I don't know how long you were gone but I played Fridge Follies at some point.
#54
The Rumpus Room / Re: *Guess the Movie Title*
Tue 14/08/2018 20:51:27
Are we not even posting screenshots of the actual movies anymore? :=
#55
There is also a Panorama module that might help you achieve the desired effect:

http://www.adventuregamestudio.co.uk/forums/index.php?topic=27632.0
#56
I've send you a PM. Thanks for the dependency chart suggestion. I don't think I would have had time for something like that in this MAGS but it sure could be helpful in future endeavors.
#57
Getting a listbox with all the inventory items in the game, that you can add/remove to the player's inventory, is very possible.

Get all the items into the listbox on your GUI.
Code: ags

function game_start() 
{
    for (int i = 1; i < Game.InventoryItemCount + 1; i++)
        lbInventory.AddItem(inventory[i].Name);

}


Add/remove an inventory item:
Code: ags

function btnGiveInv_OnClick(GUIControl *control, MouseButton button)
{
    player.AddInventory(inventory[lbInventory.SelectedIndex + 1]);
}

function btnRemoveInv_OnClick(GUIControl *control, MouseButton button)
{
    player.LoseInventory(inventory[lbInventory.SelectedIndex + 1]);
}


You can't really do something similar for Global variables though. There's no way to know how many global variables exist and what they are (script wise). So you will have to do those manually.

There is a function to reset a room but it can't be the current room unfortunately. What you could do is make room for debugging and change the current room to that. Then in that room do something like this:
Code: ags

function room_AfterFadeIn()
{
    ResetRoom(RoomToReset);
    player.ChangeRoom(RoomToReset);
}


Where "RoomToReset" is a global int that you set to the current room before you change.
#58

Sorry for the delay in giving my feedback.

Stories of the unexpected: 'Until further notice' by Slasher
Spoiler

Pretty fun game with a nice story. As others have said, some things felt out of place like the laptop and eye scanner but it didn't distract me too much. The felt fitting for the era but sometimes it was cracking up a bit. Maybe it was hard to find music from the 60s that is high quality. The graphics did their job but seem a bit rushed. Overall an enjoyable experience. I do wonder what you could achieve if you would take more time to develop your game.
[close]

The Lightning Spell by myself
Spoiler

I'm very glad that people like the graphics. I have long struggled to find a good graphics style for my games. Especially characters were always a problem because I felt I was never good at organic shapes. I'm finally at a level where I can be happy with the graphics. Nice that most people also enjoyed the humor. I know that game turned out very short. Puzzles are really my weak point. But I'm still glad I got a few in there. A few people have commented that I should make a long version of the game with same graphics. I'm not sure if I will do that. I think I would need a more solid game idea to build on. Maybe in the future I could team up with someone who would do the story/puzzles while I do graphics.
[close]

WELCOME TO NOD RIVER by Mandle
Spoiler

Yes! Love me some Twilight Zone. The video at the start seems kind of slow in frame rate but it's cool none the less. Interested to see what you will do with it in the future.
[close]

The Shaft by Kastchey
Spoiler
Very nice setting and atmosphere you've created here. The graphics are cool but sometimes a little hard to read. This is especially true for the Inventory GUI and some of it's items. The puzzles were great and seemed logical. It's very clear that you have a much better approach to puzzle design than I have.
[close]

Pizza Calls by VampireWombat
Spoiler

There is some sort of David Lynch vibe going on in this game. I liked that but for the rest it felt very unfinished. Like how for example you could get the phone and the battery and you would think that you would need to combine those things, but it's not possible. By the way, you left debug mode on (as did I at first).
[close]

I voted for
Spoiler
The Shaft
[close]
#59
It just goes to Filedropper for me. Maybe Katschey already changed the link?

Anyway I'm going to try out each game today and give some feedback. Thanks everyone who already gave feedback about my game, I really appreciate it.
#60
Whoops! :embarrassed:
Spoiler
Made a typo on the final check to see if you have all the items. I'll fix this soon.
[close]

Should be fixed now.

SMF spam blocked by CleanTalk