23 lines
665 B
Plaintext
23 lines
665 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName sc_amandanonhum
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 8/13/2002 2:59:22 PM
|
|
//:://////////////////////////////////////////////
|
|
#include "prc_inc_racial"
|
|
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Reject player races
|
|
if(MyPRCGetRacialType(GetPCSpeaker()) == RACIAL_TYPE_ELF)
|
|
return FALSE;
|
|
if(MyPRCGetRacialType(GetPCSpeaker()) == RACIAL_TYPE_HALFELF)
|
|
return FALSE;
|
|
if(MyPRCGetRacialType(GetPCSpeaker()) == RACIAL_TYPE_HUMAN)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|