Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by UDN_b7e02a1f-c47d-43ec-877f-367ff4696609 · Apr 25, 2017 at 12:09 AM · multiplayerphotonspawnteams

Unity photon multiplayer teams

Hello, I'm trying to figure out how to create my script for spawning players and assignment to the team. When the player joins, player will be added to the team with less players, if the players are the same player will join the red team. When I tested my script but the players always join the red team, I'd be glad for any help.

  const string VERSION = "v0.0.0.2";
 
     //Teams
     public int playersOnBlue;
     public int playersOnRed;
 
 
     public Transform[] spawnPointsBlue;
     public Transform[] spawnPointsRed;
 
     public Transform point;
 
     void Start()
     {
         PhotonNetwork.ConnectUsingSettings(VERSION);
     }
 
     void OnJoinedLobby()
     {
         RoomOptions roomOptions = new RoomOptions() { IsVisible = false, MaxPlayers = 4 };
         PhotonNetwork.JoinOrCreateRoom("room", roomOptions, TypedLobby.Default);
     }
 
 
     void OnJoinedRoom()
     {
         if (playersOnBlue >= playersOnRed)
         {
             GameObject player = PhotonNetwork.Instantiate("PlayerRed", point.position, point.rotation, 0);
             photonView.RPC("AddPlayers", PhotonTargets.AllBuffered, 0);
 
         }
         else if (playersOnRed >= playersOnBlue)
         {
             GameObject player = PhotonNetwork.Instantiate("PlayerBlue", point.position, point.rotation, 0);
             photonView.RPC("AddPlayers", PhotonTargets.AllBuffered, 1);
         }
         else if (playersOnRed == playersOnBlue)
         {
 
             GameObject player = PhotonNetwork.Instantiate("PlayerRed", point.position, point.rotation, 0);
             photonView.RPC("AddPlayers", PhotonTargets.AllBuffered, 0);
         }
     }
 
     [PunRPC]
     void AddPlayers(int blue)
     {
         if(blue == 1)
         {
             playersOnBlue++;
         } else
         {
             playersOnRed++;
         }
     }
Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

3 Replies

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by UDN_b7e02a1f-c47d-43ec-877f-367ff4696609 · Apr 23, 2017 at 12:41 PM

Ok i figured it out. I used photon bulit-in teams script. If anyone Interested, here is the script:

  const string VERSION = "v0.0.0.2";

 public Transform[] spawnPointsBlue;
 public Transform[] spawnPointsRed;

 void Start()
 {
     PhotonNetwork.ConnectUsingSettings(VERSION);
 }

 void OnJoinedLobby()
 {
     RoomOptions roomOptions = new RoomOptions() { IsVisible = false, MaxPlayers = 4 };
     PhotonNetwork.JoinOrCreateRoom("room", roomOptions, TypedLobby.Default);
 }


 void OnJoinedRoom()
 {
     if (PunTeams.PlayersPerTeam[PunTeams.Team.blue].Count >= PunTeams.PlayersPerTeam[PunTeams.Team.red].Count)
     {
         GameObject player = PhotonNetwork.Instantiate("PlayerRed", spawnPointsRed[PunTeams.PlayersPerTeam[PunTeams.Team.red].Count].position, spawnPointsRed[PunTeams.PlayersPerTeam[PunTeams.Team.red].Count].rotation, 0);
         PhotonNetwork.player.SetTeam(PunTeams.Team.red);

     }
     else if (PunTeams.PlayersPerTeam[PunTeams.Team.red].Count >= PunTeams.PlayersPerTeam[PunTeams.Team.blue].Count)
     {
         GameObject player = PhotonNetwork.Instantiate("PlayerBlue", spawnPointsBlue[PunTeams.PlayersPerTeam[PunTeams.Team.blue].Count].position, spawnPointsBlue[PunTeams.PlayersPerTeam[PunTeams.Team.blue].Count].rotation, 0);
         PhotonNetwork.player.SetTeam(PunTeams.Team.blue);

     }
     else if (PunTeams.PlayersPerTeam[PunTeams.Team.red].Count == PunTeams.PlayersPerTeam[PunTeams.Team.blue].Count)
     {
         GameObject player = PhotonNetwork.Instantiate("PlayerRed", spawnPointsRed[PunTeams.PlayersPerTeam[PunTeams.Team.red].Count].position, spawnPointsRed[PunTeams.PlayersPerTeam[PunTeams.Team.red].Count].rotation, 0);
         PhotonNetwork.player.SetTeam(PunTeams.Team.red);
     }
 }


Comment
Add comment · Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Lyro_1 · Jun 08, 2017 at 12:45 PM 0
Share

Hello, I tried your solution, but when it tries to do this comparison :

 if (PunTeams.PlayersPerTeam[PunTeams.Team.blue].Count <= PunTeams.PlayersPerTeam[PunTeams.Team.red].Count)

it throw an error :

 NullReferenceException: Object reference not set to an instance of an object

Did you have this issue ?

avatar image
1

Answer by ManuGT · Apr 06, 2018 at 06:26 PM

the error is because they have to assign the photon script "PunTeams" to the gameobject

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image
0

Answer by Barry100 · Aug 23, 2017 at 10:19 AM

I also get this error. Did you get this fixed?

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

6 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Player Instantiate won't work 2 Answers

Spawn players in unique places (Photon networking) Object sync problem for entering players. 0 Answers

Photon Instantiate 2 Answers

Is possible to spawn 2d image in photon networking ? 1 Answer

Spawning troubles 2 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges