16 lines
409 B
Plaintext
16 lines
409 B
Plaintext
#include "x4_inc_functions"
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
string sDB = CharacterDB(oPC);
|
|
string sNPCRace = GetCampaignString(sDB, "2_NPC_RACE");
|
|
|
|
if (sNPCRace != "")
|
|
{
|
|
SetCustomToken(13021, GetCampaignString(sDB, "2_NPC_NAME"));
|
|
SetCustomToken(13022, GetCampaignString(sDB, "2_NPC_LASTNAME"));
|
|
return TRUE;
|
|
}
|
|
else return FALSE;
|
|
}
|