Hallo !
Meine Anziehsachen der Cops werden nicht angezeigt
Code
uniforms[] = {
{ "NONE", "Remove Uniform", 0, { "", "", -1 } },
{ "U_Rangemaster", "Cop Uniform", 25, { "", "", -1 } },
{ "U_B_CTRG_3", "Bundespolizist Rang 1", 350, { "life_coplevel", "SCALAR", 1 } },
{ "U_B_CTRG_3", "Bundespolizist Rang 2", 1250, { "life_coplevel", "SCALAR", 2 } },
{ "U_B_CTRG_3", "Bundespolizist Rang 3", 1250, { "life_coplevel", "SCALAR", 3 } },
{ "U_B_CombatUniform_mcam", "Bundespolizist Rang 4", 1250, { "life_coplevel", "SCALAR", 4 } },
{ "U_B_CombatUniform_mcam", "Bundespolizist Rang 5", 1250, { "life_coplevel", "SCALAR", 5 } },
{ "U_B_CombatUniform_mcam", "Bundespolizist Rang 6", 1250, { "life_coplevel", "SCALAR", 6 } },
{ "U_B_CombatUniform_mcam", "Bundespolizist Rang 7", 1250, { "life_coplevel", "SCALAR", 7 } }
};
Alles anzeigen
Code
//COP KLEIDUNG
if(playerSide == west) then {
switch(_type) do {
case "U_Rangemaster" : {
_path = "main\textures\human\cop\Anwaerter_Polizeimeister.paa";
_unit setObjectTextureGlobal [0,_path];
};
case "U_B_CTRG_3" : {
_path = "main\textures\human\cop\polizei_uniform_einsatz_coplvl1.paa";
_unit setObjectTextureGlobal [1,_path];
};
case "U_B_CTRG_3" : {
_path = "main\textures\human\cop\polizei_uniform_einsatz_coplvl2.paa";
_unit setObjectTextureGlobal [2,_path];
};
case "U_B_CTRG_3" : {
_path = "main\textures\human\cop\polizei_uniform_einsatz_coplvl3.paa";
_unit setObjectTextureGlobal [3,_path];
};
case "U_B_CombatUniform_mcam" : {
_path = "main\textures\human\cop\polizei_uniform_einsatz_coplvl4.paa";
_unit setObjectTextureGlobal [4,_path];
};
case "U_B_CombatUniform_mcam" : {
_path = "main\textures\human\cop\polizei_uniform_einsatz_coplvl5.paa";
_unit setObjectTextureGlobal [5,_path];
};
case "U_B_CombatUniform_mcam" : {
_path = "main\textures\human\cop\polizei_uniform_einsatz_coplvl6.paa";
_unit setObjectTextureGlobal [6,_path];
};
case "U_B_CombatUniform_mcam" : {
_path = "main\textures\human\cop\polizei_uniform_einsatz_coplvl7.paa";
_unit setObjectTextureGlobal [7,_path];
};
};
Alles anzeigen
Where is the Problem :(?
Im Anhang ist die Datei..^^ Anwärter für den U_Rangemaster und das andere ist irgendwie beschissen also die Klasse check ich nicht^^ und coplvl1 für irgendwas
MFG
Chris