21 lines
		
	
	
	
		
			540 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			540 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| CURRENT_RESOURCE = GetCurrentResourceName()
 | |
| WHEEL_BONES = {
 | |
|     ['wheel_lf'] = 0,
 | |
|     ['wheel_rf'] = 1,
 | |
|     ['wheel_lm1'] = 2,
 | |
|     ['wheel_rm1'] = 3,
 | |
|     ['wheel_lr'] = 4,
 | |
|     ['wheel_rr'] = 5,
 | |
|     ['wheel_lm2'] = 45,
 | |
|     ['wheel_lm3'] = 46,
 | |
|     ['wheel_rm2'] = 47,
 | |
|     ['wheel_rm3'] = 48
 | |
| }
 | |
| VEHICLE_BLACKLIST_REASONS = {
 | |
|     [1] = 'vehicle_is_blacklisted',
 | |
|     [2] = 'tire_is_indestructible',
 | |
|     [3] = 'vehicle_is_emergency',
 | |
|     [4] = 'tire_is_track',
 | |
|     [5] = 'tire_is_train_wheel',
 | |
|     [6] = 'tire_is_invisible'
 | |
| }
 | 
