Finished PRC8 integration. Moved creature abilities to top hak. Setup tooling. Created release archive
19 lines
410 B
Plaintext
19 lines
410 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName frost_elf
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
#include "prc_inc_racial"
|
|
|
|
//:: Returns TRUE if PC is an elf
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
|
|
if (!(MyPRCGetRacialType(oPC) == RACIAL_TYPE_ELF))
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
return TRUE;
|
|
}
|