The original Simon the Sorcerer stands out with 203 unique backgrounds (
). To be fair, some of them are swapped around in the maze-like forest and have neither puzzles nor interactive objects, they are just there to look awesome.

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 MenuQuote from: qptain Nemo on Thu 27/02/2014 23:37:46
To be honest I think it's a mistake to present this as a MI fangame. It sounds like a relatively decent concept, and even though it draws obvious inspiration from MI it could stand on its own legs if done well.
Quote from: Baron on Thu 27/02/2014 02:37:47
None of us have time: you gotta make time!
int iFileTracker = 0; // variable to iterate savegame box
int cMaxSaves = 100; // how many saves are allowed, at max
int cMaxFiles = 15; // mow many saves can be shown at once in the file list
function btnFilesScrollUp_OnClick(GUIControl *control, MouseButton button)
{
lstFiles.SelectedIndex = -1;
if (iFileTracker < 5)
iFileTracker = 0;
else
iFileTracker -= 5;
lstFiles.TopItem = iFileTracker;
}
// scroll file list down
function btnFilesScrollDown_OnClick(GUIControl *control, MouseButton button)
{
lstFiles.SelectedIndex=-1;
// we advance the list by five...
iFileTracker += 5;
// then we check if there would be "empty fields" in the list
// if that is the case, we manually calculate the stopsaveitem
if (iFileTracker > cMaxSaves - cMaxFiles)
iFileTracker = cMaxSaves - cMaxFiles;
lstFiles.TopItem=iFileTracker;
}
Quote from: janosbiro on Thu 20/02/2014 14:21:08Aye, there was solid talk about it back in '10. Mix of live-action and CGI, but nothing has come of it yet.
There was someone making a Gargoyles movie too? I mean, those from the cartoon?
Quote from: Dualnames on Fri 21/02/2014 02:06:44
I think Nelly Cootalot, made a great buildup to its kickstarter.
Quote from: Ryan Timothy on Thu 20/02/2014 12:43:09You mean the one that does not suck?
They're finally making Indiana Jones 4!
Quote from: janosbiro on Wed 19/02/2014 18:43:17
a rogue-like version of Alone in the Dark.
Quote from: Saltwater Taffy on Wed 19/02/2014 17:33:05
Anyone know of any good forums/communities to look for collab/commission work?
Quote from: monkey424 on Wed 19/02/2014 11:52:31
Did you try turning it off and on again?
Quote from: Frodo on Wed 19/02/2014 05:53:43
But it's mine. It came to me on my birthday.
Quote from: NickyNyce on Tue 18/02/2014 17:52:42
I apologize in advance if I'm totally out of line here. I got carried away. [/spoiler]
Quote from: Ewery1 on Tue 18/02/2014 02:38:16
I'm too lazy to take screenshots
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.447 seconds with 15 queries.