Jump to content

tacman1981

Creator
  • Posts

    272
  • Joined

  • Last visited

Everything posted by tacman1981

  1. tacman1981

    xp reward

    also interested in whether we will get xp rewards for bradley drops, same as heli signals.
  2. you should post support requests in the support page, not discussion tab
  3. tacman1981

    on server save

    Failed to call hook 'OnServerSave' on plugin 'StaticLootables v2.10.2' (IndexOutOfRangeException: Index was outside the bounds of the array.) at ProtoBuf.ItemContainer.Serialize (BufferStream stream, ProtoBuf.ItemContainer instance) [0x00016] in <b17341b6b49847f7b617cfc24b19e34f>:0 at Oxide.Plugins.StaticLootables.SaveContainer () [0x0003a] in <89b4151ef3a742a7b9302613f36d14fd>:0 at Oxide.Plugins.StaticLootables.OnServerSave () [0x00000] in <89b4151ef3a742a7b9302613f36d14fd>:0 at Oxide.Plugins.StaticLootables.DirectCallHook (System.String name, System.Object& ret, System.Object[] args) [0x002c1] in <89b4151ef3a742a7b9302613f36d14fd>:0 at Oxide.Plugins.CSharpPlugin.InvokeMethod (Oxide.Core.Plugins.HookMethod method, System.Object[] args) [0x00079] in <42f9bedc659b4f4786eb778d3cd58968>:0 at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x000de] in <8cb2d664f1574f2b96d53f1c1869d96a>:0 at Oxide.Core.Plugins.Plugin.CallHook (System.String hook, System.Object[] args) [0x00060] in <8cb2d664f1574f2b96d53f1c1869d96a>:0 literally every time the server saves this happens after a short delay in console.
  4. tacman1981

    broken again it seems

    client ready is haunting us again until uninstalling this mod.
  5. you should post a ticket if you are having issues, this is a discussion thread not meant for support queries.
  6. this is known for a long time. its how loottable handles the multipliers. i stopped using it for gathering multipliers and use gather manager instead, this solved the hard locked values that skill tree was unable to override, or even have any effect on
  7. tacman1981

    Craft Menu

    seems to have been skipped over updating this 1.
  8. tacman1981

    Craft Menu

    lol, this patch for Clear() now needs the bool removing from the brackets in the coming update.
  9. tacman1981

    Simple Status

    this breaks on thursday, its a really simple fix, i think they finally corrected a spelling error in the referenced class.
  10. tacman1981

    error

    private object CanStackItem(Item source, Item target) { if (source == null || target == null) return null; if (!_furnacesData.ContainsKey(source.uid.Value) || !_furnacesData.ContainsKey(target.uid.Value)) { return null; } return false; }
  11. tacman1981

    error

    if (source == null || target == null) return null; if (!_furnacesData.ContainsKey(source.uid.Value) || !_furnacesData.ContainsKey(target.uid.Value)) { return null; } return false; this is months old now, I've had zero issues ever since I changed the check into this, obviously I haven't updated since this, because every update since has just broke it again. I haven't updated since December when I made this change and it works perfectly, stopped conflict spam and prevented the items inside furnace from creating new unstackable cooked items. it may need the same check for the mixing table, which is a weird addition for a furnace plugin
  12. Version 1.0.6

    21 downloads

    This plugin is simple, the config file self populates with all food items, and includes a range of metabolism effects that players can gain. When the config first creates, it includes default values for every food type. does not include liquids yet. The config allows various changes to the metabolism effects related to food. Includes random chance for bad effect when eating pickles. It also includes a no cooldown on eat, if set to true in config, for everyone. Below is what the config looks like on initial load, any changes made will require a reload of the plugin to take effect when eating the food type. Set to negative to reduce the effect instead of increase. Config: { "Remove eating cooldown (players can spam eat the following food with this setting)": false, "Food Items and their metabolism effects": { "apple": { "calories": 30.0, "hydration": 15.0, "health": 2.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "apple.spoiled": { "calories": 15.0, "hydration": 2.0, "health": 2.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "black.raspberries": { "calories": 40.0, "hydration": 20.0, "health": 10.0, "poison": -5.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "blueberries": { "calories": 30.0, "hydration": 20.0, "health": 10.0, "poison": -5.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "grub": { "calories": 3.0, "hydration": -15.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "worm": { "calories": 1.0, "hydration": -10.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "cactusflesh": { "calories": 5.0, "hydration": 20.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 3.0 }, "can.beans": { "calories": 100.0, "hydration": 25.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 4.0 }, "can.tuna": { "calories": 50.0, "hydration": 15.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 2.0 }, "chocolate": { "calories": 100.0, "hydration": 1.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 2.0 }, "fish.cooked": { "calories": 60.0, "hydration": 15.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 5.0 }, "fish.raw": { "calories": 5.0, "hydration": 1.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "fish.minnows": { "calories": 10.0, "hydration": 1.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 1.0 }, "granolabar": { "calories": 60.0, "hydration": 0.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 5.0 }, "chicken.burned": { "calories": 10.0, "hydration": 0.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 2.0 }, "chicken.cooked": { "calories": 40.0, "hydration": 3.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 10.0 }, "chicken.raw": { "calories": 20.0, "hydration": 0.0, "health": 0.0, "poison": 10.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "chicken.spoiled": { "calories": 10.0, "hydration": 2.0, "health": 0.0, "poison": 10.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "deermeat.burned": { "calories": 10.0, "hydration": 0.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 2.0 }, "deermeat.cooked": { "calories": 40.0, "hydration": 3.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 10.0 }, "deermeat.raw": { "calories": 20.0, "hydration": 0.0, "health": 0.0, "poison": 10.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "horsemeat.burned": { "calories": 10.0, "hydration": 0.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 2.0 }, "horsemeat.cooked": { "calories": 45.0, "hydration": 3.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 8.0 }, "horsemeat.raw": { "calories": 20.0, "hydration": 0.0, "health": 0.0, "poison": 10.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "humanmeat.burned": { "calories": 6.0, "hydration": -30.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "humanmeat.cooked": { "calories": 30.0, "hydration": -30.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 2.0 }, "humanmeat.raw": { "calories": 5.0, "hydration": -3.0, "health": 0.0, "poison": 10.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "humanmeat.spoiled": { "calories": 10.0, "hydration": 2.0, "health": 0.0, "poison": 10.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "bearmeat.burned": { "calories": 25.0, "hydration": 0.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 1.0 }, "bearmeat.cooked": { "calories": 100.0, "hydration": 1.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 5.0 }, "bearmeat": { "calories": 10.0, "hydration": 3.0, "health": 0.0, "poison": 5.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "wolfmeat.burned": { "calories": 15.0, "hydration": 0.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 1.0 }, "wolfmeat.cooked": { "calories": 60.0, "hydration": 1.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 5.0 }, "wolfmeat.raw": { "calories": 20.0, "hydration": 0.0, "health": 0.0, "poison": 10.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "wolfmeat.spoiled": { "calories": 10.0, "hydration": 2.0, "health": 0.0, "poison": 10.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "meat.pork.burned": { "calories": 15.0, "hydration": 0.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 1.0 }, "meat.pork.cooked": { "calories": 60.0, "hydration": 1.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 5.0 }, "meat.boar": { "calories": 60.0, "hydration": 0.0, "health": 0.0, "poison": 5.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "mushroom": { "calories": 15.0, "hydration": 5.0, "health": 3.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "jar.pickle": { "calories": 50.0, "hydration": 20.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 5.0 }, "halloween.candy": { "calories": 25.0, "hydration": 0.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 1.0 }, "candycaneclub": { "calories": 300.0, "hydration": 100.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 16.0 }, "black.berry": { "calories": 5.0, "hydration": 2.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "blue.berry": { "calories": 5.0, "hydration": 2.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "green.berry": { "calories": 5.0, "hydration": 2.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "red.berry": { "calories": 5.0, "hydration": 2.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "white.berry": { "calories": 5.0, "hydration": 2.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "yellow.berry": { "calories": 5.0, "hydration": 2.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 0.0 }, "corn": { "calories": 75.0, "hydration": 10.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 6.0 }, "potato": { "calories": 125.0, "hydration": 5.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 6.0 }, "pumpkin": { "calories": 100.0, "hydration": 30.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 10.0 }, "cakefiveyear": { "calories": 100.0, "hydration": 1.0, "health": 0.0, "poison": 0.0, "bleeding": 0.0, "radiation_poison": 0.0, "pending_health": 10.0 } } }
    $4.00
  13. tacman1981

    error

    so basically now, we are forced to set furnace stack size to 1 in loottable, thats not a fix, thats a workaround. you could do a reverse dictionary check like i showed you and it wont conflict with anything
  14. tacman1981

    no longer functions

    it is related to the horse class changing, the horses that spawn are no longer the referenced type.
  15. there is a video tutorial on how to create the test perms node in the description, it is how i was able to add a bunch of new skills that are just plugins with permissions.
  16. it seems that bradley tiers is taking no notice of bradley drops, assigning them different values compared to the bradley drops config settings.
  17. tacman1981

    no longer functions

    in the latest update, using the command no longer changes the breed of the horse, there is also no feedback in console or in player chat when running the command successfully, it just no longer changes the horse breed.
  18. hey, i saw you put out an update and still never fixed the stacking issue. you should really consider this as i have tested it for almost 2 whole months and never had a single conflict. i fear installing this update will make it start happening again. i even fixed the problem for you and you just ignore it....
  19. i suggest you fix the stacking issue that loottable users experience. with the fix i gave you in the support request about the very same issue, you have to reverse the dictionary check compared to how its being done now or it will just keep spamming new stacks of items inside of the furnace, which wont stack on the same items, consuming slots and turning them off prematurely.
  20. is it possible to get an option for players to toggle the status bar off if they dont want to see it?
  21. The latest version does not compile, it is the same error as it was on staging Error while compiling JetPack: 'JetPack.MovableBaseMountable.GetDismountPosition(BasePlayer, out Vector3, bool)': no suitable method found to override | Line: 1111, Pos: 34
  22. ive seen it happening after exploring my live server logs. is there any complaints about it not working after this error? this particular output is the output in the "catch" but it should have been followed by an error type as in {ex.Message} which is blank in my findings too.
  23. ok, this patch requires adding as an update, so there is no more conflicts with loottable and random items being unstackable inside upgraded furnaces. it stopped happening once i added the above patch, should also be universal to fix all stacking issues across the board.
  24. i guess this is when the christmas drops happen maybe?
1.8m

Downloads

Total number of downloads.

8.2k

Customers

Total customers served.

123.4k

Files Sold

Total number of files sold.

2.5m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.