[YARDIM]Skriptler..

ömercanyanık

Kömür Madencisi
En iyi cevaplar
0
Yav hiç anlamadım bunun mantıgı nedir nerden biliyorsunuz bu komutları yani nasıl yapılacagını derslere falanmı bakıyorsunuz
2 cisi
[İSTEK]
/herkezisustur yazınca herkes susturulsun

sonra broadcast a herkes susturuldu yazsın
 

umut_

┌────────────┐ [ 1881 - 193∞ ] └────────────┘
En iyi cevaplar
0
Kolay İşlerler Bunun Gibi Şeylerde Küçük Bir Mantık Yürütüp Her İşlemi Yapabilirsin
Kodu Bilmiyorsan Bir Başka Konudan Bak Onu Biraz Değiştir Yap Bu Kadar Basit

Kod:
command /sustur:
    trigger:
        execute console command "/mute @a"
        send " Herkes Susturuldu " to all players

command /konustur:
    trigger:
        execute console command "/mute @a 0"
        send " Herkes Konuşabilir " to all players

command /yasak <text>:
    trigger:
        execute console command "/mute @a %arg 1%"
        send " Herkes %arg 1%Sn Susturuldu " to all players
 
Son düzenleme:

Secret_wither

Bedrock Kaşifi
En iyi cevaplar
0
Kolay İşlerler Bunun Gibi Şeylerde Küçük Bir Mantık Yürütüp Her İşlemi Yapabilirsin
Kodu Bilmiyorsan Bir Başka Konudan Bak Onu Biraz Değiştir Yap Bu Kadar Basit

Kod:
command /sustur:
    trigger:
        execute console command "/mute @a"
        send " Herkes Susturuldu " to all players

command /konustur:
    trigger:
        execute console command "/mute @a 0"
        send " Herkes Konuşabilir " to all players

command /yasak <text>:
    trigger:
        execute console command "/mute @a %arg 1%"
        send " Herkes %arg 1%Sn Susturuldu " to all players
Bu kod çalışmaz


Bu yan çaeım olabilir ben @Secret_wither
Send my ipad 3
 

Minecraftplayerr

Java, Skript, Php, Html, Css, Javascript, Anime
En iyi cevaplar
7
Kolay İşlerler Bunun Gibi Şeylerde Küçük Bir Mantık Yürütüp Her İşlemi Yapabilirsin
Kodu Bilmiyorsan Bir Başka Konudan Bak Onu Biraz Değiştir Yap Bu Kadar Basit

Kod:
command /sustur:
    trigger:
        execute console command "/mute @a"
        send " Herkes Susturuldu " to all players

command /konustur:
    trigger:
        execute console command "/mute @a 0"
        send " Herkes Konuşabilir " to all players

command /yasak <text>:
    trigger:
        execute console command "/mute @a %arg 1%"
        send " Herkes %arg 1%Sn Susturuldu " to all players
@a çalışacağını sanmıyorum. loop players:
/mute %loop-player%
daha iyi olacaktır.
 

Salturbone

Portal Uzmanı
En iyi cevaplar
0
Ne uğraşmışsınız be :D
Kod:
command /susturucu <text>:
    trigger:
        if arg 1 is "sustur":
            set {sus} to 1
            broadcast "<red>Herkes Susturuldu !"
        if arg 1 is "konus":
            clear {sus}
on chat:
    if {sus} is 1:
        cancel event
        message "Susturulmuşsunuz !"
 
Son düzenleme:
Üst