warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
StopRecordingPlayerData
Description
Stops all the recordings that had been started with StartRecordingPlayerData for a specific player.
Name | Description |
---|---|
playerid | The player you want to stop the recordings of. |
Returns
This function does not return any specific values.
Examples
public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp("/stoprecording", cmdtext))
{
StopRecordingPlayerData(playerid);
SendClientMessage(playerid, 0xFFFFFFFF, "Your recorded file has been saved to the scriptfiles folder!");
return 1;
}
}
Related Functions
- StartRecordingPlayerData: Start recording player data.