Jump to content

Leond

Member
  • Posts

    30
  • Joined

  • Last visited

About Leond

  • Birthday 05/06/1993

Profile Information

  • Gender
    Man

Recent Profile Visitors

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

Leond's Achievements

  1. Storing data outside of the function is fine. However, you will not have the most up to date information so make sure you don't use it for something that needs to have the most up to date information. Also, the code example you wrote there will only every get the body damage once. The reason for this is the `if not bd then`. This will only set it on the first pass then ignore setting the value for any other call of that function. This is assuming you don't have another section in the function that sets the value of bd.
  2. With OZ More Meds you don't pick your blood type. It randomly assigns you one at the start of the game. If you manage not to have a blood type you die instantly.
  3. Leond

    Hydrocraft Mod

    Does the server use Convenient Bags per chance? I haven't played in a while but I seem to remember this causing an issue with items disappearing at times. I did some looking into it but that was about 6 months ago and I can't remember what I had found out. I'd have to look into it again to be sure. I think it had something to do with packing or unpacking into a container from a bag. I could be mistaken or this could be a completely different issue.
  4. Leond

    EasyAccess v1.4

    The fixing of the freezers not showing up is awesome! Most of the quick/easy access mods don't do that. I like to be able to only have some bags able to be accessed from the inventory so I will probably make some changes for my game but this mod has been added to my must have list =)
  5. Have you been able to host other games without using hamachi? Some ISPs disable external pinging of your router to prevent attacks. Check for a "WAN Ping Block" or something similar in your router settings. It is usually under the firewall settings. Sometimes your router will have that enabled by default and you have to disable it. Again this is enabled to help prevent against attacks but disables the ability to host game servers from your computer. Are you using the router from your ISP? If not what is the brand and model of your router? Also Zomboid using more than just the default port for hosting. you need to forward enough ports for the players you plan to have playing. so a 10 player server would have the ports 16261-16271.
  6. Leond

    Hydrocraft Mod

    You can carry the dollies at full weight. You just have to have them equipped before you load them.
  7. Leond

    Hydrocraft Mod

    I think the hand dollies make sense the way they are. Yes you can move a fridge with one, hence the high capacity, however you aren't going to be moving very fast while moving the fridge. I feel they would only have to change it if/when the devs make it so you actually can get injured from being over capacity. The only thing I would like to see is a good way to drop/pickup a hand dolly that already has stuff on it. That would make the fact that you have to use up both your hands not as bad because if you get into trouble you could easily just 'drop' the dolly deal with the problem and then 'pick it up' again.
  8. Leond

    Zed Bag Patch

    Francogp brought up a good point here. I am going to continue looking for a more generic way for it to work.
  9. Zed Bag Patch With the state this is in right now I am not posting a download link. However if you would like a workaround for your mod list let me know. I can make a custom workaround patch for you. This is a patch to allow multiple mods to create Quick Access Containers in the players inventory! I like to use both Quickbags, and US Military Gear but found out that it would only allow the mod that loaded last to have the quick access bags. This 'patch' is just a modified ISQuickAccessContainers.lua with the bags from both mods. Once I have had a chance to test it and make sure it doesn't cause any weird issues with the mods conflicting then I will look at posting a download link. Todo: Known Bugs Currently supported mods Under the hood (code snippet) Let me know what you think and if you know any other mods you would like added to this patch. NOTE: This is just a patch to get these mods working together. All credit for these mods goes to their respective creators and contributors. This is kind of my first dive into PZ modding so I would really like feedback so I can learn more.
  10. Okay so I got a basic version working. turns out you don't need the mod id just the item id Here is the snippet of code. ISQuickAccessContainers.lua start line 65 ... if item:getCategory() == "Container" and getSpecificPlayer(self.player):isEquipped(item) or item:getType() == "KeyRing" or item:getType() == "Pouch" or item:getType() == "Holster" or item:getType() == "KnifeCase" or item:getType() == "FirstAidKit" or item:getType() == "TacticalCase" or item:getType() == "ExtraBag" or item:getType() == "TacticalBelt" or item:getType() == "BananaBag" or item:getType() == "TacticalBeltHol" or item:getType() == "TacticalBeltKni" or item:getType() == "TacticalBeltHolKni" or item:getType() == "TacticalBeltKniKni" or item:getType() == "TacticalBeltHolHol" or item:getType() == "LegHolsterUCP" or item:getType() == "LegHolsterMulticam" or item:getType() == "KnifeHolsterMulticam" or item:getType() == "KnifeHolsterUCP" or item:getType() == "IOTVUCP" or item:getType() == "IOTVMulticam" or item:getType() == "PlateCarrierUCP" or item:getType() == "PlateCarrierMulticam" or item:getType() == "DumpPouchUCP" or item:getType() == "DumpPouchMulticam" then ... I would like to look at making it easier to import items into a bag patch. So that anyone who wants to add bags from their mod to this list just has to use a short code to import it into a table kind of like how necroforge does it. I however have no idea how to do that at the moment. I will, however, look into it. I would also like to make it so that the patch will try to load last because right now you have to make sure it loads after the other bag mods manually.
  11. I'll give it another go and see what I can do.
  12. Leond

    Hydrocraft Mod

    That is fair enough. I do like figuring out how everything works together.
  13. Leond

    Hydrocraft Mod

    If nobody else is on this I can start working on it. feel free to let me know what items you wish had a description to them on the wiki and I'll add them to the list. Personally I would like in game "guides" you could make that gives the description of the recipes in a book. something like this: recipe Study Battery Textbook { Notebook, Keep Pen, Keep HCBookbattery Result:HCNotesBattery, Time:40.0 } Then when you use the notebook it's makes a window with descriptions for the items you can make from that book. My group however has a library in our base so we could easily keep those guides organized not sure if this would be useful for other people especially if it's being added to the wiki
  14. Leond

    Hydrocraft Mod

    Would it be possible to make compost an over time action as well? Maybe something like the current recipe for making compost makes a "compost pile" item and then over time it becomes compost? Then you could make the composting bin into a storage container to hold the compost. This would be more realistic and help decrease the time standing around the composting bin "making compost"
  15. I did see that it was in the works and am really glad that they decided to do that! It would be nice to have options to use external servers for voip as well even when voip is first released into the game as I know they plan on releasing it in stages. regular voip --> Positional voip --> Radios (maybe not in that order) The code that mumble uses for making a plugin for a game is actually fairly easy so it might not be too hard to do it. I am going to be working on the code myself just really out of practice with coding so thought I would post it here so that someone who is more practiced with programming could take a crack at it.
×
×
  • Create New...