Finished PRC8 integration. Moved creature abilities to top hak. Setup tooling. Created release archive
21 lines
352 B
Plaintext
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;
|
|
}
|
|
|
|
}
|