Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 LegendWill · Mar 28, 2015 at 04:31 PM · c#multiplayer

Multiplayer Nicknames

Hello, I'm having some trouble with nicknames. I am trying to make a 2 player game. On startup, the player is prompted asking for a username to use for the session, the string is then stored on an empty gameobject to be used for later. How would I go about getting the OTHER player's name? Meaning, if you were player one, how could you get player two's name stored in a string for use?

My script so far -

 using UnityEngine;
 using UnityEngine.UI;
 using System.Collections;
 
 public class LobbyHandler : MonoBehaviour {
     public Text playerOneName;
     public Text playerTwoName;
     public GameObject Scripts;
     public string playerOneNameString;
     public string playerTwoNameString;
     NetworkViewID viewID;
     public string myName;
     void Awake () {
         Scripts = GameObject.Find("_Scripts");
         playerOneName.text = "<Loading>";
         playerTwoName.text = "<Waiting>";
     }
     void OnPlayerConnected() {
         SetLobbyStatsFunction();
     }
     public void SetLobbyStatsFunction () {
         myName = Scripts.GetComponent<PlayerStats>().Username;
         StartCoroutine (SetLobbyStats());
     }
     IEnumerator SetLobbyStats () {
         yield return new WaitForSeconds(1);
         if (Scripts.GetComponent<PlayerStats> ().isPlayerOne == true) {
             GetComponent<NetworkView>().RPC("AssignPlayerOne", RPCMode.AllBuffered, viewID, myName);
         } else {
             GetComponent<NetworkView>().RPC("AssignPlayerTwo", RPCMode.AllBuffered, viewID, myName);
         }
     }
     [RPC]
     void AssignPlayerOne(NetworkViewID viewID, string myName) {
         playerOneNameString = Scripts.GetComponent<PlayerStats>().Username;
         playerOneName.text = Scripts.GetComponent<PlayerStats>().Username;
     }
     [RPC]
     void AssignPlayerTwo(NetworkViewID viewID, string myName) {
         playerTwoNameString = Scripts.GetComponent<PlayerStats>().Username;
         playerTwoName.text = Scripts.GetComponent<PlayerStats>().Username;
     }
 }
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

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by wesleywh · Mar 28, 2015 at 07:24 PM

Well the easiest thing that I can think of is if you are already having both people sign in why not do an RPC call to update the second player name? Something like the following:

 [RPC]
 void AssignPlayerTwo(string myName){
      playerTwoName.text = myName;
 }

Then to call it simply have something like:

 GetComponent<NetworkView>().RPC("AssignPlayerTwo", RPCMode.OthersBuffered, "HereIsMyName");

What "OthersBuffered" does is as soon as someone connects to you it will assign their second player name to whatever name you passed into that function. Then just have the same name to your first player. So putting it all together would look something like this:

 var playerOneName = "";
 var playerTwoName = "";
 
 FirstPlayer = "HereIsMyName";
 GetComponent<NetworkView>().RPC("AssignPlayerTwo", RPCMode.OthersBuffered, FirstPlayer);
 
 [RPC]
 void AssignPlayerTwo(string: Name)
 {
    playerTwoName = Name;
 }

This way if you are connecting your playerTwoName is assigned. If your are host your player one name is assigned. Hopefully this all makes sense. Have you tried something like this already? The above script isn't exact as you can tell but hopefully gives you a good idea of what you might be able to do.

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Multiple Cars not working 1 Answer

Distribute terrain in zones 3 Answers

Tell the NetworkManager to spawn individual playerPrefab from Client 0 Answers

UWP and HLAPI 0 Answers

Loading spawned prefabs upon connecting to server? 1 Answer


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