note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
OnNPCConnect
Description
This callback is called when a NPC successfully connects to the server.
Name | Description |
---|---|
myplayerid | The playerid the NPC has been given |
Examples
public OnNPCConnect(myplayerid)
{
printf("I successfully connected the server with ID %i!", myplayerid);
}
Related Callbacks
The following callbacks might be useful, as they're related to this callback in one way or another.
- OnNPCDisconnect: This callback is called when the NPC gets disconnected from the server.
- OnPlayerConnect: This callback is called when a player connects to the server.
- OnPlayerDisconnect: This callback is called when a player leaves the server.