Overview - Introduction to party - (Unity module)
Introduction
Parties allow your players to gather and play games together across matches. In this module, we show you how to implement players creating parties, adding players to parties, and removing players from parties in Byte Wars using AccelByte Gaming Services (AGS).
Prerequisites
In order to complete this module, you need:
The Byte Wars
tutorialmodules
branch checked out in your local Byte Wars Unity project repository.To have force enabled this module. You can do this by adding the following code to the
Assets/Resources/Modules/TutorialModuleConfig.json
file:{
"enableModulesOverride": true,
"forceEnabledModules": ["PartyEssentials"],
}
Learning objectives
By following this module, you learn how to implement the following features:
- Creating a player party
- Inviting friends to a party
- Kicking members of the party
- Promoting a party member to party leader
- Leaving a party
Preview
At the end of this module, your project will look like the images below.
Creating and send party invitations:
Log output:
Success to create party. Party id: <Party ID>
Success to send a party invitation. Invitee user ID: <Invitee User ID>Accepting a party invitation:
Log output:
Success to join party. Party id: <Party ID>
Rejecting a party invitation:
Log output:
Success to reject a party invitation.
Kicking members from party:
Log output:
Success to kick player from party. Target user: <Target User ID>
Promoting a party leader:
Log output:
Success to promote a new party leader. New leader user id: <Leader User ID>
Leaving a party:
Log output:
Success to leave party. Party id: <Party ID>