Project Zomboid

Project Zomboid

Easy Packing + Organized Storage
534 条留言
Mr. Nekuromu  [作者] 9 月 29 日 上午 10:42 
@JASONWALKER34
I'll add it to the new feature requests!
JASONWALKER34 9 月 29 日 上午 4:15 
Can you add the options to pack various clothing from vanilla and some clothing mods like authentic z and a few others please when I loot zombies in game I can get well over a thousand pounds on clothing most are the same stuff and I would love to be able to pack The clothing for easier storage as well as all the clothing from essential crafting and the other one
Mr. Nekuromu  [作者] 9 月 28 日 下午 1:05 
@moisestadeo76

In discussions, view all (6), FAQ.
moisestadeo76 9 月 28 日 上午 1:37 
firearm missing error
Mr. Nekuromu  [作者] 9 月 15 日 下午 8:01 
@H.J

There shouldn't be any changes in appearance of original in-game content! New models were added packed variants, which are different items by PZ's game-engine. There isn't any way to disable the models, since the new items (packed versions) require one!
H.J 9 月 15 日 上午 4:33 
Can't you turn off appearance changes for magazines or drinks?
Mr. Nekuromu  [作者] 9 月 9 日 上午 7:50 
@DeoS

I am unfamiliar with that mod, I would assume it does not. However depending on how that mod is coded, it's possible?
DeoS 9 月 5 日 上午 7:00 
Hi, does this mod works with inventory tetris?
Mr. Nekuromu  [作者] 8 月 29 日 上午 8:37 
@Kuchugury

Look in the discussion on this page, I have explained the 'firearmmod' and it's relevance to the issue there.

@benjamin5455

If your server is a Build 42 server, we do not support it yet. Otherwise, I would suggest loading a server with only Easypacking enabled. If it works then likely a mod is conflicting with Easypacking in your original server.
benjamin5455 8 月 28 日 上午 9:00 
For some reason i cant start my multiplayer server when i add this mod to my multiplayer server that i have before u added the mod
Kuchugury 8 月 20 日 上午 10:24 
I try to aninstall mod but nothing changes
Kuchugury 8 月 20 日 上午 10:18 
Where can i find firearmmod because of that my easy packing dont work
Kuchugury 8 月 20 日 上午 10:11 
Hello
I want to ask about mod because we added mod on our server he works directly we have menu of this mod we can pack food and books but cannot pack any items like metal scrap or rope all items that we can use to crafts we cannot pack.
Mr. Nekuromu  [作者] 8 月 20 日 上午 7:23 
@GotDaam

I am unsure about what would happen if you installed/uninstalled mid run- I would backup both the save / server in case doing so messes with something or causes issues!
Mr. Nekuromu  [作者] 8 月 20 日 上午 7:22 
@erpek @CFW Magic

These are appreciated and will be added to the issues in the github~ thanks
GotDaam 8 月 19 日 下午 12:53 
Can you install/uninstall mid run? or would I have start a fresh wipe on a dedicated server?
CFW Magic 8 月 19 日 上午 6:09 
Hey Hey People! Quick bug report.

For vanilla:

Blue pen stack x5 is broken. Here's the code:

item 5pkBluePen
{
Weight = 0.35,
Type = Normal,
DisplayName = 5 x Blue Pen,
DisplayCategory = Household,
Icon = PackOfBluePens,
}

The blue pen 5 pack is missing a worldstaticmodel and it's value was given to icon, which breaks both.

For gunfighter:

OpenpPack of flares has a broken category due to this piece of code:

Category::Firearm,

Small syntax error at the category, which puts open box of flare rounds in it's own empty category instead of in Firearm as it was intended to be.

Good luck!
erpek 8 月 13 日 上午 4:33 
Option B (wrap in an anonymous function):

local ok, err = pcall(function()
WeightAdjustment(itemType, scriptItem, params)
end)
-------------------------------------------------
If you’d like a stack trace on failure, xpcall works great:

local ok, err = xpcall(function()
WeightAdjustment(itemType, scriptItem, params)
end, debug.traceback)

if not ok then
print(("[EasyPacking] WeightAdjustment failed for %s: %s")
:format(tostring(itemType), tostring(err)))
end
-------------------------------------------------
This change keeps the current behavior (adjusting weights via DoParam) but actually protects against errors inside WeightAdjustment and avoids pcall receiving nil.


Thanks again for maintaining the mod!
erpek 8 月 13 日 上午 4:33 
Hi! First of all — thanks for the awesome mod, it’s been super useful on our B41 MP server.

While reviewing the code, I noticed a minor bug, probably (I think), in media/lua/shared/zzadjust_item_weight.lua: pcall is called with the result of WeightAdjustment(...) instead of the function itself. That means WeightAdjustment runs immediately (outside protection), and if it returns nil you end up with pcall(nil, …) → no protection and a type error. Also, any error thrown inside WeightAdjustment won’t be caught by pcall.

-------------------------------------------------
Current (problematic) pattern (simplified):

local ok, err = pcall(WeightAdjustment(itemType, scriptItem, params))
-------------------------------------------------
Safe alternatives:
-------------------------------------------------
Option A (cleanest, uses pcall’s varargs):

local ok, err = pcall(WeightAdjustment, itemType, scriptItem, params)
-------------------------------------------------
Mr. Nekuromu  [作者] 8 月 3 日 下午 7:10 
@Бамблби

Yes! Exactly, those are addons to be used with the mods they are made for. You'll notice it says 'Easy Packing For' followed by the mod name it was used with!

This is intended, and isn't needed unless you specifically have those mods and want them supported! However if you would like to check out the mods they are used for- check the FAQ in the discussions!
Mr. Nekuromu  [作者] 8 月 3 日 下午 7:05 
@☆ Sk8.Val3rie ☆

It doesn't need any mods- it's standalone!

However there are addons- in the case you do use other mods. Look in the discussions for the FAQ for further information please!
☆ Sk8.Val3rie ☆ 8 月 2 日 上午 10:16 
Could you link the needed mods, it needs mods but you dont even have them listed
Bumblebee 8 月 2 日 上午 6:52 
Good afternoon. I don't know why, but your mod needs 2 addons about weapons. I don't know why. Maybe because of my huge collection?
https://postimg.cc/3Wz5yz66
Mr. Nekuromu  [作者] 8 月 1 日 上午 6:48 
@NanoTree
I'll add it to the requested features- and see about the possibility of some configurable settings!
NanoTree 7 月 31 日 下午 2:33 
Fantastic mod! Is there any way to adjust how much packing the items reduces encumbrance? My only complaint is that stacking or packing certain things, like metal sheets for example, feels just a tad unbalanced and needs a nerf. But I'm picky about these things!
Mr. Nekuromu  [作者] 7 月 14 日 上午 9:31 
@Mister Cheung

I am not sure! It should be, I would assume but as I would suggest with any mod changes mid-game in almost any game... make backups!
Mister Cheung 7 月 14 日 上午 8:25 
Is this mod safe to add for mid-saved games?
Mr. Nekuromu  [作者] 6 月 27 日 下午 1:58 
@ɆⱠ ₲Ɽł₣Ø❥42Ø
@ReadyForTheDevil

Build 42 support has been addressed, please refrain from spamming. This will not bring b42 support any quicker.
ReadyForTheDevil 6 月 27 日 上午 2:35 
b42
ɆL ₲Rł₣Ø❥42Ø 6 月 27 日 上午 2:18 
b42
Mr. Nekuromu  [作者] 6 月 10 日 上午 5:24 
@Glaviern

Read the FAQ in the Discussions.

@Maceika - Allkeyshop

It should be working just fine on the latest stable build of 41. If it still isn't working, please try making a server with only this mod enabled. If it still doesn't work- feel free to let us know!
Glaviern 6 月 9 日 下午 5:52 
B42?
Maceika - Allkeyshop 5 月 29 日 下午 2:12 
does this work on Multiplayer (Host)? My server cant properly start when this is on
Mr. Nekuromu  [作者] 4 月 20 日 下午 1:35 
@Lil Boogie
Is this using Build 42? Or is this still Build 41? I am aware that Firearms (previously Firearms B41) has had updates - but I am less aware of the changes that have occurred with Gunfighter 2
Lil Boogie 4 月 19 日 下午 3:52 
Hey could yall fix the GunFighterAddOn for this mod? They don't work & are unpackable. All the "Box of (ammo type)" packables can't be unpacked.
Mr. Nekuromu  [作者] 4 月 19 日 上午 10:31 
@Shiesty Mark
It's not officially supported, but it's already on the enhancement/new feature list!

That's not to say it isn't "unofficially" supported somewhat. If VFE uses or left some of the item names in the code intact then those have a change of working. However I will warn since it's not officially supported the interactions of Easypacking & VFE might be odd, or cause item loss or crashes.
Maine 4 月 19 日 上午 8:55 
hey there! is VFE ammo supported? my old ammo compressor mod is causing more errors then its worth, and this works great for everything ive tried so far!
Mr. Nekuromu  [作者] 4 月 19 日 上午 8:05 
@Madforce2k

Alright! Added to the enhanced features list!
Madforce2k 4 月 18 日 下午 6:23 
Vinegar would be nice to pack too, some other mods add some dependencies that lead to more frequent crafting and storage of vinegar
BarelyAlive.16 4 月 5 日 下午 3:51 
Thank you
Mr. Nekuromu  [作者] 4 月 4 日 下午 9:31 
@BarelyAlive.16

Please check the FAQ in the Discussions.
BarelyAlive.16 4 月 4 日 下午 7:25 
it says i need a mod called firearmmod. i don't know what mod that is. Can someone help
Mr. Nekuromu  [作者] 3 月 16 日 上午 6:47 
@- -
I'll add it to the things to be checked for b42 support thanks for that information!
- - 3 月 15 日 上午 9:58 
Drinks and alcohol are too heavy in b42 (2~3 kg), and it seems that only red and white wine and bottled beer can be packed.
Mr. Nekuromu  [作者] 3 月 11 日 上午 8:07 
@IlIkeCraYoNs213
See the FAQ in the discussions.
IlIkeCraYoNs213 3 月 11 日 上午 4:10 
b42?
Mr. Nekuromu  [作者] 3 月 5 日 下午 1:28 
@BlackWater821
Vanilla Firearms Expansion has been in the enhancements list since Sept 2024. As with all other requests it'll be noted and at some point in the future it might be supported!
BlackWater821 3 月 5 日 上午 11:03 
No love for Vanilla Firearms Expansion B41 ?
Mr. Nekuromu  [作者] 3 月 2 日 上午 7:22 
@Vorpal Void
That code could be redundant - I am not thoroughly familiar with the zomboid lua API. I may take a look into this at some point in the future. As for the seeing recipes always showing up, it's not something I tested -but something I can look into as well. It'll be added to the list to check up on when I can!
Vorpal Void 3 月 1 日 下午 1:24 
Strange. For some reason recipes are shown as available for me even when there is not enough items for packing them, maybe some dedicated server quirk. Looking through the recipes logic, all I can see is to destroy specified items in Pack recipes; do you even need to do that, instead of just specifying item count as input? They will be "spent" that way anyway.