Finished PRC8 integration
Finished PRC8 integration. Moved creature abilities to top hak. Setup tooling. Created release archive
This commit is contained in:
@@ -2,13 +2,21 @@
|
||||
//:: FileName frost_not_elf
|
||||
//:://////////////////////////////////////////////
|
||||
//:://////////////////////////////////////////////
|
||||
//:: Created By: Script Wizard
|
||||
//:: Created On: 16.9.2002 21:08:20
|
||||
//:://////////////////////////////////////////////
|
||||
|
||||
#include "prc_inc_racial"
|
||||
|
||||
//:: Returns FALSE if the player is an elf
|
||||
int StartingConditional()
|
||||
{
|
||||
object oPC = GetPCSpeaker();
|
||||
|
||||
// Reject player races
|
||||
if(MyPRCGetRacialType(oPC) == RACIAL_TYPE_ELF)
|
||||
return FALSE;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/* // Reject player races
|
||||
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_ELF)
|
||||
return FALSE;
|
||||
|
||||
@@ -48,5 +56,4 @@ int StartingConditional()
|
||||
if(GetRacialType(GetPCSpeaker()) == RACIAL_TYPE_VERMIN)
|
||||
return FALSE;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
return TRUE; */
|
||||
|
||||
Reference in New Issue
Block a user