Gamestudio Links
Zorro Links
Newest Posts
Data from CSV not parsed correctly
by jcl. 04/26/24 11:18
M1 Oversampling
by jcl. 04/26/24 11:12
Why Zorro supports up to 72 cores?
by jcl. 04/26/24 11:09
Eigenwerbung
by jcl. 04/26/24 11:08
MT5 bridge not working on MT5 v. 5 build 4160
by EternallyCurious. 04/25/24 20:49
Trading Journey
by howardR. 04/24/24 20:04
Zorro FIX plugin - Experimental
by flink. 04/21/24 07:12
Scripts not found
by juergen_wue. 04/20/24 18:51
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (Ayumi, AndrewAMD), 822 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
wandaluciaia, Mega_Rod, EternallyCurious, howardR, 11honza11
19049 Registered Users
Previous Thread
Next Thread
Print Thread
Rating: 5
Page 167 of 554 1 2 165 166 167 168 169 553 554
Re: What are you working on? [Re: ratchet] #403059
06/13/12 20:45
06/13/12 20:45
Joined: Nov 2007
Posts: 2,568
Germany, BW, Stuttgart
MasterQ32 Offline
Expert
MasterQ32  Offline
Expert

Joined: Nov 2007
Posts: 2,568
Germany, BW, Stuttgart
Some innovative FPS with many strategic elements
Movement + Animation Blending:
http://youtu.be/GAFrwMidjnw


Visit my site: www.masterq32.de
Re: What are you working on? [Re: MasterQ32] #403146
06/14/12 22:56
06/14/12 22:56
Joined: Jul 2002
Posts: 3,208
Germany
Error014 Offline
Expert
Error014  Offline
Expert

Joined: Jul 2002
Posts: 3,208
Germany
Thanks, ratchet!

The game's in no fit state to be played right now (debug stuff all over the place!), but we're getting there - I guess the finished game can be seen in the distance, and not too far away. laugh
We'll let you guys know as soon as this thing is playable! laugh


Perhaps this post will get me points for originality at least.

Check out Dungeon Deities! It's amazing and will make you happy, successful and almost certainly more attractive! It might be true!
Re: What are you working on? [Re: Error014] #403202
06/16/12 10:20
06/16/12 10:20
Joined: Apr 2008
Posts: 2,488
ratchet Offline OP
Expert
ratchet  Offline OP
Expert

Joined: Apr 2008
Posts: 2,488
Cool i find some similar game with super retro graphics on IndieDB !
Even more , they use less color to make it look like old Nes games laugh

http://www.indiedb.com/games/soldier-of/images/3d-terminals#imagebox

Re: What are you working on? [Re: ratchet] #403212
06/16/12 16:01
06/16/12 16:01
Joined: Jun 2009
Posts: 258
behind this enternet window
zeusk Offline
Member
zeusk  Offline
Member

Joined: Jun 2009
Posts: 258
behind this enternet window
Hi guys! long time no see!

I've been working on a lot of new stuff centered around modeling characters for my new 3d assets store thats going to be up and online soon. The first model pack will be a standard medevil fantasy pack. Heres some preview images of one of the characters:

Goblin Foot Soldier -







The pack will include a Demon, Knight, Mage, lesser Dragon, and this Goblin

Re: What are you working on? [Re: zeusk] #403223
06/16/12 17:51
06/16/12 17:51
Joined: Apr 2008
Posts: 2,488
ratchet Offline OP
Expert
ratchet  Offline OP
Expert

Joined: Apr 2008
Posts: 2,488
The goblin needs a belt really !
The pants are just a painted color, it would need some real separation with upper body !

The boots are too simple, they wouldn't last a lot if they were pure cloth, you need to add more things , more strong material under the foot !

What toos do you use ?

I find color too much green but perhaps it's personnal taste ?

goblin colors

other colors

Don't you continue on your original game ? It had some original character and a good start !

Last edited by ratchet; 06/17/12 21:16.
Re: What are you working on? [Re: ratchet] #403249
06/17/12 00:58
06/17/12 00:58
Joined: Dec 2009
Posts: 256
USA , NY
msmith2468 Offline
Member
msmith2468  Offline
Member

Joined: Dec 2009
Posts: 256
USA , NY
Hello

I have been working on creating an Infinite Terrain Generation system. The terrain is generated randomly and the maximum height can easily be set as well as vegetation and ground textures. The ground textures are blended to make the terrain flow. It is easy to restrict vegetation to specific ground textures and easy to restrict specific ground textures to specific terrain heights.

It still needs some work and I have some plans to make the program run better. as of now terrain is randomly generated and places that the player visits can not be visited again. I believe I have a method in mind that would save the terrain that the player has been to so that if they return it will look the same.

Any ways You can watch a short video HERE!



Last edited by msmith2468; 06/17/12 01:00.

Mikes Wicked Games

www.mikeswickedgames.com
Re: What are you working on? [Re: msmith2468] #403260
06/17/12 08:14
06/17/12 08:14
Joined: Nov 2011
Posts: 274
de
lemming Offline
Member
lemming  Offline
Member

Joined: Nov 2011
Posts: 274
de
nice goblin, although he looks like his best days have already passed and got retired =D. But it's good to have not always the same grimm and evil looking ones.

@msmith: cool idea, you could use a pseudo-random algorithm and a seed to generate the terrain.

Re: What are you working on? [Re: msmith2468] #403261
06/17/12 08:14
06/17/12 08:14
Joined: Jun 2006
Posts: 2,640
Earth
Germanunkol Offline
Expert
Germanunkol  Offline
Expert

Joined: Jun 2006
Posts: 2,640
Earth
Nice work msmith!
What's your idea on saving the terrain?
I believe if you do random_seed(my.x+my.x) whenever you create a new entity at (x,y), then you will get unique numbers for each tile, that are the same every time you run past that tile.
You might have to take the absolute value of the thing though, in which case you might get a point-symmetry around the origin. To avoid this, you can try:
random_seed(absv(my.x+my.y + sign(my.y)*my.x+ sign(my.x)*my.y))
or something like that.
random calls after that will always produce the same numbers, but only for the same tiles.

This means you don't have to save anything. Or, if you do want to save something, at least you don't have to save everything tongue


Last edited by Germanunkol; 06/17/12 08:14.

~"I never let school interfere with my education"~
-Mark Twain
Re: What are you working on? [Re: Germanunkol] #403265
06/17/12 08:42
06/17/12 08:42
Joined: Apr 2008
Posts: 2,488
ratchet Offline OP
Expert
ratchet  Offline OP
Expert

Joined: Apr 2008
Posts: 2,488
Your infinite terrain generation is not bad, but it looks very flat and the same everywhere ?
You should make big variations on terrain height perhaps, and why not some texture variation using multitexture, put some whater plane, this way on very low height there would be water.
Trees variation also, rocks placement ... all that to find a non "looking the same everywhere" terrain laugh

Keep it up !

Re: What are you working on? [Re: ratchet] #403284
06/17/12 17:47
06/17/12 17:47
Joined: Apr 2005
Posts: 795
U.S.A. Michigan
exile Offline
User
exile  Offline
User

Joined: Apr 2005
Posts: 795
U.S.A. Michigan


A nice little beauty shot of the Cr-17 Arion, assault rifle from my game "Fallen Steel" (Made entirely in med, keep in mind I am not a modeller/artist)

Page 167 of 554 1 2 165 166 167 168 169 553 554

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1