Plugins Used:
www.yanfly.moe
www.yanfly.moe
For the love of Pete, I just can't figure how to make an event move to a designated event ID stored in a self variable.
I'm inserting the script in the SetMovement Route:
◆Set Movement Route:This Event
: :◇Script:let npcdest = this.getSelfVariableValue(10, this.eventId(), 37); this.moveToEvent(npcdest);
But no matter how I do this, it's just not working. I even double-checked if Self Variable 37 has the event ID stored already and it is.
I tried manually putting the number in and it works but for some reason whenever I try to get the value in a self variable it's not working
◆Set Movement Route:This Event
: :◇Script:let npcdest = 2; this.moveToEvent(npcdest);
I also tried using the same two method in the other Script Call outside the Set Movement Route and it seems like its also not working.
Anybody can point out what I'm doing wrong?