WoR_PRC8/_module/nss/s_whennothuman.nss
Jaysyn904 b5e28e52f4 Initial commit
Initial commit [1.18]
2025-04-03 11:49:34 -04:00

20 lines
494 B
Plaintext

//::///////////////////////////////////////////////
//:: 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;
}