summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/modules/naming/Naming.cmd
blob: 35a2dc60b1acd6290b0034f848715ce76b506190 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
command anvil {
    perm utils.naming;
	[empty] {
		run anvil;
		type player;
		help Opens anvil GUI.;
	}
}
command name {
    perm utils.naming;
	[string:name...] {
		run name name;
		type player;
		help Names item in hand.;
	}
}
command lore {
    perm utils.naming;
    [optional:-a] [string:lore...] {
		run lore -a lore;
		type player;
		help Adds lore to item in hand. Use &e-a&b to append to the lore.;
	}
}