I'm trying to set up a character that changes her 'outfit' using items in her inventory. (This is for cold weather and disguise options).
So far I have:
Code: ags
Obviously all this does is change the idle view. But I can't find similar functions for the other views. I also considered just switching characters but that gets complicated with starting rooms and I'm not sure whether Inventory would carry over?
Any advice would be greatly appreciated.
So far I have:
function invCloak_Interact(){
player.Say("Lovely and warm.");
player.SetIdleView(5, 0); // Where 5 is the view with the 'cloak' enabled
}
Obviously all this does is change the idle view. But I can't find similar functions for the other views. I also considered just switching characters but that gets complicated with starting rooms and I'm not sure whether Inventory would carry over?
Any advice would be greatly appreciated.