Mobla Işınlanma Skripti. Bi Bakınız

MrBrosherr

Ağaç Yumruklayıcı
En iyi cevaplar
0
Arkadaşlar Bu Skriptte Köylüye Sağ Tıklayınca Seçilen Noktaya Işınlanılacak. Ama her köylüye değil tabi sadece belirli köylüye.
 

HKNGLGN

Zombi Katili
En iyi cevaplar
3
PHP:
options:
    KoyluIsim: &aDeneme

on rightclick on villager:
    clicked entity's name is "{@KoyluIsim}"
        teleport player to {secilennokta}
  
command /noktasec:
    permission: asd.asd
    trigger:
        set {secilennokta} to location of player
        send "Basarılı!"
  
command /koylu:
    permission: asd.asd
    trigger:
        spawn a villager at player
        set name of spawned villager to "{@KoyluIsim}"
        send "Koylu Olusutuldu!"
 
Son düzenleme:

MrBrosherr

Ağaç Yumruklayıcı
En iyi cevaplar
0
PHP:
options:
    KoyluIsim: &aDeneme

on rightclick on villager:
    clicked entity's name is "{@KoyluIsim}"
        teleport player to {secilennokta}
 
command /noktasec:
    permission: asd.asd
    trigger:
        set {secilennokta} to location of player
        send "Basarılı!"
 
command /koylu:
    permission: asd.asd
    trigger:
        spawn a villager at player
        set name of spawned villager to "{@KoyluIsim}"
        send "Koylu Olusutuldu!"
Hata Verdi
 

ChocolateStation

Kömür Madencisi
En iyi cevaplar
0
@HKNGLGN skriptini biraz değiştirdim:
PHP:
options:
    KoyluIsim: &aIsinlan

on rightclick of villager:
    if clicked entity's name is "{@KoyluIsim}":
        teleport player to {secilennokta}
command /noktasec:
    permission: asd.asd
    trigger:
        set {secilennokta} to location of player
        send "Basarili!"
command /koylu:
    permission: asd.asd
    trigger:
        spawn a villager at location of player
        set name of spawned villager to "{@KoyluIsim}"
        send "Koylu Olusturuldu!"
/koylu yazarak köylüyü oluştur
/noktasec yazarak ışınlanılacak noktayı seç
Perm: asd.asd
 
Son düzenleme:

HKNGLGN

Zombi Katili
En iyi cevaplar
3
PHP:
on rightclick on villager:
    clicked entity's name is "{@KoyluIsim}":
        teleport player to {secilennokta}
 
Üst