| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // A Driver NPC that goes around a path continuously
- // Kye 2009
- //
- #include <a_npc>
- //------------------------------------------
- main(){}
- //------------------------------------------
- NextPlayback()
- {
- StartRecordingPlayback(PLAYER_RECORDING_TYPE_DRIVER,"car8761");
- }
-
- //------------------------------------------
- public OnRecordingPlaybackEnd()
- {
- NextPlayback();
- }
- //------------------------------------------
- public OnNPCEnterVehicle(vehicleid, seatid)
- {
- NextPlayback();
- }
- //------------------------------------------
- public OnNPCExitVehicle()
- {
- StopRecordingPlayback();
- }
- //------------------------------------------
|