Jump to content

Home

Playing as a Party Member?


Weavel

Recommended Posts

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. :)

Link to comment
Share on other sites

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).

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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);
}

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...