Hard Light Productions Forums

Modding, Mission Design, and Coding => The Modding Workshop => Topic started by: IPAndrews on October 01, 2006, 06:17:47 am

Title: +no create
Post by: IPAndrews on October 01, 2006, 06:17:47 am
If this is documented somewhere I don't know where. So I'll just ask. This flag goes in a ships.tbl entry. What does it do and where in a ships.tbl entry does it go?

Edit: it's +nocreate (no space) but if you know what it does you probably know that already.
Title: Re: +no create
Post by: Shade on October 01, 2006, 06:33:51 am
It's used for modular tables. It makes an entry be disregarded if there isn't one in the primary table, so you can modify entries without the risk of problems due to missing fields if for some reason (switchijng mods or whatever) the entry being modified does not exist in the primary table. Without it, you'd end up with the game trying to read an entry that only contained the info being modified, with bad results.
Title: Re: +no create
Post by: IPAndrews on October 01, 2006, 06:41:33 am
That makes sense :). Thank you very much sir.