Bulundu UÇUŞ KAĞIDI

  • Konuyu Başlatan Konuyu Başlatan MatiasNetwork
  • Başlangıç tarihi Başlangıç tarihi
  • Görüntüleme 1.006
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...

MatiasNetwork

Bir Kömür Göründü Kaptanım!
Katılım
1 Aralık 2019
Mesajlar
164
Elmaslar
19
Puan
3.920
Yaş
23
Minecraft
ILSI
elimde bu sk var fakat ben şey ekletmek istiyorum mesela bitane uçuş kağıdı basıyor 1 dakika oluyorya ard arda 5 kere kağıt kullanınca 5 dakika uçabilisin. teşekkürler
Değerli ziyaretçimiz, içeriği görebilmek için şimdi giriş yapın veya kayıt olun.
 
Kağıda tıklayınca kaç saniye uçacağını değişkene eklet. Sonra değişkeni looplayarak zamanı hesaplat.
 
Hocam sk den pek anlamam yapabilsem yapardim
Kod:
command /ucusbileti:
    permission : op
    trigger:
        give 1 paper named "&aUçus Bileti &8(&e500 Saniye&8)" to player
        
rightclick with paper:
    if tool's display name is "&aUcus Bileti &8(&e500 saniye&8)":
        cancel event
        remove paper named "&aUcus Bileti &8(&e500 saniye&8)" from players
        wait 0.50 seconds
        execute console command "fly %player%"
        send "&aUcus Bileti &8? &7Ucus bileti kullanildi. simdi &8(&d500&8) &7saniye boyunca istedigin kadar ucabilirsin!"
        execute console command "tm msg %player% &a&lUcus Bileti\n &7Ucma özelliginin &e500 &7saniyesi kaldi!"
        wait 475 seconds
        execute console command "tm msg %player% &a&lUcus Bileti\n &7Ucma özelliginin &e25 &7saniyesi kaldi!"
        wait 15 seconds
        execute console command "tm msg %player% &a&lUcus Bileti\n &7Ucma özelliginin &e10 &7saniyesi kaldi!"
        wait 7 seconds
        execute console command "tm msg %player% &a&lUcus Bileti\n &7Ucma özelliginin &e3 &7saniyesi kaldi!"
        wait 1 seconds
        execute console command "tm msg %player% &a&lUcus Bileti\n &7Ucma özelliginin &e2 &7saniyesi kaldi!"
        wait 1 seconds
        execute console command "tm msg %player% &a&lUcus Bileti\n &7Ucma özelliginin &e1 &7saniyesi kaldi!"
        wait 1 seconds
        execute console command "tm msg %player% &a&lUcus Bileti\n &7Ucma özelliginin suresi doldu!"
        execute console command "fly %player%"
 
Kod:
command /ucusbileti:
    permission : op
    trigger:
        give 1 paper named "&aUçus Bileti &8(&e500 Saniye&8)" to player
       
rightclick with paper:
    if tool's display name is "&aUcus Bileti &8(&e500 saniye&8)":
        cancel event
        remove paper named "&aUcus Bileti &8(&e500 saniye&8)" from players
        wait 0.50 seconds
        execute console command "fly %player%"
        send "&aUcus Bileti &8? &7Ucus bileti kullanildi. simdi &8(&d500&8) &7saniye boyunca istedigin kadar ucabilirsin!"
        execute console command "tm msg %player% &a&lUcus Bileti\n &7Ucma özelliginin &e500 &7saniyesi kaldi!"
        wait 475 seconds
        execute console command "tm msg %player% &a&lUcus Bileti\n &7Ucma özelliginin &e25 &7saniyesi kaldi!"
        wait 15 seconds
        execute console command "tm msg %player% &a&lUcus Bileti\n &7Ucma özelliginin &e10 &7saniyesi kaldi!"
        wait 7 seconds
        execute console command "tm msg %player% &a&lUcus Bileti\n &7Ucma özelliginin &e3 &7saniyesi kaldi!"
        wait 1 seconds
        execute console command "tm msg %player% &a&lUcus Bileti\n &7Ucma özelliginin &e2 &7saniyesi kaldi!"
        wait 1 seconds
        execute console command "tm msg %player% &a&lUcus Bileti\n &7Ucma özelliginin &e1 &7saniyesi kaldi!"
        wait 1 seconds
        execute console command "tm msg %player% &a&lUcus Bileti\n &7Ucma özelliginin suresi doldu!"
        execute console command "fly %player%"
hocam şuan ard arda kaç adet basabiliyoprlar
 
Python:
on rightclick with paper:
    if player's gamemode is not creative:
        if name of player's tool is "Uçuş" :
            remove 1 paper named "Uçuş" from player
            add 10 to {%player%.ucusure}
            

            if {%player%.ucus} is false:
                push player upwards at speed 5
                set player's flight mode to true
                send "&6Uçuş Modu Aktif" to player
                set {%player%.ucus} to true




every seconds in "world":
    loop all players:
        if {%loop-player%.ucus} is true:
            remove 1 from {%loop-player%.ucusure}
            if {%loop-player%.ucusure} is smaller than 5:
                send "&6Sürenin bitmesine &c%{%loop-player%.ucusure}% &6saniye" to loop-player
            if {%loop-player%.ucusure} is equal to 0:
                set {%loop-player%.ucus} to false
                set loop-player's flight mode to false
                send "&6Yakıt Bitti" to loop-player

Şöyle bir şey yazdım. Kendine göre düzenleyip kullanabilirsin.
 
Python:
on rightclick with paper:
    if player's gamemode is not creative:
        if name of player's tool is "Uçuş" :
            remove 1 paper named "Uçuş" from player
            add 10 to {%player%.ucusure}
           

            if {%player%.ucus} is false:
                push player upwards at speed 5
                set player's flight mode to true
                send "&6Uçuş Modu Aktif" to player
                set {%player%.ucus} to true




every seconds in "world":
    loop all players:
        if {%loop-player%.ucus} is true:
            remove 1 from {%loop-player%.ucusure}
            if {%loop-player%.ucusure} is smaller than 5:
                send "&6Sürenin bitmesine &c%{%loop-player%.ucusure}% &6saniye" to loop-player
            if {%loop-player%.ucusure} is equal to 0:
                set {%loop-player%.ucus} to false
                set loop-player's flight mode to false
                send "&6Yakıt Bitti" to loop-player

Şöyle bir şey yazdım. Kendine göre düzenleyip kullanabilirsin.
every seconds in "world":
loop all players:

How to kill my server.


Önceki konuna da yazmıştım.

Kod:
on break of cobblestone:
    chance of 3%:
        execute console command "/give %player% paper 1 name:&4Uçuş Bileti"
        send "&7Uçuş bileti kazandınız." to player
on right click with paper:
    if name of player's tool is "&4Uçuş Bileti":
        remove paper with name "&4Uçuş Bileti" from player
        if {ucus::list::%player%} is greater than 5:
            delete {ucus::list::%player%}
            set {_durum} to true
        else:
            add 1 to {ucus::list::%player%}
        wait 2 second
        if {_durum} is true:
            send player title "&aUçma modu aktif!" for 3 seconds
            set player's fly mode to true
            wait 20 second
            send player title "&4280 &csaniye sonra bitecek!" for 3 seconds
            wait 160 second
            send player title "&4120 &csaniye sonra bitecek!" for 3 seconds
            wait 60 second
            send player title "&460 &csaniye sonra bitecek!" for 1 seconds
            wait 30 second
            send player title "&430 &csaniye sonra bitecek!" for 1 seconds
            wait 5 second
            send player title "&45 &csaniye sonra bitecek!" for 1 seconds
            wait 5 second
            set player's fly mode to false
        else:
            send player title "&aUçma modu aktif!" for 3 seconds
            set player's fly mode to true
            wait 20 second
            send player title "&440 &csaniye sonra bitecek!" for 3 seconds
            wait 10 second
            send player title "&430 &csaniye sonra bitecek!" for 3 seconds
            wait 10 second
            send player title "&420 &csaniye sonra bitecek!" for 1 seconds
            wait 10 second
            send player title "&410 &csaniye sonra bitecek!" for 1 seconds
            wait 5 second
            send player title "&45 &csaniye sonra bitecek!" for 1 seconds
            wait 5 second
            set player's fly mode to false
every 2 second:
    delete {ucus::list::*}

Dener misin ?
 
every seconds in "world":
loop all players:

How to kill my server.


Önceki konuna da yazmıştım.

Kod:
on break of cobblestone:
    chance of 3%:
        execute console command "/give %player% paper 1 name:&4Uçuş Bileti"
        send "&7Uçuş bileti kazandınız." to player
on right click with paper:
    if name of player's tool is "&4Uçuş Bileti":
        remove paper with name "&4Uçuş Bileti" from player
        if {ucus::list::%player%} is greater than 5:
            delete {ucus::list::%player%}
            set {_durum} to true
        else:
            add 1 to {ucus::list::%player%}
        wait 2 second
        if {_durum} is true:
            send player title "&aUçma modu aktif!" for 3 seconds
            set player's fly mode to true
            wait 20 second
            send player title "&4280 &csaniye sonra bitecek!" for 3 seconds
            wait 160 second
            send player title "&4120 &csaniye sonra bitecek!" for 3 seconds
            wait 60 second
            send player title "&460 &csaniye sonra bitecek!" for 1 seconds
            wait 30 second
            send player title "&430 &csaniye sonra bitecek!" for 1 seconds
            wait 5 second
            send player title "&45 &csaniye sonra bitecek!" for 1 seconds
            wait 5 second
            set player's fly mode to false
        else:
            send player title "&aUçma modu aktif!" for 3 seconds
            set player's fly mode to true
            wait 20 second
            send player title "&440 &csaniye sonra bitecek!" for 3 seconds
            wait 10 second
            send player title "&430 &csaniye sonra bitecek!" for 3 seconds
            wait 10 second
            send player title "&420 &csaniye sonra bitecek!" for 1 seconds
            wait 10 second
            send player title "&410 &csaniye sonra bitecek!" for 1 seconds
            wait 5 second
            send player title "&45 &csaniye sonra bitecek!" for 1 seconds
            wait 5 second
            set player's fly mode to false
every 2 second:
    delete {ucus::list::*}

Dener misin ?
olmadı 5 kere tıkladım ard arda kağıda fakat 60 saniye sonra düştüm geri üst üste binmediler hepsi ayır ayrı 60 saniye oldu
 
Kod:
on break of cobblestone:
    chance of 3%:
        execute console command "/give %player% paper 1 name:&4Uçuş Bileti"
        send "&7Uçuş bileti kazandınız." to player
on right click with paper:
    if name of player's tool is "&4Uçuş Bileti":
        remove paper with name "&4Uçuş Bileti" from player
        if {ucus::list::%player%} is greater than 5:
            delete {ucus::list::%player%}
            set {_durum} to true
        else:
            add 1 to {ucus::list::%player%}
        wait 4 second
        if {_durum} is true:
            send player title "&aUçma modu aktif!" for 3 seconds
            set player's fly mode to true
            wait 20 second
            send player title "&4280 &csaniye sonra bitecek!" for 3 seconds
            wait 160 second
            send player title "&4120 &csaniye sonra bitecek!" for 3 seconds
            wait 60 second
            send player title "&460 &csaniye sonra bitecek!" for 1 seconds
            wait 30 second
            send player title "&430 &csaniye sonra bitecek!" for 1 seconds
            wait 5 second
            send player title "&45 &csaniye sonra bitecek!" for 1 seconds
            wait 5 second
            set player's fly mode to false
        else:
            send player title "&aUçma modu aktif!" for 3 seconds
            set player's fly mode to true
            wait 20 second
            send player title "&440 &csaniye sonra bitecek!" for 3 seconds
            wait 10 second
            send player title "&430 &csaniye sonra bitecek!" for 3 seconds
            wait 10 second
            send player title "&420 &csaniye sonra bitecek!" for 1 seconds
            wait 10 second
            send player title "&410 &csaniye sonra bitecek!" for 1 seconds
            wait 5 second
            send player title "&45 &csaniye sonra bitecek!" for 1 seconds
            wait 5 second
            set player's fly mode to false
every 4 second:
    delete {ucus::list::*}

Dener misin ?
 
Kod:
on break of cobblestone:
    chance of 3%:
        execute console command "/give %player% paper 1 name:&4Uçuş Bileti"
        send "&7Uçuş bileti kazandınız." to player
on right click with paper:
    if name of player's tool is "&4Uçuş Bileti":
        remove paper with name "&4Uçuş Bileti" from player
        if {ucus::list::%player%} is greater than 5:
            delete {ucus::list::%player%}
            set {_durum} to true
        else:
            add 1 to {ucus::list::%player%}
        wait 4 second
        if {_durum} is true:
            send player title "&aUçma modu aktif!" for 3 seconds
            set player's fly mode to true
            wait 20 second
            send player title "&4280 &csaniye sonra bitecek!" for 3 seconds
            wait 160 second
            send player title "&4120 &csaniye sonra bitecek!" for 3 seconds
            wait 60 second
            send player title "&460 &csaniye sonra bitecek!" for 1 seconds
            wait 30 second
            send player title "&430 &csaniye sonra bitecek!" for 1 seconds
            wait 5 second
            send player title "&45 &csaniye sonra bitecek!" for 1 seconds
            wait 5 second
            set player's fly mode to false
        else:
            send player title "&aUçma modu aktif!" for 3 seconds
            set player's fly mode to true
            wait 20 second
            send player title "&440 &csaniye sonra bitecek!" for 3 seconds
            wait 10 second
            send player title "&430 &csaniye sonra bitecek!" for 3 seconds
            wait 10 second
            send player title "&420 &csaniye sonra bitecek!" for 1 seconds
            wait 10 second
            send player title "&410 &csaniye sonra bitecek!" for 1 seconds
            wait 5 second
            send player title "&45 &csaniye sonra bitecek!" for 1 seconds
            wait 5 second
            set player's fly mode to false
every 4 second:
    delete {ucus::list::*}

Dener misin ?
Çalışmadı Konu Kilit
 
Merhaba, bunu dener misiniz? oto olarak 5 dk verecektir 1 tanede art arda basmaya gerek olduğunu düşünmüyorum.
Kod:
 on break of cobblestone:
    chance of 2%:
        give a paper named "&4Uçuş Belgesi" to player
        send "&e&lTebrikler, kırıktaş kazarken uçuş belgesi buldun."
on rightclick with paper:
    if tool's display name is "&4Uçuş Belgesi":
        player's world is "ASkyblock"
        remove paper named "&4Uçuş Belgesi" from player
        set flight mode of player to true
        send "&c&l5 dakikalık uçuş süren başladı.Acele Et"
        wait 5 minutes
        set flight mode of player to false
        send "&a&lMalesef Uçuş süren bitti."
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...

Hala Discord sunucumuza katılmadın mı?

Büyük bir topluluğun parçası ol, etkinliklere katıl ve özel hediyeler kazanma şansı yakala!

Şimdi Katıl
Üst