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 ExtremePowers · Aug 27, 2014 at 10:33 AM · serversaverpcclient

Server RPC

Why doesn't this run on the server?

     function OnDisconnectedFromServer() {
        var pos = player.transform.position;
        networkView.RPC("Save", RPCMode.Server, PlayerPrefs.GetString("UserID"), pos);
     }
     
     @RPC
     function Save(UID : String, pos : Vector3) {
        Debug.Log("Why doesn't this get executed on the player that runs the server?");
        Debug.Log(UID + "'s location is: " + pos);
     }

I read a couple of times that the server can't send RPC calls to itself, does this include sending an RPC call from one pc to another on the same network?

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
Best Answer

Answer by AyAMrau · Aug 27, 2014 at 12:56 PM

OnDisconnectedFromServer() is called when the connection to server was somehow terminated, therefore you can't send it any messages.

Instead you can detect on server side that someone disconnected by using OnPlayerDisconnected()

Comment
Add comment · Show 4 · 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 ExtremePowers · Aug 27, 2014 at 01:00 PM 0
Share

Yes, but the client needs to send their data to the server so it can be saved. Any suggestions on how I can do this?

avatar image AyAMrau · Aug 27, 2014 at 01:22 PM 0
Share

Well, since you are not expecting to be disconnected, the only way is to give the server regular updates and make it assume that the most recent data is to be used in case of disconnect.

Then if a player reconnects you may need to do adjustments so the data on both sides matches.

avatar image ExtremePowers · Aug 27, 2014 at 02:01 PM 0
Share

Do you have any suggestions on how to get the players username when he disconnects?

avatar image AyAMrau · Aug 27, 2014 at 02:08 PM 0
Share

You can write OnPlayerDisconnected() method as:

 function OnPlayerDisconnected(player : NetworkPlayer)

and unity will automatically pass the argument when the function is called. The NetworkPlayer struct contains some data about the player and is also passed to other network messages such as OnPlayerConnected(), which means the server can store which player is associated with a specific NetworkPlayer. From there you can work out which player was disconnected.

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

Networking between projects: how to send ViewIDs? 1 Answer

accessing to one array from another script 2 Answers

Separating Server and Client Code 0 Answers

RPC not being called 1 Answer

RPCMode.Server works in one spot but not another 0 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