Jump to content

valrix

Member
  • Posts

    69
  • Joined

  • Last visited

Recent Profile Visitors

1486 profile views
  1. I've noticed the slow down as well when testing my mods. After enough enable/disable cycles and game load/unloads there will be a noticeable increase in time to load and unload game files
  2. Dang, it looks like Dish Towels still have the option to 'Dry Myself" even the player is already dry
  3. The test case on line 125 of file media/lua/client/ISUI/ISInventoryPaneContextMenu.lua to check if a Dish Cloth or Bath Towel can be used to dry the player off needs parentheses around testItem:getType() == "DishCloth" or testItem:getType() == "BathTowel" to make the line look like if (testItem:getType() == "DishCloth" or testItem:getType() == "BathTowel") and playerObj:getBodyDamage():getWetness() > 0 then in order to fix a bug where the dry dish cloth has the option to be used when the player is dry because it's only checking if there's a dish towel, or if there's a bath towel and you are wet; instead of checking if they have a dish cloth or bath towel, as well as being wet.
  4. While fixing up one of my mods I noticed I had the option to "Dry myself" with a Dish Cloth when my character had not been wet yet. The error is on line 99 of file ISInventoryPaneContextMenu.lua, where the first part of the if statement: testItem:getType() == "DishCloth" or testItem:getType() == "BathTowel" should be wrapped in parentheses to separate it from the wetness > 0 test.
  5. Hmm, the way items are distributed may have changed recently. I haven't been around lately to do updates, but if I find time I can try to get this working again.
  6. As far as I know it still works and no bugs have been reported. Although, I'm always testing and tweaking it to keep the feel right.
  7. Whew, that'll take a lot of bags to seal something that big, but completely agree that we need large catchment tanks. An old idea I had was to require building it next to a house and it acts like it collects from the roof, speeding up water collection.
  8. I second this sentiment. Nearly jumped out of my seat in public from excitement!
  9. When lakes get stocked with fish it's often about 1000 fish at a time. The lake I was just camping at released 900 game trout the day before I arrived. Didn't catch anything, unfortunately.
  10. valrix

    ZConomy v0.1

    How has the distribution of Wallets and Purses been while playing on SP and MP? Personally, I've been able to find wallets pretty well on SP, but on MP I don't find much of either. Any thoughts on increasing the frequency of wallet and purse spawns a little bit over the (often useless) things otherwise spawned, or do you like it where it's at?
  11. Since I needed to work with config files and your IniIO was mostly done, I helped finish it up! IniIO.lua Usage Example: ZConomy = {};ZConomy.config = {};function ZC_config() if not fileExists(getMyDocumentFolder().."/Lua/ZConomy.ini") then local config = { ["Pop"] = 1.5, ["Snack"] = 1.25, ["Petrol"] = 0 }; ZConomy.config["Prices"] = config; IniIO.writeIni("ZConomy.ini", ZConomy.config); else ZConomy.config = IniIO.readIni("ZConomy.ini"); endendEvents.OnGameBoot.Add(ZC_config);Example Output (from above code): [Prices]Pop=1.5Snack=1.25Petrol=0
  12. I'm pretty sure you don't need to specify the separator since the exposed methods that accept file paths convert them for you.
  13. valrix

    ZConomy v0.1

    Maybe one of the wonderful community artists will help with this endeavor? *hopes at least one sees this*
  14. valrix

    ZConomy v0.1

    Added to planned features
  15. valrix

    ZConomy v0.1

    1. Thanks, I struggled for a good name for a while, haha. 2. Awesome! Hope you enjoy it! 3. It shouldn't conflict with it, but I do want to have it work with other mods like Hydrocraft seamlessly. I haven't figured out a nice catch-all yet, but will probably just add support for each mod that's requested until I can figure out a good way to do it. Thank you for the suggestion! I'll add it to the planned features list.
×
×
  • Create New...