Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Network.RemoveRPCs

Switch to Manual
public static function RemoveRPCs(playerID: NetworkPlayer): void;

Parameters

Description

Remove all RPC functions which belong to this player ID.

	function OnPlayerDisconnected(player: NetworkPlayer) {
		Debug.Log("Clean up after player " +  player);
		Network.RemoveRPCs(player);
		Network.DestroyPlayerObjects(player);
	}

public static function RemoveRPCs(playerID: NetworkPlayer, group: int): void;

Parameters

Description

Remove all RPC functions which belong to this player ID and were sent based on the given group.


public static function RemoveRPCs(viewID: NetworkViewID): void;

Parameters

Description

Remove the RPC function calls accociated with this view ID number.