RPC Multiple Parameters

Quick question,

I was just wondering if I can send multiple parameters in an RPC call?

networkView.RPC("method",RPCMode.All, arg1, arg2, argETC);

I’m currently using a string and splitting it apart. Thanks!

Yes, by just using the syntax you showed in your example. Arguments for the RPC call must match arguments for the function you’re calling (well, duh) or you will get a runtime error.