30.03.2011, 11:57
im working on BOOT and i have problem ,, he is just staying on the spawn pozition ,,
i was make boot which is just walking ,
can somebody fix this :
i think this is for car ,, can somebody make this just for walking pls
(orrignal copyed from https://sampforum.blast.hk/showthread.php?tid=110141)
i was make boot which is just walking ,
can somebody fix this :
i think this is for car ,, can somebody make this just for walking pls
Quote:
#define RECORDING "mynpc" //Ovo je ime filea koji ste snimali u igri. #define RECORDING_TYPE 1 //1 ako ste bili u vozilu, 2 na nogama. #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 |