I have a function that has a parameter that reference to the player but it does not seem to work.
The code below prints both the names of the player and the object
let item := player.GetEquippedObject i MessageEx "%n is wearing %n " actor item
However the code below only prints the name of the player but the object it prints "
let item := actor.GetEquippedObject i MessageEx "%n is wearing %n " actor item
Why can I not reference to player?