22 lines
		
	
	
	
		
			730 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			730 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
-- change holster clothing when pulling out or hosltering weapon.
 | 
						|
-- variation can be found here: https://docs.fivem.net/natives/?_0x67F3780DD425D4FC
 | 
						|
-- Male & female keys have these: {holstered, unholstered}
 | 
						|
 | 
						|
return {
 | 
						|
    {
 | 
						|
        weapons = {`weapon_pistol_mk2`,`WEAPON_REVOLVER`,`WEAPON_HEAVYPISTOL`,`WEAPON_APPISTOL`},
 | 
						|
        variation = 7,
 | 
						|
        male = {182, 186},
 | 
						|
    },
 | 
						|
    {
 | 
						|
        weapons = {`weapon_pistol_mk2`,`WEAPON_REVOLVER`,`WEAPON_HEAVYPISTOL`,`WEAPON_APPISTOL`},
 | 
						|
        variation = 7,
 | 
						|
        male = {179, 183},
 | 
						|
        female = {221, 220}
 | 
						|
    },
 | 
						|
    {
 | 
						|
        weapons = {`weapon_pistol_mk2`,`WEAPON_REVOLVER`,`WEAPON_HEAVYPISTOL`,`WEAPON_APPISTOL`},
 | 
						|
        variation = 7,
 | 
						|
        male = {187, 188}
 | 
						|
    }
 | 
						|
}
 |