11 lines
248 B
Plaintext
11 lines
248 B
Plaintext
#include "x4_inc_functions"
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
string sDB = CharacterDB(oPC);
|
|
int nReward = GetCampaignInt(sDB, "QUEST_REWARD");
|
|
|
|
if (GetGold(oPC) < nReward/10) return FALSE;
|
|
return TRUE;
|
|
}
|