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 Skullwing · Feb 25, 2014 at 09:32 PM · javascripterrorserverclientinternet

RPC Error function not found

Hello, I work on the server software for my game and have a problem now, where I just can't figure out, what's wrong. Maybe you can help me.

It says that the function "SendDataToUser" can't be found in the server script.

Server Code:

 function Start() {
 Network.InitializeServer(int.Parse(connections),int.Parse(serverPort),useNAT);
 }
 
 @RPC
 function ReceiveUserData(data : String, info : NetworkMessageInfo) {
     highscores.Add(data);
     SendDataToUser(info);
     console += "Received a new score.";
 }
 
 
 @RPC
 function SendDataToUser(info : NetworkMessageInfo) {
 var text : String = Array(highscores).Join("");
         networkView.RPC("decodeWWW",RPCMode.All,text);
 }

and the Client Code:

 function DownloadScore() {
     Network.Connect("127.0.0.1",20015);
     yield WaitForSeconds (2);
     networkView.RPC("SendDataToUser", RPCMode.Server);
 }
 
 
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

2 Replies

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

Answer by Skullwing · Feb 26, 2014 at 08:01 AM

I found it out, if you want the RPC functions to work you have to add the scripts always to both. So, if you want to access a routine in the serversoftware you have to add the scipt of the server to the object the client script is atached to, just disable it and everything is fine.

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 ForeverGameStudios · Feb 25, 2014 at 09:42 PM

Hi try making the @RPC's public functions

 @RPC
 public function ReceiveUserData(data : String, info : NetworkMessageInfo) {
     highscores.Add(data);
     SendDataToUser(info);
     console += "Received a new score.";
 }
  
  
 @RPC
 public function SendDataToUser(info : NetworkMessageInfo) {
 var text : String = Array(highscores).Join("");
        networkView.RPC("decodeWWW",RPCMode.All,text);
 }
Comment
Add comment · Show 2 · 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 ForeverGameStudios · Feb 25, 2014 at 09:42 PM 0
Share

If not put the RPC's and the RPC calls on the same script and keep them public

avatar image Skullwing · Feb 25, 2014 at 10:23 PM 0
Share

The first one didn't work and how shall I put them both on the same script? Both scripts are totally diffent in general...would it change anything if both scripts were the same, that one on the server and that one on the client?

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

21 People are following this question.

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

Related Questions

Server still sending Packets to inactive clients and throwing errors. How can I stop it? 0 Answers

Error: "A client which was not in the connected player list disconnected. ???" 1 Answer

Client cannot connect to my local server over internet 0 Answers

Server & client on same wifi, error 1 Answer

Server Client internet connection 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