Battledale_PRC8/_module/nss/jw_halfling_con_.nss
Jaysyn904 e5b3f6ad61 Finished PRC8 integration
Finished PRC8 integration.  Moved creature abilities to top hak.  Setup tooling.  Created release archive
2024-03-12 21:27:23 -04:00

21 lines
352 B
Plaintext

#include "NW_I0_GENERIC"
#include "prc_inc_racial"
int StartingConditional()
{
object oPC=GetPCSpeaker();
if (MyPRCGetRacialType(oPC)==RACIAL_TYPE_HALFLING)
{
return TRUE;
}
else
{
SpeakString("Hey! You're not in our company!");
SetIsTemporaryEnemy(oPC);
DetermineCombatRound();
return FALSE;
}
}