I tried to pass it with a function but it still doesn't work...
In the script neh_EnleverArtefactsDaedriques (on an alias of the player), I have :
Function EnleverObjets(Actor theSpeaker)
GetActorRef().UnequipAll()
Speaker = theSpeaker
EndFunction
Actor Property Speaker Auto
And in my (other) quest, the papyrus fragment call this at the end of a dialogue :
enleverartefacts.setstage(0)
neh_EnleverArtefactsDaedriques.EnleverObjets(akSpeaker)
enleverartefacts is a property which contains the quest wich have the player alias, I start it with setstage(0)
Trying to compile the fragment gives me this error :
cannot call the member function EnleverObjets alone or on a type, must call it on a variable
I am completely lost on this....