10 lines
253 B
Plaintext
10 lines
253 B
Plaintext
#include "quest_inc"
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
string sDB = CharacterDB(oPC);
|
|
int nRansom = StringToInt(GetCampaignString(sDB, "QUEST_EXTRA2"));
|
|
if (GetGold(oPC) < nRansom) return TRUE;
|
|
return FALSE;
|
|
}
|