Kod:
# Belirli dünya adı
on load:
set {target-world} to "oneblock_world"
# Spawner otomatik öldürme durumunu saklamak için bir değişken oluştur
on right click on spawner:
if world of player is {target-world}:
if {spawner::%location of clicked block%} is set:
delete {spawner::%location of clicked block%}
send "&cSpawner otomatik öldürme kapatıldı." to player
else:
send "&eSpawner otomatik öldürme zaten kapalı." to player
on left click on spawner:
if world of player is {target-world}:
if {spawner::%location of clicked block%} is not set:
set {spawner::%location of clicked block%} to true
send "&aSpawner otomatik öldürme açıldı." to player
else:
send "&eSpawner otomatik öldürme zaten açık." to player
# Yaratık doğduğunda otomatik öldürme kontrolü
on spawn of skeleton, zombie, enderman, spider, iron golem, creeper, blaze, cow:
if world of event-location is {target-world}:
if {spawner::%location of event-location%} is set:
kill event-entity