Hallo,
Habe da einige Fragen:
1. Wie kann ich die Handy SMS so bearbeiten, dass sie ein Ton abspielt und aussieht, als wäre es ein Handy?
2. Ich habe eine neue Farmoption eingebaut, Uran. Nun habe ich das Problem, dass der Verarbeiter nicht verarbeiten möchte.
3. Wie kann ich ein 1920x1080 Bild als Dialog Hintergrund machen?
4. Wie erstelle ich Datenbankabfrage? Möchte ein neues System erstellen.
Danke schon mal an die, die mir Helfen!
Code
text = "images\laptop.paa";
x = 0.0 * safezoneW + safezoneX;
y = 0.0 * safezoneH + safezoneY;
w = 1.0 * safezoneW;
h = 1.0 * safezoneH;
Code
this enableSimulation false; this allowDamage false; this addAction[localize"STR_Process_Uran",life_fnc_processAction,"uran",0,false,false,"",' life_inv_uran_unprocessed > 0 && !life_is_processing && !life_action_inUse']; this addAction[format ["%1 ($%2)",localize (getText(missionConfigFile >> "Licenses" >> "uran_processed" >> "displayName")), [(getNumber(missionConfigFile >> "Licenses" >> "uran" >> "price"))] call life_fnc_numberText],life_fnc_buyLicense,"uran",0,false,false,"",' !license_civ_uran && playerSide isEqualTo civilian '];
Code
class uran_unprocessed {
variable = "Uranerz";
displayName = "STR_Item_Uranerz";
weight = 5;
buyPrice = -1;
sellPrice = 2000;
illegal = false;
edible = -1;
icon = "icons\ico_uranun.paa";
};
class uran_processed {
variable = "Uran";
displayName = "STR_Item_Uran";
weight = 3;
buyPrice = -1;
sellPrice = 5500;
illegal = false;
edible = 100;
icon = "icons\ico_uranpro.paa";
};
Alles anzeigen