Jump to content

Home

Playing as a Party Member?


Weavel

Recommended Posts

Posted

Ah, right. Sorry mate, I thought you were just asking how to switch Party Members. Which come to think of it, might have been a bit daft of me. Sorry about that. :p

 

Eh, I know literally nothing at all about scripts. So looks like you'll need to wait for someone else to come along. :)

Posted

Use the function SwitchPlayerCharacter(int n). Substitute n for which number party slot you want to switch to (use trial and error to find the right character). Use the value -1 to switch back to the original player character (The Exile).

Posted
Use the function SwitchPlayerCharacter(int n). Substitute n for which number party slot you want to switch to (use trial and error to find the right character). Use the value -1 to switch back to the original player character (The Exile).

 

Woah, wuh- hub eh wut?

Excuse me for being a tard, but I really had no idea what you just said.

Posted
What function is required so that the player assumes control of Kreia?

 

If you want the Exile to still be in the group but have Kreia as the currently controlled character you can do:

void main() {
   SetPartyLeader(NPC_KREIA);
}

 

If you want the Exile to no longer be in the group and have Kreia as the main character you can do it like:

void main() {
   SwitchPlayerCharacter(NPC_KREIA);
}

Posted

Does your script work for K1 as well?

Or does the game use another script? The function must be there anyway, see the Leviathan for that.

Posted

Oh, this could get fun. Thanks, Stoffe. I always wondered about how to pull off that trick. I'd love a couple of K1 puzzles requiring you play as someone other than Revan,

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...