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