18 lines
462 B
Plaintext
18 lines
462 B
Plaintext
#include "quest_inc"
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
string sDB = CharacterDB(GetPCSpeaker());
|
|
|
|
string sName = GetCampaignString(sDB, "QUEST_CLI_NAME");
|
|
string sLastName = GetCampaignString(sDB, "QUEST_CLI_LASTNAME");
|
|
|
|
SetCustomToken(11001, sName);
|
|
SetCustomToken(11002, sLastName);
|
|
|
|
int nDC = GetAdjustedSkillDC(oPC);
|
|
if (GetIsSkillSuccessful(oPC, SKILL_PERSUADE, nDC)) return TRUE;
|
|
return FALSE;
|
|
}
|