Amon_PRC8/_module/nss/erol_hostile.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

11 lines
338 B
Plaintext

#include "nw_i0_generic"
// In the "Actions Taken" script of Kiffen's final conversation node.
// This will make Erol turn hostile and attack.
void main()
{
object oErol = GetObjectByTag("Erol");
AssignCommand(oErol, ChangeToStandardFaction(oErol, STANDARD_FACTION_HOSTILE));
ActionAttack (oErol);
DetermineCombatRound();
}