Jump to content

Planet Algol

Member
  • Posts

    49
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Planet Algol's Achievements

  1. Planet Algol

    Farming tiles

    Each crop is an individual entity that tracks thing like water level, health, various diseases. Although that works fine for individual player farms, when mappers put thousands of plots on a map it's going to have consequences. Crops will be more optimized in build 42, but even then I wouldn't recommend that mappers place lots of crops on their maps.
  2. It should be inv:AddItem(... You're missing the colon in invAddItem(...
  3. local ISHealthPanel_Old_doBodyPartContextMenu = ISHealthPanel.doBodyPartContextMenu function ISHealthPanel:doBodyPartContextMenu(bodyPart, x, y) local playerNum = self.otherPlayer and self.otherPlayer:getPlayerNum() or self.character:getPlayerNum() ISHealthPanel_Old_doBodyPartContextMenu(self, bodyPart, x, y) local context = getPlayerContextMenu(playerNum); local handlers = {} table.insert(handlers, H_Algol_Syringe:new(self, bodyPart)) self:checkItems(handlers) for _,handler in ipairs(handlers) do handler:addToMenu(context) end end This code works for my own mods that add new health panel actions.
  4. https://steamcommunity.com/sharedfiles/filedetails/?id=2660696937
  5. If anything, the widespread notion that meditation or yoga serve as some miracle panacea for mental health is harmful in that it does not work for everybody, but is used as a duct tape solution in many cases instead of people getting the real help they need.
  6. The below is only relevant if unpacking the box of nails solves your issue: Are you using one of those "Better Weapons" mods or the equivalent? Because this issue comes up all the time, and it's almost always one of those. TLDR explanation: Almost all mods of that nature overwrite the item scripts, instead of using Item Tweaker to modify them. When Vanilla PZ switched to using the (much better) Tag system for defining tools in their scripts, that meant that everyone using a Better Weapon mod that had a custom item script for hammers or screwdrivers were then shut out of being able to use them as such.
  7. It's already an existing option in the server settings.
  8. Interestingly enough, Kentucky is generally warm enough year round that the last time the river on the map froze was 1977. I think the mild winters in the game's location sometimes confuses people, but I also believe that the dev's intent is that the river also serve as a definite barrier to the players?
  9. You're probably using a mod that overwrote the script for the Can Opener item, making it incompatible with recent improvements to the item system that the devs implemented. Why someone would overwrite the Can Opener script for a mod is beyond me, but oftentimes people just have the entire item script files in their mods with the changes they made to a few items in it, so that's probably the case here.
  10. I haven't reported this, because I've found this when working on modding, but reloading is damn weird right now. With some reload action types, say shotgun, it seems to get randomly locked into the beginning of the reload process. And when reloading the game seems to read the mouse location as a aiming location, when you aren't aiming, and the screen center jumps to the mouse pointer location, which is jarring when reloading from inventory or hotbar.
  11. I will say about this that, despite some devs recently confirming that they aren't being worked on, that a lot of people are convinced that underground levels are a confirmed forthcoming features. Really, that could be on people for not being more critical about what they hear and see to a large degree, but there seems to be a lot of misinformation about this going around.
  12. There's a saying, "Pray, but keep rowing for shore"
  13. Not that answer that you want, but that is absolutely mod-able.. That's how I have the vehicle gun racks mod I made working.
×
×
  • Create New...