[SK Veya Plugin][ISTEK] [YARDIM]

MeeRach

Vi3e
Mesajlar
1,113
En iyi cevaplar
0
Beğeniler
580
Puanları
1,335
Ruh hali
PHP:
every 3 seconds:
 loop all blocks:
  loop-block is fire:
   set loop-block to air
 

alican111

Zombi Katili
Mesajlar
225
En iyi cevaplar
0
Beğeniler
48
Puanları
140
Her 3 dk da bir değilde ateş yakıldıktan 3 dakika sonra silebiliriz:
Kod:
on place of fire:
    set {_fire} to event-location
    wait 3 minutes
    set block at {_fire} to air
 

EgeTürker

Kömür Madencisi
Mesajlar
109
En iyi cevaplar
0
Beğeniler
3
Puanları
0
Peki ./Atesleri Sil Diye Bir Skript Varmi ?
Sanirim Gormustum
 

alican111

Zombi Katili
Mesajlar
225
En iyi cevaplar
0
Beğeniler
48
Puanları
140
Kod:
command /atessil:
    permission:doktor.atessil
    permission message:"&cBunu kullanmak icin yetkiniz yok."
    trigger:
        set fire to air

Bunun olması gerekli belki trigger yalnıştır.
 

Myper

Kızıltaş Madencisi
Mesajlar
514
En iyi cevaplar
0
Beğeniler
168
Puanları
340
Kod:
options:
    duration: true
    time-span: 3 minutes
   
every 3 minutes:
    loop all blocks:
        loop-block is fire
        set loop-block to air
       
on place of fire:
    {@duration} is "true"
    wait {@time-span}
    set block at event-location to air
   
command /sondur [<int>]:
    permission: skript.use
    trigger:
        if arg-1 is not set:
            loop all blocks:
                loop-block is fire
                set loop-block to air
                add 1 to {sonduruldu}
            message "&3&l&oİtfaiye &8&l&o> &fToplamda &7&o%{sonduruldu}% &ftane alev söndürdünüz !"
            clear {sonduruldu}
        else:
            loop all blocks in radius arg-1:
                loop-block is fire
                set loop-block to air
                add 1 to {sonduruldu}
            message "&3&l&oİtfaiye &8&l&o> &7&o%arg-1% &fblok yakınınızdaki &7&o%{sonduruldu}% &falevi söndürdünüz !"
            clear {sonduruldu}
 

Üst