11 lines
247 B
Plaintext
11 lines
247 B
Plaintext
// vamp_ck_ed
|
|
int StartingConditional()
|
|
{
|
|
object oPC=GetPCSpeaker();
|
|
int nXP=GetLocalInt(oPC,"nVampireXP");
|
|
int nLevel=1+(nXP/5000);
|
|
int nBlood=GetLocalInt(oPC,"nBloodPool");
|
|
if (nBlood>39&&nLevel>3) return TRUE;
|
|
return FALSE;
|
|
}
|