Using arrays like
actor[] BotArray = new actor[10]Fails to compile in a script that extends Quest Conditional, throwing up the errors
(4,20): no viable alternative at input 'new'(4,29): required (...)+ loop did not match anything at input '['(4,9): Unknown user flag actorSo using arrays is out. Swapping Actor for ObjectReference throws up the same errors.
I tried an alternative, tracking the actor refs in a formlist like in The Good Old Days, but that doesn't work either:
a0aDwBotList.addForm((BotRef as Form))debug.Messagebox("List contains "+a0aDwBotList)Returns an empty list, size functions claim it has no length, it just doesn't seem to work- with or without casting as a form. On the plus side at least it compiles.So can anyone tell me where I'm going wrong? Papyrus is proving something of a challenge for my Fortran-addled physicist mind.

