Empty game starting file

Empty game starting file

Discuss game development here, from a distinct game project to an accessible third-party mutator, down to the interaction and design of individual units if you like.

Moderator: Moderators

Post Reply
User avatar
d-gun
Posts: 126
Joined: 03 Jan 2010, 18:32

Empty game starting file

Post by d-gun »

hi, im trying to get a generic .sdd mod file to load, can anyone link me to a good project base?
User avatar
oksnoop2
Posts: 1207
Joined: 29 Aug 2009, 20:12

Re: Empty game starting file

Post by oksnoop2 »

.sdd is what you use when you have the mod/game uncompressed.
So you can extract the contents of any mod/game and place it in a folder with the .sdd extension.
http://code.google.com/p/conflictterra/downloads/list

For example you can download ct-1.02.sdz and extract the contents using 7zip into a folder called ct-1.02.sdd and it should load up just fine.
User avatar
d-gun
Posts: 126
Joined: 03 Jan 2010, 18:32

Re: Empty game starting file

Post by d-gun »

im having trouble getting my sdd to show up when i start spring. I already have:

armor.txt
modinfo.lua

and folders:

bitmaps
features
gamedata
objects3d
scripts
sounds
unitpics
units
unittextures
weapons


it complains about "missing files cannot load archive" but doesnt detail what is missing
User avatar
FLOZi
MC: Legacy & Spring 1944 Developer
Posts: 6242
Joined: 29 Apr 2005, 01:14

Re: Empty game starting file

Post by FLOZi »

You only need a working modinfo.lua (so long as it includes cursors)

e.g.:

Code: Select all

local modinfo = {
   name = "A(bsolute Minimum)",
   shortname = "A",
   game = "SpringABC",
   shortgame = "ABC",
   description = "Mod with the bare minimum to run",
   url = "http://www.spring.com/wiki/ABC",
   
   modtype = "1",

   depend = {
      "Spring Cursors",
   }
}

return modinfo
I'd guess you're missing the required cursors, but if that doesn't fix it, please post the infolog.txt.
Post Reply

Return to “Game Development”