I have a Actor with a AI Package "UseMagic" and im trying to set the cast target of the package.
The AI Package UseMagic-Target points to a quest's actor ReferenceAlias
In my Actor script I'm pointing to the same ReferenceAlias
ReferenceAlias Property paCastTarget Auto
and now I want to set the target and reevaluate the ai packages:
Actor randomActor = Game.FindRandomActorFromRef( Self , 4000 )paCastTarget = randomActor ; Doesn't compile. This is what i can't figure out how to do right.Self.EvaluatePackage()
How can i assign a Actor to a ReferenceAlias?
