Loot Spawn Lists [Unmaintained]
Discussion in 'Plugin Support' started by thomasfn, Jan 6, 2014.
-
I wait too for confirmation, the loot table is necessary for my server.
-
What is gonna happen here? Zomespawnlist is not needed. But what is the replacement for this so we can edit the loottables on wolves and bears? I dont want my server economy to be trashed.
Waiting for a confirmation on what to do.. -
I can confirm that after the patch Loot Tables are working just fine on infected bears/wolves.
-
But we'll need to add lock picks to the tables if we want them to drop.
-
-
The loot tables are the same - it was a model replacement. Continue using the same controllers as before and modify to your liking. If you have resource map, try /resourceadd "RedBear" ";npc_zombie" <-- if this works then it explains that zombies are not 100% removed except the model.
It seems that they've changed to this:
Red Zombies = Red Wolves
Black Zombies = Red Bears -
Like make it worth ~$100 each or something - or used as tickets for events/lotto/entries of some kind.
-
-
Weighting is like an ugly percentage. It doesn't have to add up to 100. You can have a section with four items weighted 100,100,100,100 and each will have a 25% chance to drop. (100 *4 = 400. 100/400 is 25%) Thats nice round math... but a loot table with numbers like 100,515,10,14,73... percentages are a PITA to figure out. On my loot tables I made sure every section adds up to 100 to make it more human readable.
Changing the amount that drops is done by changing the MIN and MAX on the item's line. The weight determines its chance to drop compared to all other weights in that section. -
Ok so Redwolfs and bears are the same loot tables as the zombies at the moment? And that is confirmed correct?
And lockpicks only thing that needs to be added. -
This is confirmed correct.
Red bears + Red wolves = Zombie list
Code:{ "ZombieLootList": { "min": 2, "max": 3, "oneofeach": false, "nodupes": true, "packages": { "0": { "min": 1, "max": 6, "weight": 5, "object": "Raw Chicken Breast" }, "1": { "min": 1, "max": 6, "weight": 5, "object": "Cloth" }, "2": { "min": 1, "max": 3, "weight": 5, "object": "Leather" }, "3": { "min": 1, "max": 2, "weight": 5, "object": "Blood" }, } },
my loot list until i figure out what to do seems to be way more red bear/wolves than zombies... -
Ok thx.
-
Last edited by a moderator: Feb 7, 2014
-
So I can use the exact same loot table and the ZombieLootList will now apply to their replacements? I cant verify this myself right now but I would like to get my server back up.. Any answer is appreciated.
-
Hi
I'm using a spawn list with "Nothing" in some containers.
And I got this error message when I launch the server:
ERROR: lootspawnlists: Couldn't find datablock by name 'Nothing'!
Is there somethting wrong ?
Thanks. -
there is no item named nothing its looking for an item named "Nothing"[DOUBLEPOST=1391781926][/DOUBLEPOST]
Red bears + Red wolves = Zombie list -
Okay.
I use this spawnlist: http://oxidemod.org/resources/rare-military-weapons-c4.160/
I think that the "Nothing" item refers to a chance the container has to drop nothing. Does is make sense ? -
However when fiddling around with weight and lowering the minimum to 0 you can make a chance of not finding anything.
Here an example of how i use that:
"WeaponSpawnList": {
"min": 1,
"max": 1,
"oneofeach": true,
"nodupes": true,
"packages": {
"0": {
"min": 1,
"max": 1,
"weight": 55,
"object": "SideArmList"
},
"1": {
"min": 0,
"max": 1,
"weight": 30,
"object": "PrimaryWeaponList"
},
"2": {
"min": 1,
"max": 3,
"weight": 15,
"object": "F1 Grenade"
}
}
},
So that everytime you loot a weaponchest you have a 30% chance of finding a (random) "primary weapon".
Oh and in case anyone is wondering why this table.... It's a deathmatch server. -
Okay, I understand !
Thanks !!