Işınlanma Skript

procycraft

Marangoz
En iyi cevaplar
0
bir moba basınca bir noktaya ışınlayacak lokasyon olarak

örnek Işınlayıcı adında bir irongolem , 292 2 292 gibi bir noktaya ışınlayacak , ve ışınlayıcıya vurulmayacak

yapabilen varsa hoş olur :)
 

berkser1232221

Zombi Katili
En iyi cevaplar
0
Onları yapmak için elvette bir plugin olmalıdır.Skript işleriyle pek uğraşma.Plugin benim için daha temiz
.
 

RedEyeses

Kömür Madencisi
En iyi cevaplar
0
teleport player to location at 292, 2, 292
virgüller önemli
eğer sen spawned yaptıysan
teleport spawned entity to location at 292, 2, 292
eğer heryerde aramasını istiyorsan

Kod:
loop all entities:
    loop-entity is iron golem
    if loop-entity's name is "Işınlayıcı":
        teleport loop-entity to location at 292, 2, 292
 

50ShadeOfSkript

Sudan Çıkmış
En iyi cevaplar
0
Kod:
on rightclick:
    if event-entity's display name is "&6&lISINLAYICI":
        chance of 50%:
            teleport player to {ayarlandi1}
        chance of 50%:
            teleport player to {ayarlandi2}
            
command /ayarlandiset [<text>]:
    trigger:
        if arg 1 is set:
            if arg 1 is "ayarlandi1":
                set {ayarlandi1} to player's location
            if arg 1 is "ayarlandi2":
                set {ayarlandi2} to player's location
                
                
on damage:
    if victim's display name is "&6&lISINLAYICI":
        cancel event
        
        
command /entityolustur:
    trigger:
        spawn iron golem named "&6&lISINLAYICI" to player's location

Iyi kullanimlar.
 
Üst