Zainstaluj Steam
zaloguj się
|
język
简体中文 (chiński uproszczony)
繁體中文 (chiński tradycyjny)
日本語 (japoński)
한국어 (koreański)
ไทย (tajski)
български (bułgarski)
Čeština (czeski)
Dansk (duński)
Deutsch (niemiecki)
English (angielski)
Español – España (hiszpański)
Español – Latinoamérica (hiszpański latynoamerykański)
Ελληνικά (grecki)
Français (francuski)
Italiano (włoski)
Bahasa Indonesia (indonezyjski)
Magyar (węgierski)
Nederlands (niderlandzki)
Norsk (norweski)
Português (portugalski – Portugalia)
Português – Brasil (portugalski brazylijski)
Română (rumuński)
Русский (rosyjski)
Suomi (fiński)
Svenska (szwedzki)
Türkçe (turecki)
Tiếng Việt (wietnamski)
Українська (ukraiński)
Zgłoś problem z tłumaczeniem
Example:
enum eDefinitionType { MyObjectBuilder_Component, MyObjectBuilder_AmmoMagazine, MyObjectBuilder_PhysicalGunObject, MyObjectBuilder_Datapad, ConsumableItem };
string[] DefinitionTypeName = new string[] { "MyObjectBuilder_Component/", "MyObjectBuilder_AmmoMagazine/", "MyObjectBuilder_PhysicalGunObject/", "MyObjectBuilder_Datapad/", "MyObjectBuilder_ConsumableItem/" };
Now you can add any consumables in AddMod section. This also works for Ores and Ingots and other types of modded things.
You can see all missing objects and its types in Control Panel=>AQM (Programm Block)=>Right-bottom side of the screen (just under "Share block" section.
Here you can see something like this:
MyObjectBuilder_ConsumableItem/ClangCola
In order to add this object you need to add a line in Mod Objects section according to this guide.
Example:
AddMod("Clang Cola", "ClangCola", eDefinitionType.MyObjectBuilder_ConsumableItem, "ClangCola");
Then you will get an error.