GRIDSLER

Developed or developing a new product in PureBasic? Tell the world about it.
User avatar
Psychophanta
Always Here
Always Here
Posts: 5153
Joined: Wed Jun 11, 2003 9:33 pm
Location: Anare
Contact:

GRIDSLER

Post by Psychophanta »

GRIDSLER is a game and it is the name of last creation.

No instructions, not needed for smart people like you :wink:
Just press left CTRL if you have no exit...
http://www.zeitgeistmovie.com

while (world==business) world+=mafia;
milan1612
Addict
Addict
Posts: 894
Joined: Thu Apr 05, 2007 12:15 am
Location: Nuremberg, Germany
Contact:

Post by milan1612 »

Nice one, I made it twice to the level with the magnets but no further yet... :)
Windows 7 & PureBasic 4.4
User avatar
Comtois
Addict
Addict
Posts: 1431
Joined: Tue Aug 19, 2003 11:36 am
Location: Doubs - France

Post by Comtois »

Thank you , i like this game :D
Please correct my english
http://purebasic.developpez.com/
User avatar
IceSoft
Addict
Addict
Posts: 1695
Joined: Thu Jun 24, 2004 8:51 am
Location: Germany

Post by IceSoft »

2,36 MB that's lot of storage for such a small game ;-)
Belive! C++ version of Puzzle of Mystralia
Bug Planet
<Wrapper>4PB, PB<game>, =QONK=, PetriDish, Movie2Image, PictureManager,...
User avatar
Rook Zimbabwe
Addict
Addict
Posts: 4322
Joined: Tue Jan 02, 2007 8:16 pm
Location: Cypress TX
Contact:

Post by Rook Zimbabwe »

7z? Ay!!!
Binarily speaking... it takes 10 to Tango!!!

Image
http://www.bluemesapc.com/
User avatar
Rook Zimbabwe
Addict
Addict
Posts: 4322
Joined: Tue Jan 02, 2007 8:16 pm
Location: Cypress TX
Contact:

Post by Rook Zimbabwe »

sorry... double post for some reason!
Last edited by Rook Zimbabwe on Thu May 22, 2008 8:02 pm, edited 1 time in total.
Binarily speaking... it takes 10 to Tango!!!

Image
http://www.bluemesapc.com/
User avatar
Comtois
Addict
Addict
Posts: 1431
Joined: Tue Aug 19, 2003 11:36 am
Location: Doubs - France

Post by Comtois »

Nice level :)

may be you can add password to start at any level already done ?

Image
Please correct my english
http://purebasic.developpez.com/
User avatar
Psychophanta
Always Here
Always Here
Posts: 5153
Joined: Wed Jun 11, 2003 9:33 pm
Location: Anare
Contact:

Post by Psychophanta »

Comtois wrote:Nice level :)

may be you can add password to start at any level already done ?
Hehe, Yes, I had thought about it.
I'll do now.
But first finish all the stages (there are few)... :D

BTW: the black holes are slighty different of blue holes coz black holes don't match with blue cells (line-match cells) and blue holes do.
http://www.zeitgeistmovie.com

while (world==business) world+=mafia;
User avatar
Psychophanta
Always Here
Always Here
Posts: 5153
Joined: Wed Jun 11, 2003 9:33 pm
Location: Anare
Contact:

Post by Psychophanta »

Psychophanta wrote:
Comtois wrote:Nice level :)

may be you can add password to start at any level already done ?
Hehe, Yes, I had thought about it.
I'll do now.
But first finish all the stages (there are few)... :D

BTW: the black holes are slighty different of blue holes coz black holes don't match with blue cells (line-match cells) and blue holes do.
EDIT:
Done, now there is generated a stage key 40 bytes file. Thus you can continue with your last stage. No excuses now, hehe.
IceSoft wrote:2,36 MB that's lot of storage for such a small game ;-)
Damn!, i know, it is due to the .s3m modules (the modplug lib has the fault :wink: )
http://www.zeitgeistmovie.com

while (world==business) world+=mafia;
User avatar
Demivec
Addict
Addict
Posts: 4270
Joined: Mon Jul 25, 2005 3:51 pm
Location: Utah, USA

Post by Demivec »

I've tried executing the file after unpacking it with a 7zip file manager and don't get anything. I'm using XP sp3.

I don't even get a window or anything in the taskbar. I have to end the program from the task-manager.

Is there something else I can try?
DarkDragon
Addict
Addict
Posts: 2345
Joined: Mon Jun 02, 2003 9:16 am
Location: Germany
Contact:

Post by DarkDragon »

Well opening the link in firefox just opens the file as if it would be a textfile.
Maybe you should contact your provider (Or do it yourself if you are the provider) - the mime types are invalid for this.
bye,
Daniel
User avatar
Psychophanta
Always Here
Always Here
Posts: 5153
Joined: Wed Jun 11, 2003 9:33 pm
Location: Anare
Contact:

Post by Psychophanta »

@Demivec, i do nothing rare.
I call this macro which is what i use commonly:

Code: Select all

Macro StartScreen(title="Full Screen")
  bitplanes.b=32
  SCREENWIDTH.l=1024:SCREENHEIGHT.l=3*SCREENWIDTH/4
  If InitMouse()=0 Or InitSprite()=0 Or InitSprite3D()=0 Or InitKeyboard()=0 Or InitSound()=0
    MessageRequester("Error","Can't access DirectX",0):End
  EndIf
  While OpenScreen(SCREENWIDTH,SCREENHEIGHT,bitplanes.b,title#)=0
    If bitplanes.b>16:bitplanes.b-8
    ElseIf SCREENHEIGHT>600:SCREENWIDTH=800:SCREENHEIGHT=600
    ElseIf SCREENHEIGHT>480:SCREENWIDTH=640:SCREENHEIGHT=480
    ElseIf SCREENHEIGHT>400:SCREENWIDTH=640:SCREENHEIGHT=400
    ElseIf SCREENHEIGHT>240:SCREENWIDTH=320:SCREENHEIGHT=240
    ElseIf SCREENHEIGHT>200:SCREENWIDTH=320:SCREENHEIGHT=200
    Else:MessageRequester("VGA","Can't open Screen!",0):End
    EndIf
  Wend
EndMacro
It opens a 1024x768x32 Full screen :roll:
http://www.zeitgeistmovie.com

while (world==business) world+=mafia;
User avatar
flaith
Enthusiast
Enthusiast
Posts: 704
Joined: Mon Apr 25, 2005 9:28 pm
Location: $300:20 58 FC 60 - Rennes
Contact:

Post by flaith »

That's the kind of game i like to play with, and really addictive

Thanks :D
“Fear is a reaction. Courage is a decision.” - WC
User avatar
Demivec
Addict
Addict
Posts: 4270
Joined: Mon Jul 25, 2005 3:51 pm
Location: Utah, USA

Post by Demivec »

Psychophanta wrote:@Demivec, i do nothing rare.
...
It opens a 1024x768x32 Full screen :roll:
A simple reBoot fixed the problem. Great game. I like this style. This kind of game can also be done with randomly created boards in addition to the designed ones.
User avatar
Psychophanta
Always Here
Always Here
Posts: 5153
Joined: Wed Jun 11, 2003 9:33 pm
Location: Anare
Contact:

Post by Psychophanta »

Ok, hehe, looks like Demivec was the first finishing this preview. :wink:

It is not too difficult to reach the end ... and there is a little gift there :wink:

BTW: any bug report is welcome

EDIT: the ending stuff song is not my tribute to Jochen Hippel as there is said in the scrolling text (i decided to change it and i included another different mod, but i forgot to change the scrolling text). Now is fixed.
http://www.zeitgeistmovie.com

while (world==business) world+=mafia;
Post Reply