メインコンテンツまでスキップ

Overview - Introduction to party - (Unity module)

Last updated on March 24, 2025

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:

    Create party and send party invite demo Unity Byte Wars introduction to party

    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:

    Send and accept party invitation demo Unity Byte Wars introduction to party

    Log output:

    Success to join party. Party id: <Party ID>
  • Rejecting a party invitation:

    Send and reject party invitation demo Unity Byte Wars introduction to party

    Log output:

    Success to reject a party invitation.
  • Kicking members from party:

    Kick party member demo Unity Byte Wars introduction to party

    Log output:

    Success to kick player from party. Target user: <Target User ID>
  • Promoting a party leader:

    Promote party leader demo Unity Byte Wars introduction to party

    Log output:

    Success to promote a new party leader. New leader user id: <Leader User ID>
  • Leaving a party:

    Leave party demo Unity Byte Wars introduction to party

    Log output:

    Success to leave party. Party id: <Party ID>