Battledale_PRC8/_module/nss/jw_halfling_con_.nss

20 lines
321 B
Plaintext
Raw Normal View History

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