NPC:StartRecordingPlayback
Description:
Function NPC:StartRecordingPlayback will run a .rec file which has to be saved in the npcmodes/recordings folder. These files allow the NPC to follow certain actions. Their actions can be recorded manually. For more information, check the related functions.
Function NPC:StartRecordingPlayback was added in 0.3a and will not work in earlier versions! |
Parameters:
(playbacktype, recordname[])
int | playbacktype | The type of recording to be loaded. |
string | recordname | The filename to be loaded, without the .rec extension. |
Return Values:
This function does not return any specific values.
Examples:
public OnNPCEnterVehicle(vehicleid, seatid) { StartRecordingPlayback(PLAYER_RECORDING_TYPE_DRIVER,"at400_lv_to_sf_x1"); }
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- NPC:StopRecordingPlayback: Stops reproducing a .rec file.