14.11.2009, 18:03
1) why did you put the whole thing when its not edited? like thats a new with defines in it there is no need for that realy
2) Try this
If this dont help then try http://forum.sa-mp.com/index.php?topic=119947.0 This was made to show you how
Or read this reply loads of times till you crack it
2) Try this
Код:
#define RECORDING "taximetristul" // <-- file name (i put for you) #define RECORDING_TYPE 1 //1 for in vehicle and 2 for on foot (changed this for you to) #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
Or read this reply loads of times till you crack it