Search found 11 matches

by Jago
Sun Apr 08, 2012 9:57 pm
Forum: Applications - Feedback and Discussion
Topic: The Vampyres of Funnydale - PB 4.60 game
Replies: 16
Views: 6053

Re: The Vampyres of Funnydale - PB 4.60 game

Awesome game! Have you thought about adding some graphics?
by Jago
Sun Feb 20, 2011 1:52 pm
Forum: Game Programming
Topic: Tank shooter game
Replies: 0
Views: 1775

Tank shooter game

Here's a game project I've been working on for some time now. It's a tank shooter game like Scorched Earth with simple graphics. This is very early version of the game and there's only two human players and three rounds. I have the basic game mechanics working and the shop is quite ready. So, please ...
by Jago
Sat Jan 08, 2011 6:11 pm
Forum: Game Programming
Topic: Lotto Simulator (WIP)
Replies: 14
Views: 5309

Re: Lotto (WIP)

eesau wrote:In Finland it's 7 out of 39, so chance comes up to 1/15 380 937.
Plus three extra numbers, so it's 7+3 numbers.
by Jago
Fri Dec 31, 2010 3:29 pm
Forum: Off Topic
Topic: Happy New Year
Replies: 101
Views: 20875

Re: Happy New Year

My New Year's resolution is: I promise to finish at least game project during the year 2011.
by Jago
Fri Sep 24, 2010 3:01 pm
Forum: Coding Questions
Topic: Sprite drawing problem
Replies: 4
Views: 1046

Re: Sprite drawing problem

Thank you, for all. Problem solved.
by Jago
Wed Sep 22, 2010 3:09 pm
Forum: Coding Questions
Topic: Sprite drawing problem
Replies: 4
Views: 1046

Sprite drawing problem

I'm trying to draw a tile map using sprites. The map is stored in a two dimensional array cells(35,25). Each cell has a type (wall or floor) and sprite. Problem is that when i try to loop through the array and display every sprite, the program just shows a light grey screen. Sprites are displayed ...
by Jago
Wed Sep 15, 2010 7:05 am
Forum: Coding Questions
Topic: Map problem
Replies: 9
Views: 1564

Re: Map problem

Thanks for your help. I couldn't have ever figured that out.
by Jago
Tue Sep 14, 2010 8:33 pm
Forum: Coding Questions
Topic: Map problem
Replies: 9
Views: 1564

Re: Map problem

Here's the whole source for the game so far plus the weapons script. http://up.servut.us/25380
by Jago
Tue Sep 14, 2010 5:54 pm
Forum: Coding Questions
Topic: Map problem
Replies: 9
Views: 1564

Re: Map problem

So essentially your problem is with the printing. Show us the faulty code.
Don't think so, because the settings don't work in the game either. But here's the code anyway:
Procedure printWeapons()
ClearConsole()
ForEach weapons()
PrintN("Name: " + MapKey(weapons()))
PrintN("Damage: " + Str ...
by Jago
Tue Sep 14, 2010 4:42 pm
Forum: Coding Questions
Topic: Map problem
Replies: 9
Views: 1564

Re: Map problem

ReadFile() does succeed, and the parser prints out correct info during the process, but after that when I try to print out the info from the map there's nothing except the map key.
by Jago
Tue Sep 14, 2010 4:08 pm
Forum: Coding Questions
Topic: Map problem
Replies: 9
Views: 1564

Map problem

So, I'm creating a shooting game which reads all its weapons from a script an then uses a structured map to store the wepon information. Problem is that the information doesn't seem to go into the map. When I print out weapons attributes, it's just zero after zero. Can anybody help? Here's the ...