19 lines
317 B
Plaintext
19 lines
317 B
Plaintext
#include "hc_inc"
|
|
#include "anph_inc"
|
|
#include "eye_scalp_inc"
|
|
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
object oPC = GetPCSpeaker();
|
|
if (GetReputation(OBJECT_SELF, oPC) > 90)
|
|
{
|
|
iResult = GetHasScalpInInventory(oPC);
|
|
}
|
|
else
|
|
{
|
|
iResult = FALSE;
|
|
}
|
|
return iResult;
|
|
}
|