Dimension 55355 - source code

Post here your demos and examples with the source files.
Forum rules
Always post the games with a screenshot.
The file must have the ged and data files (complete game source)
Use the forum attachment to post the files.
It is always better to use the first post to put the game files

Re: Dimension 55355 (FULL GAME) - source code!

Postby Bee-Ant » Wed Mar 23, 2011 2:13 am

lcl wrote:What level are you currently in?

Haven't tried this full version, but already tried the demo version.
If the 4 or so first level still the same, I was stuck in the level with so many doors.
You should at least give a unique treat for each room so that I wouldn't lost...
For example you give a number or something...

Well, I shall try the full version for newer update anyway :)
User avatar
Bee-Ant
 
Posts: 3723
Joined: Wed Apr 11, 2007 12:05 pm
Location: http://www.instagram.com/bee_ant
Score: 210 Give a positive score

Re: Dimension 55355 (FULL GAME) - source code!

Postby lcl » Wed Mar 23, 2011 5:52 am

Oh..
Yeah I know those levels with many doors are irritating..
But I promise you that there is much better levels waiting for you.

The source code version has also many updates since the demo that you played. :D
User avatar
lcl
 
Posts: 2339
Joined: Thu Mar 25, 2010 5:55 pm
Location: Finland
Score: 276 Give a positive score

Re: Dimension 55355 (FULL GAME) - source code (now updated)!

Postby jinaemage » Wed Mar 23, 2011 12:52 pm

The game is good although it looks like a classic game. I just passed the first level so I am excited to end this game. I think you may love to update the game and put more levels to finish.
Last edited by jinaemage on Wed Apr 13, 2011 12:03 pm, edited 1 time in total.
jinaemage
 
Posts: 1
Joined: Tue Mar 22, 2011 10:36 am
Score: 0 Give a positive score

Re: Dimension 55355 (FULL GAME) - source code!

Postby Bee-Ant » Wed Mar 23, 2011 2:26 pm

lcl wrote:Yeah I know those levels with many doors are irritating..

I wasn't irritated :)
This game has something that keeps me wondering what will the next level would be...
But, I was just clueless on what to do since it lacks even a little hint on that level :D

Also, in the demo you can't die right?
If you could, I would be already dead 10 times or so...
Please decrease the number of the spikes, they're horrible...haha

Well, anyhow it's still interesting to play.
Nice work lcl. respect for ya! :D
User avatar
Bee-Ant
 
Posts: 3723
Joined: Wed Apr 11, 2007 12:05 pm
Location: http://www.instagram.com/bee_ant
Score: 210 Give a positive score

Re: Dimension 55355 (FULL GAME) - source code (now updated)!

Postby lcl » Wed Mar 23, 2011 2:30 pm

Yeah you can't die in demo but in this full game you can.
:D if you die you can always continue game by loading your saved game :D

Thanks! :)
User avatar
lcl
 
Posts: 2339
Joined: Thu Mar 25, 2010 5:55 pm
Location: Finland
Score: 276 Give a positive score

Re: Dimension 55355 (FULL GAME) - source codes (now updated)

Postby Turon » Wed Mar 23, 2011 3:23 pm

Good game! But how did you add the time limit? :D :wink:
Turon
 
Posts: 862
Joined: Sun Jan 24, 2010 5:23 pm
Score: 32 Give a positive score

Re: Dimension 55355 (FULL GAME) - source code (now updated)!

Postby lcl » Wed Mar 23, 2011 3:30 pm

You can look it from the source code.. But actually, it's like this:

var is actor variable that I used for many actors.
decrease is integer which value has been set to 5 in the score actors create actor event.
points is integer that holds the current amount of points, there is start numbers for every level in
global code - Level Scores

this code is taken from score - draw actor
Code: Select all
var ++;
if (var >= real_fps)
{
    if (points > 0) //If there is more points than 0, reduce 5 per second.
    {
        points -= decrease;
    }
    var = 0;
}
if (points < 0)
{
    points = 0;
}


:)

EDIT:
or if you meant that time limit causing the game close, it was bug and is now fixed.. :D
Last edited by lcl on Wed Mar 23, 2011 4:52 pm, edited 1 time in total.
User avatar
lcl
 
Posts: 2339
Joined: Thu Mar 25, 2010 5:55 pm
Location: Finland
Score: 276 Give a positive score

Re: Dimension 55355 (FULL GAME) - source code (now updated)!

Postby schnellboot » Wed Mar 23, 2011 4:13 pm

link is broken
schnellboot
 
Posts: 819
Joined: Sat Mar 31, 2007 1:35 pm
Location: Germany
Score: 102 Give a positive score

Re: Dimension 55355 (FULL GAME) - source code (now updated)!

Postby lcl » Wed Mar 23, 2011 4:18 pm

schnellboot wrote:link is broken

Yeah, I'm updating this..
Found very annoying bug from the previous version..
User avatar
lcl
 
Posts: 2339
Joined: Thu Mar 25, 2010 5:55 pm
Location: Finland
Score: 276 Give a positive score

Re: Dimension 55355 (FULL GAME) - source code (now updated)!

Postby lcl » Wed Mar 23, 2011 4:19 pm

!IMPORTANT!

There is VERY big and annoying bug in the older version of the game.
It shuts down by itself.

If your version shuts down by itself, please download the new one.
User avatar
lcl
 
Posts: 2339
Joined: Thu Mar 25, 2010 5:55 pm
Location: Finland
Score: 276 Give a positive score

Re: Dimension 55355 (FULL GAME) - source code (final update)

Postby Hblade » Fri Mar 25, 2011 11:32 am

Remaaaarkable :D:D (I forgot what level I was on when I stopped but it got HARD O.o but thats AWESOME :D i'ma play some more later)
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: Dimension 55355 (FULL GAME) - source code (now updated)!

Postby Hblade » Fri Mar 25, 2011 11:34 am

jinaemage wrote:The game is good although it looks like classical games. I just pass the first level so I am excited to end this game. I think you may love to update the game and put more levels to finish.


What in god's name are you talkin' about, son?
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: Dimension 55355 (FULL GAME) - source code (final update)

Postby lcl » Fri Mar 25, 2011 11:50 am

Hblade wrote:Remaaaarkable :D:D (I forgot what level I was on when I stopped but it got HARD O.o but thats AWESOME :D i'ma play some more later)


Thank you! :D
User avatar
lcl
 
Posts: 2339
Joined: Thu Mar 25, 2010 5:55 pm
Location: Finland
Score: 276 Give a positive score

Re: Dimension 55355 (FULL GAME) - source code (final update)

Postby Hblade » Fri Mar 25, 2011 11:51 am

no prob :D:D
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: Dimension 55355 (FULL GAME) - source code (final update)

Postby MrJolteon » Thu Apr 14, 2011 6:10 pm

How can I add a menu option that opens an url? It would be useful in the version I uploaded to GameJolt(No, I won't replace the Contact lcl option)(Yes, I wrote that I didn't make the game)
Join us on Discord!
Game Editor 2
These are the best ways to reach me these days


Your local Community Janitor, always lurking in the shadows...
User avatar
MrJolteon
 
Posts: 2326
Joined: Sat Aug 09, 2008 3:25 pm
Location: Stranded under endless sky
Score: 105 Give a positive score

PreviousNext

Return to Game Demos

Who is online

Users browsing this forum: No registered users and 1 guest