I'm working on a thing to freeze enemies when they get hit with a certain spell. I've solved most of the compiling errors and I'm left with this one that I don't know what to do with.
(6,26): extraneous input ',' expecting ID
And here's my code. The referenced line is highlighted in yellow.
scriptname JGSW_PetrifyScript extends ActiveMagicEffect
Actor Property target Auto
Actor Property caster Auto
Event OnEffectStart(target, caster)
target.EnableAI(false)
OnEffectFinish(target, caster)
target.EnableAI(true)
EndEvent
The forums say this issue is caused by the script failing to pick up an ID, but I need to use GetTargetActor() to do that (as far as I'm aware), and that line just causes more errors.
Edited by JigsawTheTechnophile, 12 June 2019 - 04:17 am.