Sol Banner
Sağ Banner
  • Minecraft İçerik Üreticileri Aranıyor!

    Bilgilendirici videolar ya da rehberler hazırlayarak gelir elde etmek ister misin?

    • ✅ YouTube - TikTok Videoları üretecek içerik üreticileri & video editörleri arıyoruz!
    • ✅ Forumda yazarlık, minecraft rehberleri, modları paylaşacak arkadaşlar arıyoruz.
    • ✅ Aramıza katıl, içerik üret, paylaşım yap, para kazan!
    Başvur

Çözüldü Minecraft Uçma Skripti

Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...

monster24

Yeni bir Steve doğdu!
Katılım
13 Ekim 2024
Mesajlar
9
Tepki puanı
1
Puanları
25
Konum
Dünya
Bana Minecraftta Olduğum Bloğun Tüm Yükseklikleri Hava ise Uçma Modunu Kapatacak. Hava Değilse Açık Kalacak Bir Skript Yazacak Var Mı?. Kısa CraftRise'nin SkyBlock'daki AdaFly Scripti. Sunucum 1.8.9 Sürümünde ChatGPT'ye yaptırdım çok uğraştım yaptıramadım ve yapamadım. Yapacak Biri Var Mı?
 

BloodyX

Seçkin madenci.
Topluluk Yöneticisi
Katılım
26 Şubat 2020
Mesajlar
93
En iyi cevaplar
2
Tepki puanı
17
Puanları
1,080
Kod:
on any movement:
  if player has permission "ben.yetkiliyim":
    set {_x} to location of player
    set {_x1} to block at (location of player offset by 0, -1, 0)
    set {_x2} to block at (location of player offset by 0, 1, 0)
    set {_x3} to block at (location of player offset by 0, 2, 0)
    if {_x1} is air and {_x2} is air and {_x3} is air:
      set player's fly mode to false
      send "{@p} 7Uçma modu kapatıldı, çünkü altındaki 3 blok hava."
    else:
      set player's fly mode to true
      send "{@p} 7Uçma modu açık, çünkü altında hava olmayan blok var."

Böyle bir şey mi dediniz tam açıklarsanız size yardımcı olurum
 

monster24

Yeni bir Steve doğdu!
Katılım
13 Ekim 2024
Mesajlar
9
Tepki puanı
1
Puanları
25
Konum
Dünya
Kod:
on any movement:
  if player has permission "ben.yetkiliyim":
    set {_x} to location of player
    set {_x1} to block at (location of player offset by 0, -1, 0)
    set {_x2} to block at (location of player offset by 0, 1, 0)
    set {_x3} to block at (location of player offset by 0, 2, 0)
    if {_x1} is air and {_x2} is air and {_x3} is air:
      set player's fly mode to false
      send "{@p} 7Uçma modu kapatıldı, çünkü altındaki 3 blok hava."
    else:
      set player's fly mode to true
      send "{@p} 7Uçma modu açık, çünkü altında hava olmayan blok var."

Böyle bir şey mi dediniz tam açıklarsanız size yardımcı olurum
Evet, skript çalışmadı bu arada 5 tane hata var
 

monster24

Yeni bir Steve doğdu!
Katılım
13 Ekim 2024
Mesajlar
9
Tepki puanı
1
Puanları
25
Konum
Dünya
Hatayı iletirmisiniz
[14:14:13 ERROR]: Can't understand this expression: 'block at (location of player offset by 0, -1, 0)' (fly_check.sk, line 4: set {_x1} to block at (location of player offset by 0, -1, 0)')
>

[14:14:13 ERROR]: Can't understand this expression: 'block at (location of player offset by 0, 1, 0)' (fly_check.sk, line 5: set {_x2} to block at (location of player offset by 0, 1, 0)')
>

[14:14:14 ERROR]: Can't understand this expression: 'block at (location of player offset by 0, 2, 0)' (fly_check.sk, line 6: set {_x3} to block at (location of player offset by 0, 2, 0)')
>
[14:14:14 ERROR]: can't understand this condition: '{_x1} is air and {_x2} is air and {_x3} is air' (fly_check.sk, line 7: if {_x1} is air and {_x2} is air and {_x3} is air:')
>
[14:14:14 ERROR]: 'else' has to be placed just after an 'if' or 'else if' section (fly_check.sk, line 10: else:')
 

BloodyX

Seçkin madenci.
Topluluk Yöneticisi
Katılım
26 Şubat 2020
Mesajlar
93
En iyi cevaplar
2
Tepki puanı
17
Puanları
1,080
[14:14:13 ERROR]: Can't understand this expression: 'block at (location of player offset by 0, -1, 0)' (fly_check.sk, line 4: set {_x1} to block at (location of player offset by 0, -1, 0)')
>

[14:14:13 ERROR]: Can't understand this expression: 'block at (location of player offset by 0, 1, 0)' (fly_check.sk, line 5: set {_x2} to block at (location of player offset by 0, 1, 0)')
>

[14:14:14 ERROR]: Can't understand this expression: 'block at (location of player offset by 0, 2, 0)' (fly_check.sk, line 6: set {_x3} to block at (location of player offset by 0, 2, 0)')
>
[14:14:14 ERROR]: can't understand this condition: '{_x1} is air and {_x2} is air and {_x3} is air' (fly_check.sk, line 7: if {_x1} is air and {_x2} is air and {_x3} is air:')
>
[14:14:14 ERROR]: 'else' has to be placed just after an 'if' or 'else if' section (fly_check.sk, line 10: else:')
Kod:
on any movement:
    if player has permission "fly.toggle":
        set {_below} to block at location of player offset by 0, -1, 0
        set {_above1} to block at location of player offset by 0, 1, 0
        set {_above2} to block at location of player offset by 0, 2, 0
        
        if {_below} is air and {_above1} is air and {_above2} is air:
            if player is flying:
                set player's fly mode to false
                send "&cUçma modu kapatıldı çünkü altındaki, üzerindeki bloklar hava."
        else:
            if player is not flying:
                set player's fly mode to true
                send "&aUçma modu açıldı çünkü altındaki, üzerindeki bloklar hava değil."

on join:
    set player's fly mode to true
    send "&aHoş geldin! Uçma modu etkinleştirildi."

Bunu deneyin
 

monster24

Yeni bir Steve doğdu!
Katılım
13 Ekim 2024
Mesajlar
9
Tepki puanı
1
Puanları
25
Konum
Dünya
Gene 5 Hata Var Hatalar:

[21:07:30 ERROR]: Invalid brackets/variables/text in '0,' (fly_check.sk, line 3: set {_below} to block at location of player offset by 0, -1, 0')
>
[21:07:30 ERROR]: Can't understand this expression: ('block at location of player offset by 0', '1' and '0') (fly_check.sk, line 4: set {_above1} to block at location of player offset by 0, 1, 0')
>
[21:07:31 ERROR]: Can't understand this expression: ('block at location of player offset by 0', '2' and '0') (fly_check.sk, line 5: set {_above2} to block at location of player offset by 0, 2, 0')
>
[21:07:31 ERROR]: can't understand this condition: '{_below} is air and {_above1} is air and {_above2} is air' (fly_check.sk, line 8: if {_below} is air and {_above1} is air and {_above2} is air:')
>
[21:07:31 ERROR]: 'else' has to be placed just after an 'if' or 'else if' section (fly_check.sk, line 12: else:')
>
[21:07:31 INFO]: [Skript] Encountered 5 errors while reloading fly_check.sk!

ChatGptye yaptırıyorsaniz olmuyor.
 

monster24

Yeni bir Steve doğdu!
Katılım
13 Ekim 2024
Mesajlar
9
Tepki puanı
1
Puanları
25
Konum
Dünya
Kod:
on any movement:
    if player has permission "fly.toggle":
        set {_below} to block at location of player offset by 0, -1, 0
        set {_above1} to block at location of player offset by 0, 1, 0
        set {_above2} to block at location of player offset by 0, 2, 0
       
        if {_below} is air and {_above1} is air and {_above2} is air:
            if player is flying:
                set player's fly mode to false
                send "&cUçma modu kapatıldı çünkü altındaki, üzerindeki bloklar hava."
        else:
            if player is not flying:
                set player's fly mode to true
                send "&aUçma modu açıldı çünkü altındaki, üzerindeki bloklar hava değil."

on join:
    set player's fly mode to true
    send "&aHoş geldin! Uçma modu etkinleştirildi."

Bunu deneyin
Hata Var gene ne yapabiliriz.
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...

Yeni Mesajlar


Üst