12.09.2012, 23:46
who can tell me why when i recorded a walking npc wont moving from his place but when i makea Driving npc it works perfectly thanks for your answers
/ofrecord <<< use this command while on foot. /vrecord <<<use this command while in vehicle. /stoprecord <<<use this command to stop the recording while on foot or in vehicle
/ofrecord
#define RECORDING "footmini" //This is the filename of your recording without the extension.
#define RECORDING_TYPE 2 //1 for in vehicle and 2 for on foot.
#include <a_npc>
main(){}
public OnRecordingPlaybackEnd() StartRecordingPlayback(RECORDING_TYPE, RECORDING);
#if RECORDING_TYPE == 2
public OnNPCEnterVehicle(vehicleid, seatid) StartRecordingPlayback(RECORDING_TYPE, RECORDING);
public OnNPCExitVehicle() StopRecordingPlayback();
#else
public OnNPCSpawn() StartRecordingPlayback(RECORDING_TYPE, RECORDING);
#endif