Metabolism

Moved

Total Downloads: 2,348 - First Release: Oct 24, 2014 - Last Update: Jan 12, 2018

4.875/5, 16 likes
  1. Code:
    {
      "CaloriesLossRate": 0.0,
      "CaloriesSpawnValue": 500.0,
      "HealthGainRate": 0.0,
      "HealthSpawnValue": 100.0,
      "HydrationLossRate": 0.0,
      "HydrationSpawnValue": 250.0,
      "UsePermissions": true
    }
    Should techniqually not make a user with the permission lose Hydration nor Calories but it seems to tick down still. Not sure if I'm doing something wrong but things seems right
     
  2. Wulf

    Wulf Community Admin

    Did you grant the permission?
     
  3. Yes, permission should have been granted. These are the commands I've tried
    oxide.grant group admin metabolism.allow
    oxide.grant user maxaki metabolism.allow
     
  4. I really need the metabolism plugin fixed or at least a plugin that disables hydration and hunger with the correct premmision , thank you .
     
  5. Can this be used with zonemanager so it will give full health ect to players that spawn in a zone?
     
  6. Wulf

    Wulf Community Admin

    UsePermissions = true in the config, otherwise the permission is not used. Likely going to remove this.

    No, but you could easily make a small plugin that handles that.
     
  7. I re-Tested and with permission granted not worked,
    you remember that some time ago I asked you for a way to deactive the Thirst and Hunger ??
    Was because this plugin not worked and still not works :(

    I have this:
    Code:
    {
      "CaloriesLossRate": 0.0,
      "CaloriesSpawnValue": 500.0,
      "HealthGainRate": 0.0,
      "HealthSpawnValue": 100.0,
      "HydrationLossRate": 0.0,
      "HydrationSpawnValue": 250.0,
      "UsePermissions": true
    }
    and this
    grant group default metabolism.allow

    MY POST WAS THIS:
    Metabolism | Page 6 | Oxide


    My solution by now is set Comfort 100 in zone.
    I think @Benn13 needs this and to set a command to give health to players in a zone with "zone command", I know there is a plugin that do it
     
  8. Wulf

    Wulf Community Admin

    Wulf updated Metabolism with a new update entry:

    2.4.0

     
  9. Wulf

    Wulf Community Admin

    Wulf updated Metabolism with a new update entry:

    2.4.1

     
  10. Setting health doesn't seem to change the value from 100. (I have reloaded and granted myself the permission..) Also settings the Calorie/Hydration values to 0 do not stop from ticks.
     
  11. Wulf

    Wulf Community Admin

    Are you using other plugins such as Godmode that also modifies this?
     
  12. We have it installed but it's not active on myself.

    Edit: Even if the value is on 0, it seems to tick faster than the default tick.

    Edit: If I set to the health to 82.0, the config also reverts it back to 100.0
     
  13. Wulf

    Wulf Community Admin

    Did you grant the permission?
     
  14. Yes, as when I revoke the permission I stop ticking like crazy.
     
  15. still not works!
    UsePermissions = true on config
    granted to one group but full metabolism have all players
    there is vanish plugin but not activated
     
  16. Wulf

    Wulf Community Admin

    Which group did you grant them to? Do you have god mode enabled from another plugin?
     
  17. Thanks for the plugin. I modified this in my personal to grant mods/owner easy metabolize functionality:

    [ConsoleCommand("metabolize")]
    void CommandMetabolize(ConsoleSystem.Arg arg)
    {
    var player = arg.Connection.player as BasePlayer;
    if (player == null || player.net.connection.authLevel < 1) return;

    Metabolize(player);

    string message = "metabolize";
    player.ConsoleMessage(message);
    }
     
  18. Wulf

    Wulf Community Admin

    That would be the same as what the Healer plugin already does essentially. Healer | Oxide
     
  19. I set the plugin as follows for everyone:
    now I would like the admin not to use hunger/thirst, would that be possible?
     
  20. Wulf

    Wulf Community Admin

    The Godmode plugin would offer that.