Need my NPC to change pov
rgauthier
24 Oct 2019, 15:48Hi All, ,
I need my Robin npc to do the same as my Batman. Is there a way to make the npc change pov and become his costume object?
This works for my player:
MakeObjectInvisible (player) ChangePOV (Bat_Costume)

Io
24 Oct 2019, 16:05I assume you want something like:
WhateverRobin'sNonSuperheroNameIs
Transformation:
Robin the Hero.
Right?
In which case, no PoV changing needed. A simple:
RobinObject.alias="Robin the Hero"
and, to switch back:
RobinObject.alias="Robin the Average Dude"
You can even get funkier with looking at him:
{if RobinObject.alias=Robin the Hero:It's Robin, Batman's sidekick!}{if RobinObject.alias=Robin the Average Dude:What's with this random civilian?}
Hope this answers your question?