nbigger 1 Posted November 25, 2018 Posted November 25, 2018 On 11/9/2018 at 12:52 PM, Revolution_RL said: For some reason it doesn't work anymore for me, i can load mods but nothing is clickable anymore since update 40 Can we get some sort of reply here? Revolution_RL 1 Quote Share this post Link to post Share on other sites
Kvadron 0 Posted February 13, 2019 Posted February 13, 2019 I'm getting "[ERROR] AlarmClockRingingLoop has children." on Importing. What should I do? Quote Share this post Link to post Share on other sites
Ciber Ninja 76 Posted February 17, 2019 Posted February 17, 2019 Suffer in silence. Quote Share this post Link to post Share on other sites
turbotutone 365 Posted March 14, 2019 Posted March 14, 2019 Eya, added version 1.3, which should fix the problem with errors during import. Full list of changes: FIXED file loading, should now ommit invalid txt files from scripts dir. CHANGED most settings are stored in registery now instead of files. CHANGED various outputs (logs, backups, temp&userdata etc) now defaults to "userorhomedir/.ItemZed/" window.txt to force window size and position now generates in .ItemZed directory as well. CHANGED some names in file menu to be more clearer. ADDED some hot buttons on the select folder bar for open/close/save CHANGED backups are now turned off by default, they can be turned on by going to folder settings and checking the backup tickbox at bottom. EUDOXIO 1 Quote Share this post Link to post Share on other sites
Vandest 0 Posted March 18, 2019 Posted March 18, 2019 Hello @turbotutone, This tool looks awesome but I tried the last version 1.3 on build 40.43 but it does not work for me. It crash during loading mods. I hope you will can do something for that soon. I look forward to use it ! Quote Share this post Link to post Share on other sites
ThyHolyNoodle 0 Posted June 7, 2019 Posted June 7, 2019 Hello, I am a beginner in coding and wanted to know if it was possible to create a Lua script using ItemZed that adds a key to an object that cures the bitten status. Quote Share this post Link to post Share on other sites
Pusheen 0 Posted July 5, 2019 Posted July 5, 2019 Current version 1.3 on build 40.43 does not work. Сrash when opening or creating a mod. This is the last thing to be seen before the crash: Quote Share this post Link to post Share on other sites
disgusdad 0 Posted October 27, 2019 Posted October 27, 2019 Not to dig up a necro thread, but is the source code available for ItemZed? There are features that are broken as noted above, and other things that don't work as expected with new(er) versions of PZ. Quote Share this post Link to post Share on other sites
Artfactial 2 Posted December 1, 2019 Posted December 1, 2019 Hm, so, some basic questions about ItemZed and distribution: -First, does the functionality still work? Reading the generated .lua seems pretty straight forward so I'm guessing it does. -When I add new items to containers in this way, does it overwrite the container or does the DataManager merge any mods that touch the same container? -What is the difference between this and the ProceduralDistribution lua method and is this preferable? -If yes, can I just copy the code for appropriate containers and add in my own items? -What it s the Rolls/chance value? A percentage? Sorry for any too obvious things but I'm new to lua. Quote Share this post Link to post Share on other sites
Broddy 1 Posted December 18, 2019 Posted December 18, 2019 (edited) @turbotutone [RU] В ItemZed имеется ошибка из-за которой она не работает правильно у значительной части людей. Из-за этого она падает после "Reading file: uniquerecipes.txt". Для преобразования в число с плавающей точкой используется float.TryParse(str, out num). Но так как эта функция зависит от текущих параметров системы и десятичный разделитель может отличаться от ".", следует использовать eё перегрузку, например float.TryParse(str, NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite | NumberStyles.AllowLeadingSign | NumberStyles.AllowDecimalPoint | NumberStyles.AllowThousands | NumberStyles.AllowExponent, new CultureInfo("en-US").NumberFormat, out num). [EN] In ItemZed there is an error due to which it does not work correctly for significant proportion of people. Because of this, the program crashes on "Reading file: uniquerecipes.txt". To convert a floating point number used float.TryParse(str, out num). But since this function depends on the current parameters of the system and the decimal separator may be different from ".", should use its overload, for example float.TryParse(str, NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite | NumberStyles.AllowLeadingSign | NumberStyles.AllowDecimalPoint | NumberStyles.AllowThousands | NumberStyles.AllowExponent, new CultureInfo("en-US").NumberFormat, out num). Edited December 19, 2019 by Broddy Quote Share this post Link to post Share on other sites