19 lines
511 B
Plaintext
19 lines
511 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName getishuman
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 4/17/2003 8:59:53 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
#include "prc_inc_racial"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
// Reject player races
|
||
|
if(MyPRCGetRacialType(GetPCSpeaker()) == RACIAL_TYPE_HUMAN) // <-- This should be GetIsNotHuman!
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|