I think this should work, but it does not...
// script for object1: Interact object
if (CharacterView == 26) {
ChangeCharacterView(28);
}
else {
ChangeCharacterView(13);
}
Am I totaly lost, or am I on the right track?
Off the top of my head - you haven't said which character.
The usage is ChangeCharacterView (CHARID, int newview).
E.G.
if (character[EGO].view == 25) { // character view-1
ChangeCharacterView(EGO, 28);
}
else {
ChangeCharacterView (EGO, 13):
}