Nether dünyasında blok koymayı engelleme

ionurreis

Ağaç Yumruklayıcı
Mesajlar
14
En iyi cevaplar
0
Beğeniler
4
Puanları
40
Merhaba arkadaşlar sizden 3 tane küçük isteğim var. Uğraşan arkadaşlara şimdiden çok teşekkür ederim.

1. nether dünyasında nether tuğlasının üstüne blok koymayı engelleme
2. nether dünyasında nether tuğlasını kırmayı engelleme
3. nether dünyasında spawner kırmayı engelleme

NOT: Bide arkadaşlar addon filan gerekirse yazarsanız efso olur.
 


Rofleros

Ağaç Yumruklayıcı
Mesajlar
20
En iyi cevaplar
3
Beğeniler
15
Puanları
70
Kod:
break:
    world is "world": # "world" içerisine çalışacak world ismini yaz.
        event-block is nether brick or spawner:
            cancel event
          
place:
    world is "world": # "world" içerisine çalışacak world ismini yaz.
        if block under event-block is nether brick:
            cancel event
 

ionurreis

Ağaç Yumruklayıcı
Mesajlar
14
En iyi cevaplar
0
Beğeniler
4
Puanları
40
Kod:
break:
    world is "world": # "world" içerisine çalışacak world ismini yaz.
        event-block is nether brick or spawner:
            cancel event
         
place:
    world is "world": # "world" içerisine çalışacak world ismini yaz.
        if block under event-block is nether brick:
            cancel event
aga kod tam anlattığım gibi olmuş ama istediğim gibi değil. Mümkünse nether tuğlasının sağına soluna altına hiçbir türlü blok konulmasını istemiyorum. Müsaitsen yapabilir misin? :D
 

blueybighat

Marangoz
Mesajlar
41
En iyi cevaplar
3
Beğeniler
10
Puanları
330
Kod:
on place:
    if world of event-block is "world_nether":
        add block 1 south event-block, block 1 east event-block, block 1 west event-block, block 1 north event-block, block 1 above event-block, block 1 below event-block to {_block::*}
        if {_block::*} contains nether brick:
            cancel event

on break of nether brick:
    if world of event-block is "world_nether":
        cancel event

on break of spawner:
    if world of event-block is "world_nether":
        cancel event
 

ionurreis

Ağaç Yumruklayıcı
Mesajlar
14
En iyi cevaplar
0
Beğeniler
4
Puanları
40
Kod:
on place:
    if world of event-block is "world_nether":
        add block 1 south event-block, block 1 east event-block, block 1 west event-block, block 1 north event-block, block 1 above event-block, block 1 below event-block to {_block::*}
        if {_block::*} contains nether brick:
            cancel event

on break of nether brick:
    if world of event-block is "world_nether":
        cancel event

on break of spawner:
    if world of event-block is "world_nether":
        cancel event
skript güzel çalışıyor ama skripte reload atınca 10 15 saniye bekliyorum suncu donuyor bunu çözemez miyiz?
 

Üst