The Daily Click ::. Forums ::. Non-Klik Coding Help ::. starcraft
 

Post Reply  Post Oekaki 
 

Posted By Message

SquishyGecko840



Registered
  28/11/2008
Points
  38
13th December, 2008 at 01:12:08 -

i was wondering if i can make a game simular to starcraft without haveing any a restrictive grid style movement

 
oh ya

http://www.afrankwillis.com/gallery/pet%20moose.jpg

Ricky

loves Left For Dead 2

Registered
  28/12/2006
Points
  4175

Has Donated, Thank You!Game of the Week WinnerVIP MemberWii OwnerHero of TimeGOTM Winner! - November 2009I am an April Fool
13th December, 2008 at 01:14:38 -

yes

there was a penguin rts posted here a while back

 
-

SquishyGecko840



Registered
  28/11/2008
Points
  38
13th December, 2008 at 03:56:04 -

do you have a link to it by any chance

 
oh ya

http://www.afrankwillis.com/gallery/pet%20moose.jpg

Ricky

loves Left For Dead 2

Registered
  28/12/2006
Points
  4175

Has Donated, Thank You!Game of the Week WinnerVIP MemberWii OwnerHero of TimeGOTM Winner! - November 2009I am an April Fool
13th December, 2008 at 03:58:07 -

http://www.create-games.com/download.asp?id=7030

 
-

Willy C



Registered
  14/02/2004
Points
  1524

Game of the Week WinnerKlikCast StarPicture Me This -Round8- Winner!VIP MemberWii OwnerIt's-a me, Mario!Hero of TimeThe Cake is a LiePS3 OwnerI am an April Fool
Batman!Teddy Bear
13th December, 2008 at 12:29:19 -

You also have Terminal Orbit: http://www.create-games.com/download.asp?id=1713

 
http://www.robocaptain.com

SquishyGecko840



Registered
  28/11/2008
Points
  38
13th December, 2008 at 20:54:10 -

neither download links work

and i was wanting to know how to go about making one not how they look but thank you any way

 
oh ya

http://www.afrankwillis.com/gallery/pet%20moose.jpg

SquishyGecko840



Registered
  28/11/2008
Points
  38
20th December, 2008 at 22:34:19 -

so if any one has any ideas on how to make a strategy game like that not what they would look like

 
oh ya

http://www.afrankwillis.com/gallery/pet%20moose.jpg

aphant



Registered
  18/05/2008
Points
  1242
21st December, 2008 at 05:32:29 -

How similar to StarCraft do you want to aim for?

 

SquishyGecko840



Registered
  28/11/2008
Points
  38
21st December, 2008 at 21:07:03 -

the same exact type of game ply with the build-ons, upgrades, unit movement, currency collection, ect

 
oh ya

http://www.afrankwillis.com/gallery/pet%20moose.jpg

traugott.simon



Registered
  23/08/2008
Points
  91
22nd December, 2008 at 00:00:49 -

Very very difficult to make. Until now the penguin game ist the click game coming closest to a professional rts like starcraft or command and conquer. As far as i know.

And also this is quite buggy and feels different in gameplay compared to "real" games.

One of the hardest things to code will be the enemy ai. You have to make it think like a human when building a base, making him recognize the terrain an resources aroung him and at last finding a strategy to kill you.

I dont know your skills with click products, but if you are quite noobish, you should start with something else. Making a really good enemy ai in a simple shooter is difficult enough and something you dont see very often. I would look forward to a starcraft shooter btw

 
n/a

Pixelthief

Dedicated klik scientist

Registered
  02/01/2002
Points
  3419

Game of the Week WinnerWeekly Picture Me This Winner!You've Been Circy'd!VIP MemberI like Aliens!Evil klikerThe SpinsterI donated an open source project
22nd December, 2008 at 13:19:07 -

A game on the scale of starcraft can be made just as easily in Klik as in C++ or any other language, the networking features aside. The issue is that an RTS on a large scale is going to require a LOT of looping, something MMF2 just can't handle. Thus if you want a good RTS engine in MMF, it needs to be small scale. Simply checking what units are in range of each other every frame for attack collisions is probably enough to slow down an MMF program with the amount of units starcraft would have in it.

 
Gridquest V2.00 is out!!
http://www.create-games.com/download.asp?id=7456

Ricky

loves Left For Dead 2

Registered
  28/12/2006
Points
  4175

Has Donated, Thank You!Game of the Week WinnerVIP MemberWii OwnerHero of TimeGOTM Winner! - November 2009I am an April Fool
22nd December, 2008 at 20:44:01 -

I think the best thing to do would probably be to spread the work over several frames, having it check different things each frame.

 
-

SquishyGecko840



Registered
  28/11/2008
Points
  38
13th January, 2009 at 06:19:16 -

well im not to sure if that helps me and im using mmf2 just incase that changes any of these

 
oh ya

http://www.afrankwillis.com/gallery/pet%20moose.jpg

Mr G



Registered
  31/12/2008
Points
  178

VIP MemberPS3 OwnerI like Aliens!Attention GetterDos Rules!
13th January, 2009 at 09:05:03 -

You can make a RTS in TGF too but you will still need to be a real pro of clickteam products. So if you're relatively new, it doesn't matter what clickteam product you have, it will be "extremely" hard to make a RTS as your first click game, I'm not saying impossible but "extremely" hard

 
Image

http://create-games.com/project.asp?id=1549

aphant



Registered
  18/05/2008
Points
  1242
13th January, 2009 at 16:56:26 -

StarCraft is a very complex game. In order to make a clone, you have to know how it works from the ground up. I'd really advise against aiming for something on level with StarCraft, but instead make something much simpler.

Typically, RTS games use a 32x32 grid that everything can snap nicely into; StarCraft, if it even uses one, has a very small movement grid of 4x4, while placing buildings goes onto 24x32 grid. The end result is a very rigid base building system, and a rather precise unit movement system. The problem with making a StarCraft is that there is a lot going on, without any user (or CPU) input. Every unit has to be able to find the fastest way from point A to point B; They have to dynamically know where they can and can't go. Most collision detection in SC isn't based on a grid, but rather a collision mask. If you watch any professional SC gameplay, you'll also see that a lot of the maps are designed specifically to utilize these collision masks; They're most often used to create unit specific pathing, where a small unit like a Zealot or Hydralisk can get through, but not a Dragoon or Siege Tank.

On top of unit movement, units also have to instantly respond to commands. Again, with pro SC gameplay, you'll often see units always moving in battle. A protoss shuttle may drop a reaver just long enough for it to launch a scarab at a tank in siege mode before picking it back up before the tank can fire back.

There is so much working in the background that I could probably write a paper just about how StarCraft works, without getting into any of the unit balance or stratagem.

 
   

Post Reply



 



Advertisement

Worth A Click