For the actual script I have this:
;BEGIN FRAGMENT CODE - Do not edit anything between this and the end comment;NEXT FRAGMENT INDEX 1Scriptname TIF__0202C1B1 Extends TopicInfo HiddenFunction FightStart(Actor NPC1, Actor NPC2) NPC1.SetLookAt(NPC2, true) NPC2.SetLookAt(NPC1, true) NPC1.GetActorBase().SetInvulnerable(true) NPC2.GetActorBase().SetInvulnerable(true) NPC1.StartCombat(NPC2) NPC2.StartCombat(NPC1)EndFunction;END FRAGMENT CODE - Do not edit anything between this and the begin commentReferenceAlias Property Alias_Glathor Auto ReferenceAlias Property Alias_Engar Auto
And the call to the FightStart function, which is placed in the End fragment of the dialog in the scene is:
FightStart(Alias_Glathor.GetActorReference(), Alias_Engar.GetActorReference())
The error I am getting is:
FightStart is not a function or does not exist
What am I doing wrong?
Thanks for any and all help



