StopRecordingPlayerData

StopRecordingPlayerData

Description:
Function StopRecordingPlayerData stops all the recordings that had been started with StartRecordingPlayerData for a specific player.
Function StopRecordingPlayerData was added in 0.3a and will not work in earlier versions!


Parameters:
(playerid)
int playerid The player you want to stop the recordings of.


Return Values:
  • 1: The function was executed successfully.
  • 0: The function failed to execute. This means the player specified does not exist.


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
The following functions may be useful, as they are related to this function in one way or another.