15 lines
204 B
Plaintext
15 lines
204 B
Plaintext
|
#include "nw_i0_generic"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
object oShelling = GetObjectByTag("Shelling");
|
||
|
|
||
|
ChangeToStandardFaction(oShelling, STANDARD_FACTION_HOSTILE);
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
ActionAttack(oPC);
|
||
|
|
||
|
}
|
||
|
|