Gewisse Fehler weiß ich die In den Logfiles stehen (Braucht ihr nicht drauf hinweisen), aber die für die PlayerSkins leider nicht
Code
Playerskins:
if (uniform player isEqualTo "U_Rangemaster") then {
player setObjectTextureGlobal [0, "textures\cop_uniform.jpg"];
};
if (uniform player isEqualTo "U_BG_Guerrilla_6_1") then {
if(FETCH_CONST(life_coplevel) == 2) then
{
player setObjectTextureGlobal [0, "textures\cop\oberkommissar.jpg"];
};
if(FETCH_CONST(life_coplevel) == 3) then
{
player setObjectTextureGlobal [0, "textures\cop\oberkommissar.jpg"];
};
if(FETCH_CONST(life_coplevel) == 4) then
{
player setObjectTextureGlobal [0, "textures\cop\hauptkommissar.jpg"];
};
if(FETCH_CONST(life_coplevel) == 5) then
{
player setObjectTextureGlobal [0, "textures\cop\hauptkommissar.jpg"];
};
if(FETCH_CONST(life_coplevel) == 6) then
{
player setObjectTextureGlobal [0, "textures\cop\polizeivorstand.jpg"];
};
if(FETCH_CONST(life_coplevel) == 7) then
{
player setObjectTextureGlobal [0, "textures\cop\polizeivorstand.jpg"];
};
};
if (uniform player isEqualTo "U_B_CombatUniform_mcam_vest") then {
if(FETCH_CONST(life_coplevel) == 5) then
{
player setObjectTextureGlobal [0, "textures\cop\cop_uniform_rank5.paa"];
};
if(FETCH_CONST(life_coplevel) == 6) then
{
player setObjectTextureGlobal [0, "textures\cop\cop_uniform_rank6.paa"];
};
if(FETCH_CONST(life_coplevel) == 7) then
{
player setObjectTextureGlobal [0, "textures\cop\cop_uniform_rank7.paa"];
};
if(FETCH_CONST(life_coplevel) == 8) then
{
player setObjectTextureGlobal [0, "textures\cop\cop_uniform_rank8.paa"];
};
if(FETCH_CONST(life_coplevel) == 9) then
{
player setObjectTextureGlobal [0, "textures\cop\cop_uniform_rank9.paa"];
};
if(FETCH_CONST(life_coplevel) == 10) then
{
player setObjectTextureGlobal [0, "textures\cop\cop_uniform_rank10.paa"];
};
};
Alles anzeigen