18.10.2009, 14:10
*Looks up*
The .recґs are inside the npcmodes/recordings, the .amxґs are inside the npcmodes folder, the .amxґs look like
Yeah - should be good.
The .recґs are inside the npcmodes/recordings, the .amxґs are inside the npcmodes folder, the .amxґs look like
Код:
#define RECORDING "hunter1" //This is the filename of your recording without the extension. #define RECORDING_TYPE 1 //1 for in vehicle and 2 for on foot. #include <a_npc> main(){} public OnRecordingPlaybackEnd() StartRecordingPlayback(RECORDING_TYPE, RECORDING); public OnNPCEnterVehicle(vehicleid, seatid) StartRecordingPlayback(RECORDING_TYPE, RECORDING); public OnNPCExitVehicle() StopRecordingPlayback();