18.11.2009, 12:38
Hummm...
Have you did it right like this made mine not work, i did't see for ages why untill i re-wrote it...
They get me the 1st time
Try them, if edit this
Kc tut
Hope this is a little more help and yes Kc's tut helps alot to
Oh if its ment to be in a vehicle thn tryvplacing the vehicle for it the right way in Kc's tut
Have you did it right like this made mine not work, i did't see for ages why untill i re-wrote it...
Код:
#define RECORDING "dance_NPC1" //This is the filename of your recording without the extension. #define RECORDING_TYPE 2 //1 for in vehicle and 2 for on foot.
Try them, if edit this
Код:
#define RECORDING "new" //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); #if RECORDING_TYPE == 1 public OnNPCEnterVehicle(vehicleid, seatid) StartRecordingPlayback(RECORDING_TYPE, RECORDING); public OnNPCExitVehicle() StopRecordingPlayback(); #else public OnNPCSpawn() StartRecordingPlayback(RECORDING_TYPE, RECORDING); #endif
Hope this is a little more help and yes Kc's tut helps alot to

Oh if its ment to be in a vehicle thn tryvplacing the vehicle for it the right way in Kc's tut