This repository has been archived by the owner on Jul 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
72 lines (56 loc) · 1.67 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
AdoptAFuzz is a Bukkit plugin designed to allow flexibility in ownership of pets without requiring commands. At the time of this writing the only command is to reload the plugin's config file with '/adoptafuzz'.
AdoptAFuzz allows customization of economy costs, item costs, along with whether or not all pets that breed's offspring are born wild and untamed, without ownership.
Permission nodes (with full .* support):
adoptafuzz.commands.reload
adoptafuzz.admin.ocelots: true
adoptafuzz.admin.wolves: true
adoptafuzz.ocelots.unclaim
adoptafuzz.wolves.unclaim
adoptafuzz.free.item.ocelots
adoptafuzz.free.item.wolves
adoptafuzz.free.economy.adopt.ocelots
adoptafuzz.free.economy.adopt.wolves
adoptafuzz.free.economy.tame.ocelots
adoptafuzz.free.economy.tame.wolves
adoptafuzz.free.economy.unclaim.ocelots
adoptafuzz.free.economy.unclaim.wolves
Configuration file as it should be:
##
# Global Configurations.
spawns:
kittens:
untamed: false
# dontAge: false
# ageWhenClaimed: true
puppies:
untamed: false
# dontAge: false
# ageWhenClaimed: true
unclaimWith:
cats: 350
dogs: 287
avoidbugs: false
##
# Economy section.
enableEconomy: false
costs:
##
# Cost to unclaim a pet the user owns.
unclaim:
cats: 0
dogs: 0
##
# Kickback to original owner when pet is adopted.
reimburse:
cats: 0
dogs: 0
##
# Cost to adopt a previously owned pet.
adopt:
ocelots: 0
wolves: 0
##
# Cost to tame an animal which has never been claimed before.
tame:
ocelots: 0
wolves: 0