10 lines
292 B
Plaintext
10 lines
292 B
Plaintext
#include "x4_inc_functions"
|
|
void main()
|
|
{
|
|
string sDB = CharacterDB(GetPCSpeaker());
|
|
string sName = GetCampaignString(sDB, "QUEST_CLI_NAME");
|
|
string sLastName = GetCampaignString(sDB, "QUEST_CLI_LASTNAME");
|
|
SetCustomToken(11001, sName);
|
|
SetCustomToken(11002, sLastName);
|
|
}
|