StartRecordingPlayerData

From SA-MP Wiki

Jump to: navigation, search


StartRecordingPlayerData was added in SA-MP 0.3a This function was added in SA-MP 0.3a and will not work in earlier versions!


Description:

Starts recording a player's movements to a file, which can then be reproduced by an NPC.


Parameters:
(playerid, recordtype, recordname[])
playeridThe ID of the player to record.
recordtypeThe type of recording.
recordname[]The name of the file which will hold the recorded data. It will be saved in the scriptfiles directory, with an automatically added .rec extension, you will need to move the file to npcmodes/recordings to use for playback.


Return Values:

This function does not return any specific values.


Example Usage:

if (!strcmp("/recordme", cmdtext))
{
    if(GetPlayerState(playerid) == 1)
    StartRecordingPlayerData(playerid, PLAYER_RECORDING_TYPE_ONFOOT, "MyFile");
    else if(GetPlayerState(playerid) == 2)
    StartRecordingPlayerData(playerid, PLAYER_RECORDING_TYPE_DRIVER, "MyFile");
    SendClientMessage(playerid, 0xFFFFFFFF, "All your movements are now being recorded!");
    return 1;
}

Related Functions

The following functions may be useful, as they are related to this function in one way or another.

Personal tools
Navigation
Toolbox
In other languages