added areas and ccoh, fixed some areas to work with crafting fixed some on death issues added server entry/ooc
16 lines
198 B
Plaintext
16 lines
198 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
int nLoan = GetCampaignInt("kpb_bank", "KPB_LOAN_AMT", oPC);
|
|
|
|
if (nLoan >= 1)
|
|
{
|
|
return TRUE;
|
|
}
|
|
else
|
|
{
|
|
return FALSE;
|
|
}
|
|
}
|
|
|