hmm...
I think that I understood
try to check
Airdrop Organizer [Unmaintained]
Discussion in 'Plugin Support' started by WolfsDarker, Jul 8, 2015.
-
Wondering if you would add crate drop numbers. (number of crates dropped 1-10) good mod.this change would make it great
-
-
(13:06:56) | [Oxide] 12:06 PM [Info] [AirdropOrganizer] Warning: The airdrop's capacity is greater than the maximum(Capacity: 18, Max Capacity: 18).
HUH?
Any one have a config modified that works? Mine always locks up the server when I edit it.Last edited by a moderator: Aug 10, 2015 -
-
WolfsDarker updated Airdrop Organizer with a new update entry:
1.3.1
-
I attempted to add things to the drop and after reloading, the server just stopped responding, i rebooted and right as a plane spawned, it locked up again. I removed the json and relaoded the plug in after rebooting and all is well again. Im sure its something im doing but i copied a set and pasted it back in and just changed the name. Every thing is fine now with the default json running but as soon as I add something to the drop, it does it again. I think i have all the marks and lines correct as I just copied and pasted it in.
Here is my config as of right now and Im only getting 10 items per drop. What am i doing wrong? a few random BP's would be great and the rest filled randomly with resources as part of the items. Does that make any sense? Im getting confused again.
Code:{ "drop_config": { "limit_airdrops": false, "limit_count": 3, "airdrop_event": false, "airdrop_timer": 3, "airdrop_speed": 70, "control_loot": true, "draw_arrow": true, "arrow_length": 15, "arrow_duration": 60, "arrow_size": 4, "remove_orignal_loot": false, "remove_other_planes": false }, "loot_list": { "capacity": 14, "fill_capacity": true, "list": [ { "name": "weapon", "count": 2, "blueprint": false, "items_list": [ { "name": "rifle.ak", "chance": 40, "min_amount": 1, "max_amount": 1 }, { "name": "rifle.bolt", "chance": 35, "min_amount": 1, "max_amount": 1 } ] }, { "name": "blueprint", "count": 2, "blueprint": true, "items_list": [ { "name": "lantern", "chance": 20, "min_amount": 1, "max_amount": 1 }, { "name": "box.wooden.large", "chance": 15, "min_amount": 1, "max_amount": 1 } ] }, { "name": "ammo", "count": 0, "blueprint": false, "items_list": [ { "name": "ammo.rifle", "chance": 45, "min_amount": 40, "max_amount": 100 }, { "name": "ammo.pistol", "chance": 50, "min_amount": 30, "max_amount": 100 } ] } ] }, "msg_config": { "messages": { "signal": "[<color=#ffbf00>Airdrop Organizer</color>]There is too many airdrops already! Wait for your turn!", "eventcall": "[<color=#ffbf00>Airdrop Organizer</color>] Airdrop called! Next airdrop in {airdrop_timer} minutes.", "randomdrop": "[<color=#ffbf00>Airdrop Organizer</color>] Airdrop called!." } } }
-
"remove_orignal_loot": false => When this is false, it adds 6 to the capacity
"capacity": 14 => 14 + 6 = 20, higher than the max already, but then i checked your lists. in weapons you only add 2, in blueprints you only add 2 and none in ammo. This being said, you have 10 items being added while the capacity is 20. This will create a infinite loop.
Make sure you have the config file working properly. -
Ill do as you state and try it again. Im very confused as this seems harder than what i was using. Its a process for many of us as we all dont understand what is going on all the time
Im testing now to see how many i get this time. I have added more BP's to the mix and only allow 2 so that is working for me atleast. -
-
I agree its a easy .json file to update. All you have to do is to make sure your "count" from the "loot_list" doesn't end up with more than the "capacity". And the "capacity" should never be more than 18 since a airdrop can hold 18 items.
Also you need to learn what you should set true or false on. And that have WolfsDarker wrote on the plugin first page what every setting does. IF you want to the airdrop to drop items from your .json file, set remove_original_loot to false, As it say: "Remove original loot in the airdrop? True=yes, False=no". You also should set airdrop_event to true since you want the plugin to send airdrops. Control_loot to true since you want to use the loot_list you have wrote in .json. -
Hey is there any way to fix the chance to drop % cause even if you have it at 1% chance it will always drop and it doesn't choose 1 item over the other they both spawn for example i have to weapons and have modified the parameter so only 1 should spawn but both do regardless of the chance %, i would love this fixed so that it randomly chooses from a selection would be epic
-
OK, here is my entire json again. I have it set up so I have 1 weapon, 2 BP's and 1 ammo. I think. so that is 4 items in the air drop. The setting is 6, this and the other items equal to 10. i get 9 items in a drop. If I set the capacity to 14 + the loot list, I end up with 10 items in the air drop and i get errors out the wazoo. (19:39:04) | [Oxide] 6:39 PM [Info] [AirdropOrganizer] Warning: The airdrop's capacity is higher than the amount of items inside(Capacity: 12, Items: 4). It will even seem to crash the server. The error is always about more than capacity but as I add it up, im at or near capacity. What of this am I not understanding. Some one please help me understand. Maybe some one could upload a config that has 18 items in the drop so i can see where im wrong?
Code:{ "drop_config": { "limit_airdrops": false, "limit_count": 3, "airdrop_event": true, "airdrop_timer": 5, "airdrop_speed": 70, "control_loot": true, "draw_arrow": true, "arrow_length": 15, "arrow_duration": 60, "arrow_size": 4, "remove_orignal_loot": false, "remove_other_planes": false }, "loot_list": { "capacity": 6, "fill_capacity": true, "list": [ { "name": "weapon", "count": 1, "blueprint": false, "items_list": [ { "name": "rifle.ak", "chance": 40, "min_amount": 1, "max_amount": 1 }, { "name": "smg.thompson", "chance": 40, "min_amount": 1, "max_amount": 1 }, { "name": "smg.2", "chance": 40, "min_amount": 1, "max_amount": 1 }, { "name": "crossbow", "chance": 40, "min_amount": 1, "max_amount": 1 }, { "name": "pistol.revolver", "chance": 40, "min_amount": 1, "max_amount": 1 }, { "name": "longsword", "chance": 40, "min_amount": 1, "max_amount": 1 }, { "name": "bone.club", "chance": 40, "min_amount": 1, "max_amount": 1 }, { "name": "pistol.semiauto", "chance": 40, "min_amount": 1, "max_amount": 1 }, { "name": "mace", "chance": 40, "min_amount": 1, "max_amount": 1 }, { "name": "machete", "chance": 40, "min_amount": 1, "max_amount": 1 }, { "name": "rifle.bolt", "chance": 35, "min_amount": 1, "max_amount": 1 } ] }, { "name": "blueprint", "count": 2, "blueprint": true, "items_list": [ { "name": "lantern", "chance": 20, "min_amount": 1, "max_amount": 1 }, { "name": "barricade.wood", "chance": 20, "min_amount": 1, "max_amount": 1 }, { "name": "mining.pumpjack", "chance": 20, "min_amount": 1, "max_amount": 1 }, { "name": "ammo.rifle", "chance": 20, "min_amount": 1, "max_amount": 1 }, { "name": "ammo.pistol", "chance": 20, "min_amount": 1, "max_amount": 1 }, { "name": "ammo.shotgun", "chance": 20, "min_amount": 1, "max_amount": 1 }, { "name": "mining.quarry", "chance": 20, "min_amount": 1, "max_amount": 1 }, { "name": "large.furnace", "chance": 20, "min_amount": 1, "max_amount": 1 }, { "name": "generator.wind.scrap", "chance": 20, "min_amount": 1, "max_amount": 1 }, { "name": "small.oil.refinery", "chance": 20, "min_amount": 1, "max_amount": 1 }, { "name": "box.wooden.large", "chance": 15, "min_amount": 1, "max_amount": 1 } ] }, { "name": "ammo", "count": 1, "blueprint": false, "items_list": [ { "name": "ammo.rifle", "chance": 45, "min_amount": 40, "max_amount": 100 }, { "name": "ammo.pistol", "chance": 50, "min_amount": 30, "max_amount": 100 } ] } ] }, "msg_config": { "messages": { "signal": "[<color=#ffbf00>Airdrop Organizer</color>]There are too many airdrops already! Please wait for your turn!", "eventcall": "[<color=#ffbf00>Airdrop Organizer</color>] Airdrop called! The next airdrop will be in {airdrop_timer} minutes.", "randomdrop": "[<color=#ffbf00>Airdrop Organizer</color>] Airdrop called!." } } }
-
-
Can any one show me a json that works and has no server crashes? I just need to look at what Im doing wrong. Ive been trying all day and gotten no where but a bunch of pissy players!
-
WolfsDarker updated Airdrop Organizer with a new update entry:
1.3.2
-
-
You can post it but I'm using AirdropExtended now. Its a bit easier to use for me I think but a configure might help others in the future.
-
Would a command to add items to the lists help with this config file? I feel like that would fix this configuration issues everyone has.
-
The other plug in has all the items in the configure already. Maybe look at it and see how he is doing it. I am pretty sure it polls the server for the items and adds them to the config. That would make this plug in so much easier but my issue was figuring out how to set the numbers. It's extremely confusing to me. I used to think I was pretty smart until I tried to figure out that system. Nothing I tried worked for me and I crashed my server way too many times. But that's just my opinion. Right off the install, I had full air drops no counting, no confusion.