18 lines
240 B
Plaintext
18 lines
240 B
Plaintext
|
|
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Perform skill checks
|
|
if(!(AutoDC(DC_MEDIUM, SKILL_INTIMIDATE, GetPCSpeaker())))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
AdjustAlignment(oPC, ALIGNMENT_EVIL, 25);
|
|
}
|
|
|