Finished PRC8 integration
Finished PRC8 integration. Moved creature abilities to top hak. Setup tooling. Created release archive
This commit is contained in:
@@ -1,11 +1,57 @@
|
||||
//::///////////////////////////////////////////////
|
||||
//:: FileName jw_chknothuman
|
||||
//:://////////////////////////////////////////////
|
||||
//:://////////////////////////////////////////////
|
||||
//:: Created By: Script Wizard
|
||||
//:: Created On: 11/10/2002 19:23:01
|
||||
//:://////////////////////////////////////////////
|
||||
#include "prc_inc_racial"
|
||||
|
||||
//:: Returns TRUE if PC is not a human
|
||||
int StartingConditional()
|
||||
{
|
||||
object oPC = GetPCSpeaker();
|
||||
|
||||
if (!(MyPRCGetRacialType(oPC) == RACIAL_TYPE_HUMAN))
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
// Reject other races
|
||||
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_ABERRATION)
|
||||
return FALSE;
|
||||
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_ANIMAL)
|
||||
return FALSE;
|
||||
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_BEAST)
|
||||
return FALSE;
|
||||
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_CONSTRUCT)
|
||||
return FALSE;
|
||||
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_DRAGON)
|
||||
return FALSE;
|
||||
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_ELEMENTAL)
|
||||
return FALSE;
|
||||
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_FEY)
|
||||
return FALSE;
|
||||
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_GIANT)
|
||||
return FALSE;
|
||||
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_HUMANOID_GOBLINOID)
|
||||
return FALSE;
|
||||
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_MAGICAL_BEAST)
|
||||
return FALSE;
|
||||
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_HUMANOID_MONSTROUS)
|
||||
return FALSE;
|
||||
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_HUMANOID_ORC)
|
||||
return FALSE;
|
||||
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_OUTSIDER)
|
||||
return FALSE;
|
||||
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_HUMANOID_REPTILIAN)
|
||||
return FALSE;
|
||||
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_SHAPECHANGER)
|
||||
return FALSE;
|
||||
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_UNDEAD)
|
||||
return FALSE;
|
||||
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_VERMIN)
|
||||
return FALSE;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* int StartingConditional()
|
||||
{
|
||||
|
||||
// Reject player races
|
||||
@@ -50,3 +96,4 @@ int StartingConditional()
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
*/
|
||||
Reference in New Issue
Block a user