I've used StartCombat in scripts successfully but in this case I want it as a fragment in a quest. At the end of conversation player refuses to give money to NPC - Setstage 30 (combat begins). I have the NPC as an Alias and the player as an Actor Property, I scripted it like this...
Alias_beggar1.StartCombat(Player)
This didn't compile. So I made an Alias Property for the beggar and used this fragment...
Beggar.StartCombat(Player)
Still doesn't compile. This is the error I get...
"StartCombat is not a function or does not exist"What am I doing wrong?