Hard Light Productions Forums

Modding, Mission Design, and Coding => The Modding Workshop => Topic started by: Turey on September 16, 2006, 10:15:27 pm

Title: adding to species.tbl
Post by: Turey on September 16, 2006, 10:15:27 pm
does anyone kno why i can't add an entry to the intelligence section of the techroom? i can get it to change, but i can't add any.

this is the species.tbl i'm using:

Code: [Select]
; new format:
; $Entry: // begins entry
; $Anim: // anim filename, no extension
; $AlwaysInTechRoom: // 1 for yes, 0 for no.  if 0, must use a SEXP to make it show up in the TR
; $Description: // obvious
; $end_multi_text // end of description (and entry)


$Entry:
$Name: XSTR("The Great War",3184)
$Anim: Intel_Great_War
$AlwaysInTechRoom: 1
$Description:
XSTR(
"(****load of great war background)", 3185)
$end_multi_text

$Entry:
$Name: XSTR("Reconstruction",3186)
$Anim: Intel_Reconstruction
$AlwaysInTechRoom: 1
$Description:
XSTR(
"(****load of reconstruction background)", 3187)
$end_multi_text

$Entry:
$Name: XSTR("GTVA",3188)
$Anim: Intel_GTVA
$AlwaysInTechRoom: 1
$Description:
XSTR(
"(****load of GTVA background)", 3189)
$end_multi_text

$Entry:
$Name: XSTR("Earth",3190)
$Anim: Intel_Earth
$AlwaysInTechRoom: 1
$Description:
XSTR(
"(****load of earth info)", 3191)
$end_multi_text

$Entry:
$Name: XSTR("Neo-Terran Front",3192)
$Anim: Intel_NTF
$AlwaysInTechRoom: 1
$Description:
XSTR(
"(****load of NTF info)", 3193)
$end_multi_text

$Entry:
$Name: XSTR("Vasudans",3194)
$Anim: Intel_Vasudan
$AlwaysInTechRoom: 1
$Description:
XSTR(
"(Vasudan stuff)", 3195)
$end_multi_text

$Entry:
$Name: XSTR("Hammer of Light",3196)
$Anim: Intel_HOL
$AlwaysInTechRoom: 1
$Description:
XSTR(
"(HOL stuff)", 3197)
$end_multi_text

$Entry:
$Name: XSTR("Shivans",3198)
$Anim: Intel_Shivans
$AlwaysInTechRoom: 1
$Description:
XSTR(
"(Shivan stuff)", 3199)
$end_multi_text

$Entry:
$Name: XSTR("The Ancients",3200)
$Anim: Intel_ancients
$AlwaysInTechRoom: 1
$Description:
XSTR(
"(anchient stuff)", 3201)
$end_multi_text

$Entry:
$Name: XSTR("Subspace",3202)
$Anim: Intel_Subspace
$AlwaysInTechRoom: 1
$Description:
XSTR(
"(subspace stuff)", 3203)
$end_multi_text

$Entry:
$Name: XSTR("Stuff",3204)
$Anim: Intel_Subspace
$AlwaysInTechRoom: 1
$Description:
XSTR{
"more
stuff", 3205)
$end_multi_text

note that i removed all the actual descriptive text to shorten the text. It is in full form in the saved version on my comp.
Title: Re: adding to species.tbl
Post by: Goober5000 on September 16, 2006, 11:18:01 pm
When you first start the game, create a new pilot.  Or, play a campaign that uses tech-add-intel for your new entry.
Title: Re: adding to species.tbl
Post by: Turey on September 16, 2006, 11:37:26 pm
thank you very much.