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,31 @@
|
||||
//::///////////////////////////////////////////////
|
||||
//:: FileName jw_chkelfhalfelf
|
||||
//:://////////////////////////////////////////////
|
||||
//:://////////////////////////////////////////////
|
||||
//:: Created By: Script Wizard
|
||||
//:: Created On: 11/10/2002 19:05:09
|
||||
//:://////////////////////////////////////////////
|
||||
#include "prc_inc_racial"
|
||||
|
||||
//:: Returns TRUE if PC is an elf or half-elf
|
||||
//:: or has a Lore of 15 ranks or more.
|
||||
int StartingConditional()
|
||||
{
|
||||
object oPC = GetPCSpeaker();
|
||||
|
||||
if (GetSkillRank(SKILL_LORE, oPC) > 14)
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
if (!(MyPRCGetRacialType(oPC) == RACIAL_TYPE_ELF
|
||||
|| MyPRCGetRacialType(oPC) == RACIAL_TYPE_HALFELF))
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* int StartingConditional()
|
||||
{
|
||||
|
||||
if (GetSkillRank(SKILL_LORE,GetPCSpeaker())>14)
|
||||
@@ -64,3 +84,4 @@ int StartingConditional()
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
*/
|
||||
Reference in New Issue
Block a user