Page 1 of 1

Campaign Questions

Posted: Tue Jul 28, 2009 5:43 am
by Sky_216
Have a few questions regarding making a custom campaign/GC:


1) Is it (realistically) possible to make a campaign like the stock 501st campaign (ordered series of planet battles).

2) Is it possible to change the names and descriptions and maybe even models/images of planets?

3) Can a GC mission be pretty much anything (ie not a conquest mission necessarily).

Re: Campaign Questions

Posted: Tue Jul 28, 2009 1:23 pm
by [RDH]Zerted
1) Depends on how good one is at modding. Putting everything together into a Galactic Conquest is nothing compared to making a bunch of high quality maps.
2) Yes
3) Yes

And as a bonus, you can even play custom videos. So far, no one has done that in a released map

Re: Campaign Questions

Posted: Tue Jul 28, 2009 4:16 pm
by Sky_216
[RDH]Zerted wrote:1) Depends on how good one is at modding. Putting everything together into a Galactic Conquest is nothing compared to making a bunch of high quality maps.
2) Yes
3) Yes

And as a bonus, you can even play custom videos. So far, no one has done that in a released map
1) Is not a problem - already have 11-16 high quality maps I can use, and some campaign scripts already done.

How would you go about turning a GC into a campaign (the scripting and stuff)?


and also, one more question:

Is it possible to make a Dynamic campaign/GC? So either you can get sent down different "paths" (ie to different missions) in campaign, or there are some planets in the GC that are cut off until you capture a certain number of planets?

Re: Campaign Questions

Posted: Tue Jul 28, 2009 5:04 pm
by Frisbeetarian
Sure, you can just use Zerted's save feature to determine where to go based on values set by previous choices. You don't even have to use the save to do what you want with a GC, that is, if you can add planets after a game already starts; you can just try that yourself.

Re: Campaign Questions

Posted: Tue Jul 28, 2009 5:59 pm
by [RDH]Zerted
The v1.3 patch has the documentation for creating cGCs (custom Galactic Conquests).

If you take the time to trace through the scripts and see how GC (ifs_freeform...) works, then you can make it do whatever you want. The galaxy you look at is really a map and the planets are entities. The lines between the planets are drawn on in the shell.

Ahh, don't use my saving functions in GC. Mine messes with the meta tables. This is fine in MP, but GC uses them to store the unit data and other stuff. GCs can already be saved. Use their normal saving methods.

Read These:
http://www.gametoast.com/forums/viewtop ... 27&t=15720
http://www.gametoast.com/forums/viewtop ... 35&t=16547

I have class, thats all I can say...

Re: Campaign Questions

Posted: Tue Jul 28, 2009 7:24 pm
by Frisbeetarian
I know that the actual campaign is set up like a GC, but couldn't you just set up a series of missions with fancy intro screens and videos outside the framework of a GC? This way you could use the saving feature.

Re: Campaign Questions

Posted: Tue Jul 28, 2009 7:52 pm
by [RDH]Zerted
What I was saying is that you already have a saving feature. My saving functions are a hack based off of how GC saving works. In normal GC, the player has the chance to save after every mission and when leaving the Campaign. By doing nothing, you get this ability.

If you want to store extra data, shove it into the metagame state (just a table) and swbf2 will save it automatically.

Re: Campaign Questions

Posted: Tue Jul 28, 2009 8:22 pm
by Frisbeetarian
Gotcha. I thought the way you did saving was through accessing a new file created by the process, so I didn't realize that you could include info in the built-in GC saves. Good to know.