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