23 lines
469 B
Plaintext
23 lines
469 B
Plaintext
|
variables:
|
||
|
{sgchest} = false
|
||
|
|
||
|
command /sgchest [<text>]:
|
||
|
permission: op
|
||
|
trigger:
|
||
|
if arg-1 is not set:
|
||
|
send "&c/sgchest on &7- zapne loot chestiek" to player
|
||
|
send "&c/sgchest off &7- vypne loot chestiek" to player
|
||
|
if arg-1 is "on":
|
||
|
set {sgchest} to true
|
||
|
if arg-1 is "off":
|
||
|
set {sgchest} to false
|
||
|
|
||
|
on right click on chest:
|
||
|
if {sgchest} = true:
|
||
|
cancel event
|
||
|
wait 1 tick
|
||
|
break the block
|
||
|
else if {sgchest} = false:
|
||
|
stop
|
||
|
|