[SK]yardım lütfen çok basit

HERGELEMAN

Kömür Madencisi
En iyi cevaplar
0
on teleport:
set player's fly mode to false

skriptini "****.za" permi olan kişilerde işlememisini istiyorum yani bu permi olan kişiler ışınlanınca flyı kesilmicek çok kolay yapamadım teşekkür ederim.

ve bu skriptin Askyblock dünyasında disable yani orda çalışmamasını istiyorum
 
Son düzenleme:

HqeS

Lapis Toplayıcısı
En iyi cevaplar
0
set player's fly satırının başına 1 tab ekle ve üstüne şu kodu yaz
if player has permission "****.za":
 

McWeb

Kızıltaş Madencisi
En iyi cevaplar
0
ASkyblock dünyasında çalışmasını istemiyorsanız
Kod:
on teleport:
if world is not "ASkyblock":
if player has permission "****.za":
set player's fly mode to false
 

HERGELEMAN

Kömür Madencisi
En iyi cevaplar
0
Arkadaşlar dediklerinizi yaptım fakat olmadı
Kod:
on command "/fly":
    if player's world is "ASkyBlock":
    else:
        if player have permission "****.za":
        else:
            cancel event
            send "&cSadece adanda uçma özelliğini açabilirsin!"


on command "/uc":
    if player's world is "ASkyBlock":
    else:
        if player have permission "****.za":
        else:
            cancel event
            send "&cSadece adanda uçma özelliğini açabilirsin!"           
         
on death of player:
    set player's fly mode to false

on teleport:
    if world is not "ASkyblock":
    if player has permission "****.za":
    set player's fly mode to false

on portal enter:
    set player's fly mode to false
    send "&6&lBilgi &8> &aNethere gidiyorsun, uçma kapandı!"
 

LifeMCServer

Nether Yerlisi
En iyi cevaplar
98
Kendi sunucumdada kullanıyorum, Aşağıdaki çalışacaktır.
Başka dünyalarda uçsa bile en fazla 2 saniye uçabilir. Lag yapmaz.
Bug olmasın diye sunucuya girdiğinde fly'ını kapatır. İsterseniz kaldırabilirsiniz.

JavaScript:
on command "/fly":
    if player's world is "ASkyBlock":
    else:
        if player have permission "op":
        else:
            cancel event
            set player's fly mode to false
            send "&cSadece adanda fly acabilirsin!"

every 2 seconds:
    loop all players:
        if loop-player's world is "ASkyBlock":
        else:
            if loop-player have permission "fly-uc":
            else:
                set loop-player's fly mode to false
                send "&cSadece adanda fly acabilirsin!"
               
on join:
    set player's fly mode to false
 

HERGELEMAN

Kömür Madencisi
En iyi cevaplar
0
Kendi sunucumdada kullanıyorum, Aşağıdaki çalışacaktır.
Başka dünyalarda uçsa bile en fazla 2 saniye uçabilir. Lag yapmaz.
Bug olmasın diye sunucuya girdiğinde fly'ını kapatır. İsterseniz kaldırabilirsiniz.

JavaScript:
on command "/fly":
    if player's world is "ASkyBlock":
    else:
        if player have permission "op":
        else:
            cancel event
            set player's fly mode to false
            send "&cSadece adanda fly acabilirsin!"

every 2 seconds:
    loop all players:
        if loop-player's world is "ASkyBlock":
        else:
            if loop-player have permission "fly-uc":
            else:
                set loop-player's fly mode to false
                send "&cSadece adanda fly acabilirsin!"
              
on join:
    set player's fly mode to false
satır 147'de hata veriyor send de
 

LifeMCServer

Nether Yerlisi
En iyi cevaplar
98
satır 147'de hata veriyor send de

JavaScript:
on command "/fly":
    if player's world is "ASkyBlock":
    else:
        if player have permission "op":
        else:
            cancel event
            set player's fly mode to false
            send "&cSadece adanda fly acabilirsin!"

every 2 seconds:
    loop all players:
        if loop-player's world is "ASkyBlock":
        else:
            if loop-player have permission "fly-uc":
            else:
                set loop-player's fly mode to false
                send "&cSadece adanda fly acabilirsin!" to loop-player
              
on join:
    set player's fly mode to false
 
Üst