Hallo NN-Community,
ich habe ein Problem mit meinem Admin Button zuerst einmal. Nämlich wird er mir nicht angezeigt bzw so weiß, aber ich kann drauf klicken.
Ich möchte halt ein Bild das als Button fungiert weil ich den Admin Button ausblenden möchte.
PHP
class ButtonAdminMenu : life_RscPicture
{
x = 0.311523234007085 * safezoneW + safezoneX;
y = 0.780329201381833 * safezoneH + safezoneY;
w = 0.12346322150448 * safezoneW;
h = 0.0577202024285024 * safezoneH;
colorText[] = { 1, 1, 1, 0};
colorDisabled[] = { 1, 1, 1, 0.0};
colorBackground[] = { 0, 0, 0, 0.0 };
colorBackgroundDisabled[] = { 0, 0, 0, 0.0};
colorBackgroundActive[] = { 0, 0, 0, 0};
colorFocused[] = { 0, 0, 0, 0};
colorShadow[] = { 0, 0, 0, 0};
colorBorder[] = { 0, 0, 0, 0};
idc = 2022;
access = 1;
text = "textures\admin_button.paa";
onbuttonclick = "createDialog ""life_admin_menu""";
};
Alles anzeigen
Ebenso habe ich Probleme bei meinem Inventar, er möchte z.B. das Geld Info Zeug nicht anzeigen, ebenso nicht die Gegenstände und Lizenzen:
PHP
class itemList : Life_RscListBox
{
idc = item_list;
w = 0.134374348822672 * safezoneW;
h = 0.37250056793612 * safezoneH;
colorselect[] = {1,1,1,0};
colortext[] = {1,1,1,0};
colorbackground[] = {1,1,1,0};
colorselect2[] = {1,1,1,0};
colorselectbackground[] = {1,1,1,0};
colorselectbackground2[] = {1,1,1,0};
colorscrollbar[] = {1,1,1,0};
colorpicture[] = {1,1,1,0};
colorpictureselected[] = {1,1,1,0};
colorpicturedisabled[] = {1,1,1,0};
color[] = {1,1,1,0};
coloractive[] = {1,1,1,0};
colordisabled[] = {1,1,1,0};
tooltipcolortext[] = {1,1,1,0};
tooltipcolorbox[] = {1,1,1,0};
tooltipcolorshade[] = {1,1,1,0};
x = 0.317282246301312 * safezoneW + safezoneX;
y = 0.464727637713138 * safezoneH + safezoneY;
text = "";
};
Alles anzeigen
PHP
class moneyStatusInfo : Life_RscStructuredText
{
x = 0.206303396540946 * safezoneW + safezoneX;
y = 0.72038203617151 * safezoneH + safezoneY;
h = 0.155456208087787 * safezoneH;
w = 0.103136070014586 * safezoneW;
idc = 2015;
text = "";
};
PHP
class Licenses_Menu : Life_RscControlsGroup {
idc = -1;
w = 0.103136070014586 * safezoneW;
h = 0.12903881324934 * safezoneH;
x = 0.206303396540946 * safezoneW + safezoneX;
y = 0.456208087787035 * safezoneH + safezoneY;
class Controls {
class Life_Licenses : Life_RscStructuredText
{
x = 0.206303396540946 * safezoneW + safezoneX;
y = 0.456208087787035 * safezoneH + safezoneY;
h = 0.12903881324934 * safezoneH;
w = 0.103136070014586 * safezoneW;
idc = 2014;
text = "";
};
};
};
Alles anzeigen
Danke im voraus!