2024-03-11 23:44:08 -04:00
|
|
|
#include "NW_I0_GENERIC"
|
2024-03-12 21:27:23 -04:00
|
|
|
#include "prc_inc_racial"
|
2024-03-11 23:44:08 -04:00
|
|
|
|
|
|
|
int StartingConditional()
|
|
|
|
{
|
|
|
|
object oPC=GetPCSpeaker();
|
2024-03-12 21:27:23 -04:00
|
|
|
if (MyPRCGetRacialType(oPC)==RACIAL_TYPE_HALFLING)
|
2024-03-11 23:44:08 -04:00
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SpeakString("Hey! You're not in our company!");
|
|
|
|
SetIsTemporaryEnemy(oPC);
|
|
|
|
DetermineCombatRound();
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|