Jump to content
New Forum Update ×

Recommended Posts

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
Link to comment
Share on other sites

You need to keep the parameter types in place, but I think you can change the parameter names(the ones I don't have in bold).

 

example: Event .... (Actor akTarget, Actor akCaster)

 

Actor is what needs to be included so the compiler/game knows what types target and caster are.

Edited by Rasikko
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...