summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/modules/naming/Naming.cmd
blob: f21f15a3948edf8cfd960db534c6b2a33dbb0ada (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.;
	}
}