There’s this one uniform that I really like and I want to add it to my server. I can’t find where to download it. This is what it looks like.
I may be missing something here, but that looks like the standard police uniform. it is already included with the game, and does not need to be downloaded. this outfit uses the MP_?_Freemode_01 model (where ? is M or F) Here are the configuration setting to use that uniform on a male…
[3] = {30,0},
[4] = {25,2},
[6] = {24,0},
[8] = {58,0},
[11] = {55,0},
[“p2”] = {2,0}
and if you want it for females:
[3] = {35,0},
[4] = {30,0},
[6] = {24,0},
[8] = {6,0},
[11] = {48,0},
[“p2”] = {2,0}
Mind you, these configurations come directly from vRP, and may need tweaking if using Essential Mode, I am not sure if “p2” is a universal setting, or one vRP labeled.
Hope this helps!
Edited: realized my first set of numbers was altered from the defaults, this is now corrected to show only vRP default values.
But even in vRP if you have a replacement s_m_y_cop_01 it doesn’t overwrite the default cop uniform in the police change room… I had to create a separate change slot for that uniform… (close to what he’s looking for) is there a way in vRP to use the default police cloakroom and use a replacement uniform and change without it changing your entire appearance … “in the cloakroom I added if you change into that smycop01 it changes your saved appearance as well”
Here is what I used for my police cloakroom:
local surgery_mcop = { model = "s_m_y_cop_01" }
local surgery_fcop = { model = "s_f_y_cop_01" }
The above sets up the outfits to be used, and goes at the top of the cloakrooms.lua file, just under the --prepare surgeries customization line, then I altered the police cloakroom like so:
["police"] = {
_config = { permissions = {"police.cloakroom"} },
["Male uniform"] = {
[3] = {30,0},
[4] = {25,2},
[6] = {24,0},
[8] = {58,0},
[11] = {55,0},
["p2"] = {2,0},
["p0"] = {46,0}
},
["Female uniform"] = {
[3] = {35,0},
[4] = {30,0},
[6] = {24,0},
[8] = {6,0},
[11] = {48,0},
["p2"] = {2,0},
["p0"] = {45,0}
},
["Male Local Uniform"] = surgery_mcop,
["Female Local Uniform"] = surgery_fcop
},
Since this is flagged as a uniform, you can remove it with the undress option to revert back to whatever you had on before setting the uniform. (My uniforms also include a police hat). In my script, the uniforms marked as local will use the default NPC model, while the ones without the word local will use the Free-mode model (mp_m_freemode_01 or mp_f_freemode_01) with accessories.
http://www.lcpdfr.com/files/file/13260-bcso-skins-for-majorpaine2015-lspd-model/1
http://www.lcpdfr.com/files/file/13206-le-revamped/
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.