12 lines
204 B
Plaintext
12 lines
204 B
Plaintext
|
#include "x4_inc_functions"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
if (GetCampaignInt(CharacterDB(oPC), "BARTAB", oPC) > 0)
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|
||
|
return FALSE;
|
||
|
}
|