Skip to content

Change Party Member

Change Party Member

Moves a character between the active and inactive party.

Properties

System

Name Explanation Type
Add to Scene Whether the change is immediately reflected in the current scene. When enabled, the party display on the map updates right away. Toggle
Target The party member to move between the active and inactive party. Actor Reference
To Active Whether to move the target character to the active party. Toggle

Examples

Move a Party Member to the Inactive Party

This moves party member 0 from the active party to the inactive (reserve) party.

change_party_member(party_member(0));
{"Data":{"IsActive":false,"IsReflectedImmediately":false,"Target":{"ReferenceType":0,"Index":0,"IsSelf":false,"IsEntity":false,"IsPartyMember":true,"Identifier":{"IsGlobalVariable":false,"IsLocalVariable":false,"IsValue":true,"Value":"0","VariableIndex":0,"Metadata":null},"Metadata":null},"Metadata":null},"TypeName":"MAR.Game.RPGCore.Models.Scripts.Commands.Party.ChangePartyMemberCommand"}

Move a Party Member to the Active Party

This moves party member 0 to the active party.

change_party_member(party_member(0), active);
{"Data":{"IsActive":true,"IsReflectedImmediately":false,"Target":{"ReferenceType":0,"Index":0,"IsSelf":false,"IsEntity":false,"IsPartyMember":true,"Identifier":{"IsGlobalVariable":false,"IsLocalVariable":false,"IsValue":true,"Value":"0","VariableIndex":0,"Metadata":null},"Metadata":null},"Metadata":null},"TypeName":"MAR.Game.RPGCore.Models.Scripts.Commands.Party.ChangePartyMemberCommand"}

Move a Party Member to Active with Immediate Scene Update

This moves party member 0 to the active party and immediately updates the scene to reflect the change.

change_party_member(party_member(0), active, immediate);
{"Data":{"IsActive":true,"IsReflectedImmediately":true,"Target":{"ReferenceType":0,"Index":0,"IsSelf":false,"IsEntity":false,"IsPartyMember":true,"Identifier":{"IsGlobalVariable":false,"IsLocalVariable":false,"IsValue":true,"Value":"0","VariableIndex":0,"Metadata":null},"Metadata":null},"Metadata":null},"TypeName":"MAR.Game.RPGCore.Models.Scripts.Commands.Party.ChangePartyMemberCommand"}