-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpluginblocker-minecraft.sk
More file actions
119 lines (102 loc) · 2.71 KB
/
pluginblocker-minecraft.sk
File metadata and controls
119 lines (102 loc) · 2.71 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
on join:
set join message to ""
send ""
send ""
send ""
send ""
send ""
send ""
send ""
send ""
send ""
send ""
send ""
send ""
send ""
send ""
send ""
send ""
send ""
On quit:
set leave message to ""
on command "/pl":
cancel event
send "&4You don't have access to that command! "
on command "/plugins":
cancel event
send "&4You don't have access to that command! "
on command "/bukkit:pl":
cancel event
send "&4You don't have access to that command! "
on command "/bukkit:plugins":
cancel event
send "&4You don't have access to that command! "
on command "/?":
cancel event
send "&4You don't have access to that command!"
on command "/bukkit:?":
cancel event
send "&4You don't have access to that command!"
on command "/version":
cancel event
send "&4You don't have access to that command! "
on command "/help":
cancel event
send "&4You don't have access to that command!"
on command "/me":
cancel event
send "&4You don't have access to that command!"
on command "/say":
cancel event
send "&4You don't have access to that command!"
on command "/ver":
cancel event
send "&4You don't have access to that command!"
on command "/icanhasbukkit":
cancel event
send "&4You don't have access to that command!"
#
#
#
# COLORS
#
#
#
command /resetcolor:
permission: color.reset
trigger:
make console execute command "/nick %player% off"
command /colors:
aliases: /color, /colores
trigger:
send ""
send "&c&lExample:"
send "&7&b/blue &7for reset &c/resetcolor"
send "&cThe options are: &bblue, &2darkgreen, &dpink, &5purple &cand &6orange"
send "&cYou will need to first purchase a nickname on store.potspvp.us"
send ""
command /blue:
permission message: &cYou will need to first purchase a nickname on the store at store.potspvp.us
permission: color.blue
trigger:
make console execute command "/nick %player% &b%player%"
command /darkgreen:
permission message: &cYou will need to first purchase a nickname on the store at store.potspvp.us
permission: color.darkgreen
trigger:
make console execute command "/nick %player% &2%player%"
command /pink:
permission message: &cYou will need to first purchase a nickname on the store at store.potspvp.us
permission: color.pink
trigger:
make console execute command "/nick %player% &d%player%"
command /purple:
permission message: &cYou will need to first purchase a nickname on the store at store.potspvp.us
permission: color.purple
trigger:
make console execute command "/nick %player% &5%player%"
command /orange:
permission message: &cYou will need to first purchase a nickname on the store at store.potspvp.us
permission: color.orange
trigger:
make console execute command "/nick %player% &6%player%"