OnPlayerStreamOut

From NPC for VCMP 0.4 Servers
Jump to navigation Jump to search


Description:
This function is called when a player is streamed OUT for an NPC.


Parameters:

(playerid)

playerid : The ID of the player who has streamed out.


Return Values:
This function does not return any specific values.


Example

function OnPlayerStreamOut(playerid)
{
	print("Player "+playerid+" destreamed\n");
}