Permissions needed to work better with petsFixed
Ive been trying out different ways now with the taming and it doesnt seem to work like it supposed to.

as for now as soon as I put in the pets plugin everyone will be able to just write /pet and are able to tame any animal.. that is if I dont put on the permissions for taming. but if I do that the huntrpg taming skill will tell me that it doesnt have the permission to use it... please tell me if Im wrong but it feels like the best way to handle this would be if the taming ability in huntrpg had permission groups made so that I will need to put the different animal permissions from the pet plugin in the different category based on the taming lvl.

does this make any sense to you?
In response to Deeplyfri3d ():
Ive been trying out different ways now with the taming and it doesnt seem to work like it supposed t...
The plugin will give you the permission based off of your skill level with the taming skill.
In response to Default ():
The plugin will give you the permission based off of your skill level with the taming skill.
I was looking in the huntrpg.cs file and I see that it does put the permissions that pet is using but it will still say that they dont have permission. Im not really sure where to put the permissions from the pet plugin, all I know is that if I put those permissions in the default group everyone will still be able to use /pet and be able to tame.
In response to Deeplyfri3d ():
I was looking in the huntrpg.cs file and I see that it does put the permissions that pet is using bu...
I don't use, or maintain the pets plugin.
The functionality with Hunt has been there a while, but I think it needs to be removed, as it's a not-needed portion of code.
ok I just tried putting in taming skills and then looking at permissions on my user and Im not getting it, am I doing something wrong?

looking for the perm with o.show perms its there, its just not given it when putting points into taming skill
In response to Deeplyfri3d ():
ok I just tried putting in taming skills and then looking at permissions on my user and Im not getti...
The functionality with the pets plugin was most likely lost, and I do not intend on keeping it in the plugin.
In it's current state.

I know this is an old thread but I am working on editing the Hunts and Pet mods to work better. To fix this issue where pets aren't working simply change the Config TAMETABLE to the following:

"TAMETABLE": {
    "1": "pets.chicken",
    "2": "pets.boar",
    "3": "pets.stag",
    "4": "pets.wolf",
    "5": "pets.bear",
    "6": "pets.horse"
  },​

Then in the Hunts.cs file at the bottom change the permission keys to the following:

    //permission keys
    public static class HPK
    {
        public const string CanTame = "cannpc";
        public const string CanTameChicken = "pets.chicken";
        public const string CanTameBoar = "pets.boar";
        public const string CanTameStag = "pets.stag";
        public const string CanTameWolf = "pets.wolf";
        public const string CanTameBear = "pets.bear";
        public const string CanTameHorse = "pets.horse";
    }​

This fixed the issue for me.
Locked automatically