20 lines
321 B
Plaintext
20 lines
321 B
Plaintext
|
#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;
|
||
|
}
|
||
|
|
||
|
}
|