Finished PRC8 integration

Finished PRC8 integration.  Moved creature abilities to top hak.  Setup tooling.  Created release archive
This commit is contained in:
Jaysyn904
2024-03-12 21:27:23 -04:00
parent 7b9e44ebbb
commit e5b3f6ad61
958 changed files with 1491 additions and 630 deletions

View File

@@ -1,11 +1,23 @@
//::///////////////////////////////////////////////
//:: FileName jw_conisdwarf
//::
//:: Dupe of: fr_if_dwarf02
//::
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 04/08/2002 10:39:31
//:://////////////////////////////////////////////
#include "prc_inc_racial"
//:: Returns TRUE if PC is a dwarf
int StartingConditional()
{
object oPC = GetPCSpeaker();
if(!(MyPRCGetRacialType(oPC) == RACIAL_TYPE_DWARF))
return FALSE;
return TRUE;
}
/* int StartingConditional()
{
// Reject player races
@@ -60,3 +72,4 @@ int StartingConditional()
return TRUE;
}
*/