[İstek] SK

Pluginer_Mert

Zombi Katili
En iyi cevaplar
0
Merhaba Arkadaşlar Survival Sunucum Var.İnternetim Olmadığı İçin Spawner Veremiyorum Kısaca Bana Yardım Edicek Var Mı ? Örnek: /sp kutuver elmas gibi olmasını istiyorum. Içinde Bunların Olmasını İstiyorum. Elmas,Demir,Altın,Taş
 

Pluginer_Mert

Zombi Katili
En iyi cevaplar
0

cagriaykut

Kömür Madencisi
En iyi cevaplar
0
İki türlü anladım ondan iki tane yaptım.Eğer bunlar değilse birazcık daha açıklayıcı ol lütfen.


PHP:
command /sp [<text>] [<text>]:
    trigger:
        if arg 1 is set:
            if arg 1 is "kutuver":
                if arg 2 is set:
                    if arg 2 is "elmas" or "diamond":
                        give diamond to player
        if arg 1 is set:
            if arg 1 is "kutuver":
                if arg 2 is set:
                    if arg 2 is "gold" or "altin":
                        give gold ingot to player
        if arg 1 is set:
            if arg 1 is "kutuver":
                if arg 2 is set:
                    if arg 2 is "iron" or "demir":
                        give iron ingot to player
        if arg 1 is set:
            if arg 1 is "kutuver":
                if arg 2 is set:
                    if arg 2 is "tas" or "cobblestone":
                        give cobblestone to player

Buda 2. ;


PHP:
command /sp [<text>]:
    trigger:
        if arg 1 is set:
            if arg 1 is "kutuver":
                give chest named "&aSansKutusu" to player
           
on rightclick on chest:
    if player has permission "kutu.ac":
        if tool's name is "&aSansKutusu":
            chance of %25:
                give cobblestone to player
            chance of %25:
                give gold ingot to player
            chance of %25:
                give iron ingot to player
            chance of %25:
                give diamond to player
 
Üst