NEDEN ÇALIŞMIYOR?

HEXAGON73

Kızıltaş Madencisi
En iyi cevaplar
0
Kod:
command /asd [<text>]:   
    trigger:
        if arg 1 is set:
            all players in radius 5 of player:
                send "&4%player% %arg 1%" to player
        if arg 1 is not set:
            send "&7Kullanim: &7/asd (yazi)" to player
 

Gavatos

Demir Madencisi
En iyi cevaplar
3
PHP:
command /asd [<text>]: 
    trigger:
        arg 1 is set:
            loop all players:
                loop all players in radius 5 of player:
                    send "&4%player% %arg 1%" to loop-player
        arg 1 is not set:
            send "&7Kullanim: &7/asd (yazi)" to player
 

Gavatos

Demir Madencisi
En iyi cevaplar
3
PHP:
command /asd [<text>]:
    trigger:
        if arg 1 is set:
            send "&4%player% %arg 1%" to player
            loop all players in radius 5 of player:
                send "&4%player% %arg 1%" to loop-player
        if arg 1 is not set:
            send "&7Kullanim: &7/asd (yazi)" to player
 
Üst