WoR_PRC8/_module/nss/s_whennothuman.nss

20 lines
494 B
Plaintext
Raw Permalink Normal View History

2025-04-03 11:49:34 -04:00
//::///////////////////////////////////////////////
//:: FileName s_whennothuman
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 12/16/2004 3:36:32 PM
//:://////////////////////////////////////////////
#include "prc_inc_racial"
int StartingConditional()
{
// Reject player races
if(MyPRCGetRacialType(GetPCSpeaker()) == RACIAL_TYPE_HUMAN)
return FALSE;
return TRUE;
}