======Add Party Member======
----
Adds a [[character|character]] to the player's party. Currently, party members will only appear in tactical turn-based battles to aid the player in combat.
====Signature:====
add_party_member(model_name, member_id)
^Argument^Description^Type^Required^
|model_name|[[character|Character]] model to use for the new party member.|[[string|String]]|Yes|
|member_id|Unique member ID that will be assigned.|[[string|String]]|Yes|
The [[remove_party_member|Remove Party Member]] function can be triggered later to remove a [[character|character]] that was previously added to the party with the Add Party Member function.
====Example:====
add_party_member("sarah_character", "Sarah");
//Results:// The [[character|character]] "sarah_character" is added to the player's party and assigned a member ID of "Sarah".
Use the **Add Party Member** function to have an [[npc|NPC]] join the player's party after choosing a certain [[dialogue|dialogue]] option or completing a quest for them.
----
====Editor Node:====
{{:add_party_member_node.png?nolink|}}
~~NOTOC~~