Anyone here has experience with the party member system? like how to check if a party member was added ? or how to properly add a party member for tactical or menu base combat? Any help is appreciated thank you.
Debug command to check for party members
Omegalight27 Hi Omegalight! I'd recommend checking out the scripting reference page in the official docs:
https://rpginabox.com/docs/doku.php?id=scripting_reference
The Add Party Member function found in the functions list is used to add a character to your party. As for referencing an added party member, the "Party Variables" section provides the syntax for grabbing a party member by ID (e.g. to give them items, adjust their stats and properties, etc.)
For example, this grabs the party member having member ID "xyz":
party.member[“xyz”]
Hopefully that helps!
- Edited
Thanks, I got it working, now I got a understanding how to add party members and set skills while using the menu style battle system. Just trying to figure out how to slot those skills learned or given by a NPC (working with a group to implement this process) so they can be stored and manage more efficiently. I appreciate the fast response, thank you!!!
Omegalight27 No problem, I'm glad that helped! Thank you for posting your questions on the new forum. It will really help out a lot in making things more accessible to the RPG in a Box community as a whole, since the knowledge and solutions will be much more discoverable when they're available here.