OnPlayerStreamIn
Revision as of 15:54, 9 March 2022 by 157.46.138.66 (talk) (Created page with "{{Welcome| desc=This function is called when a player is streamed in for an NPC.| params=<syntaxhighlight lang="lua">(playerid)</syntaxhighlight> <poem>::playerid : The ID of...")
Description:
This function is called when a player is streamed in for an NPC.
Parameters:
(playerid)
playerid : The ID of the player who has streamed in.
Return Values:
This function does not return any specific values.
Example
function OnPlayerStreamIn(playerid) { print("Player "+playerid+" is streamed in to me\n"); }