Page 1 of 1

PBsnake

Posted: Sun Dec 02, 2007 10:11 pm
by IceSoft
Here a new PB* game: PBsnake
"No Wall. Eat the green frogs."

Download:
PBsnake.zip

Screenshot:
Image

Posted: Tue Dec 04, 2007 12:16 pm
by Baldrick
lol,
maybe you should reduce fps to about 20 for my poor slow old reactions but :lol:

Posted: Wed Dec 05, 2007 9:24 pm
by IceSoft
New version uploaded.
See first entry for screenshot and download link.

Posted: Thu Dec 06, 2007 12:15 am
by SCRJ
Hi

Good game, but still to fast to play at the begin (for me).
You could set a higher frame rate for higher levels, but it should be easy to start.

Posted: Thu Dec 06, 2007 8:19 pm
by Hroudtwolf
Hi,

Nice oldskool game.
But SCRJ is right....
It is not a good way to set down the framerate by freezing the applikation.
Just use a timer which is updating your gameobject each timeticks.

Code: Select all

*ObjectManager\SendMessage ("timer" , #MSG_SETTIME , 100 , #OM_MSG_UPDATEOBJECTS)
Repeat
   ClearScreen (Settings\BackgroundColor)
   If *ObjectManager\MsgQueue (@msg)
      Select msg\lMsgID
         Case #OM_MSG_UPDATEOBJECTS
         *ObjectManager\UpdateByType (#OM_OBJECTTYPE_GO)
         *ObjectManager\SendMessage ("timer" , #MSG_SETTIME , 100 , #OM_MSG_UPDATEOBJECTS)
      EndSelect
   EndIf
   *ObjectManager\DrawByType (#OM_OBJECTTYPE_GO)
   ; Other stuff
   ;...
   ;...
   FlipBuffers ()
   Delay (5)
ForEver

Posted: Thu Dec 06, 2007 10:08 pm
by IceSoft
v0.2
- some improvements (grafic set)
- bugfixes

Posted: Sat Dec 08, 2007 1:09 am
by IceSoft
v0.3

- Red Frog (poison)
- IYou have 20 sec to eat one frog or you will killed
- Different points

Posted: Mon Dec 10, 2007 12:24 pm
by IceSoft
New Version: PBsnake 0.3a

- Add the sweet bitmap font with ICE_Sprite3DFont userlib.
- small Gimmick (rotating color slice)

Posted: Tue Dec 11, 2007 6:38 am
by X
Any chance for a two player version over a network? :)

Posted: Tue Dec 11, 2007 7:05 am
by IceSoft
X wrote:Any chance for a two player version over a network? :)
We will see...

Posted: Tue Dec 11, 2007 10:35 pm
by IceSoft
v0.4
- Background music
- New food: Bugs = -1 Point

Posted: Tue Dec 11, 2007 11:59 pm
by IceSoft
v0.4b
- #NULLs Bugmessage fixed
- Background music is off (default) (Switch On/Off with key: 'M')


v0.4a:
You can switch the music on/off with key 'M'

Posted: Tue Dec 18, 2007 9:23 am
by IceSoft
v0.5 Uploaded.

@Dasix Bugmessages fixed:
- Snake is on piece longer as displayed
- New red frog is to near created to the snake head in a new level

Improved some grafic sets (snake and background)

Posted: Thu Feb 21, 2008 4:52 pm
by DriakTravo
Hey this is a cool game you are working on, I made one similar in PB a few years ago, yours is so much better though =p

I called mine Pixel Glider

Download it here

Image