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.
OnPlayerFinishedDownloading
warning
This callback was added in SA-MP 0.3.DL R1 and will not work in earlier versions!
Description
This callback is called when a player finishes downloading custom models. For more information on how to add custom models to your server, see the release thread and this tutorial.
Name | Description |
---|---|
playerid | The ID of the player that finished downloading custom models. |
virtualworld | The ID of the virtual world the player finished downloading custom models for. |
Returns
This callback does not handle returns.
Examples
public OnPlayerFinishedDownloading(playerid, virtualworld)
{
SendClientMessage(playerid, 0xFFFFFFFF, "Downloads finished.");
return 1;
}
Notes
tip
This callback is called every time a player changes virtual worlds, even if there are no custom models present in that world.
Related Callbacks
The following callbacks might be useful, as they're related to this callback in one way or another.
- OnPlayerConnect: This callback is called when a player connects to the server.
- OnPlayerDisconnect: This callback is called when a player leaves the server.
- OnIncomingConnection: This callback is called when a player is attempting to connect to the server.