Çözüldü SkyBlock 4 Hata - Setspawn Hatası

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

janhendix2

Odunlara Vur Vur Vur!
Katılım
3 Şubat 2015
Mesajlar
32
Elmaslar
3
Puan
13.210
Merhaba,
Skyblock sunucumda 4 sorun mevcut bilenler lütfen cevaplasın.

- Yeni Bir Oyuncu Sunucuya Girdiğinde /spawn'da doğmuyor. ben map'i flatroom dünyasına yaptım /setspawn'ı da oraya çektim lakin oyuncu world dünyasında başlıyor.

- JumpPads diye bir plugin yükledim oyuncuları ileri zıplatan bir plugin. lakin oyuncularda bu hatayı veriyor.
[Jump Pads] You do not have permission to do this! , Op Yetkisine Sahip olan kişiler zıplayabiliyor.

- Oyuncular ada'sındaki bir canavarı boşluğa attığında canavarın itemleri spawna geliyor, İronGolem'in canı fazla olduğu için ölmeden spawn'a ışınlanıyor.

- Oyuncular adalarından düştüğünde spawn'da doğuyor lakin ölüp doğuyor, skript kullanıyorum bunun için adadan düştüğü gibi ölmeden doğsun istiyorum ne yapmam gerek. Skripti Bırakıyorum


Kod:
on damage:
    victim is player
    if y-coordinate of victim is below 0:
        cancel event
        teleport victim to {ddy}
        send "&8[ &e&lMC-TR &8]» &7Yere düştüğün için buraya ışınlandın." to victim
        stop
command /dbde:
    permission: dbde.mctr
    permission message: &8[ &e&lMC-TR &8] &8» &7Bu komut için gerekli yetkiniz yok.
    trigger:
        set {ddy} to location of player
        message "&8[ &e&lMC-TR &8]» &7Düşünce doğacak yer &abaşarıyla &
 
Merhaba,
Skyblock sunucumda 4 sorun mevcut bilenler lütfen cevaplasın.

- Yeni Bir Oyuncu Sunucuya Girdiğinde /spawn'da doğmuyor. ben map'i flatroom dünyasına yaptım /setspawn'ı da oraya çektim lakin oyuncu world dünyasında başlıyor.

- JumpPads diye bir plugin yükledim oyuncuları ileri zıplatan bir plugin. lakin oyuncularda bu hatayı veriyor.
[Jump Pads] You do not have permission to do this! , Op Yetkisine Sahip olan kişiler zıplayabiliyor.

- Oyuncular ada'sındaki bir canavarı boşluğa attığında canavarın itemleri spawna geliyor, İronGolem'in canı fazla olduğu için ölmeden spawn'a ışınlanıyor.

- Oyuncular adalarından düştüğünde spawn'da doğuyor lakin ölüp doğuyor, skript kullanıyorum bunun için adadan düştüğü gibi ölmeden doğsun istiyorum ne yapmam gerek. Skripti Bırakıyorum


Kod:
on damage:
    victim is player
    if y-coordinate of victim is below 0:
        cancel event
        teleport victim to {ddy}
        send "&8[ &e&lMC-TR &8]» &7Yere düştüğün için buraya ışınlandın." to victim
        stop
command /dbde:
    permission: dbde.mctr
    permission message: &8[ &e&lMC-TR &8] &8» &7Bu komut için gerekli yetkiniz yok.
    trigger:
        set {ddy} to location of player
        message "&8[ &e&lMC-TR &8]» &7Düşünce doğacak yer &abaşarıyla &
Jumpads için oyunculara jumppads.use bu permission ekleyin.
 
Spawn için yazıların düzenleyip bu skripti kullanabilirsin.
Kod:
options:
#Teleport players to spawn whenever they join
    TPJoin: false
#Announce the new players when they join for the first time
    FirstJoin: true
#Hide join Messages
    JoinMessage: true
#Hide quit Messages
    QuitMessage: true

command /setspawn:
    aliases: spawnset, sethub, hubset, setlobby, lobbyset
    permission: spawn.setspawn
    permission message: &cSorry, but you don't have permission to execute this command!
    description: Set spawn at your location.
    trigger:
        message "&6You have &cset spawn&6 at your location!"
        set {spawn} to location of player

command /spawn [<player>]:
    aliases: hub, lobby
    permission: spawn.spawn
    permission message: &cSorry, but you don't have permission to execute this command!
    description: Teleport you to spawn.
    trigger:
        if {spawn} isn't set:
            message "&4Error:&c spawn is not set!"
            stop
        else:
            argument 1 is not set:
                teleport player to {spawn}
                message "&6Teleporting..."
            else:
                if sender has permission "spawn.spawn.others":
                    if argument is online:
                        teleport argument to {spawn}
                    if sender is a player:
                        message "&6You have been teleported to spawn by &c%player%&6." to argument 1
                    if sender is not a player:
                        message "&6You have been teleported to spawn by &cConsole&6." to argument 1
                        teleport player to {spawn}
                else:
                    message "&cSorry, but you don't have permission to execute this command!"

command /delspawn:
    permission: spawn.spawn.delete
    permission message: &cSorry, but you don't have permission to execute this command!
    description: Unset spawn location.
    trigger:
        delete {spawn}
        message "&6You have successfully unset &cspawn6!"


on first join:
    teleport player to {spawn}
    if {@FirstJoin} is true:
        broadcast "&dPlease welcome player &9%player's display name% &dhe/she have joined the server for the first time."
    else:
        stop

on join:
    if {@JoinMessage} is true:
        set join message to ""
        stop
    else:
        stop
    if {spawn} is set:
        if {@TPJoin} is true:
            teleport player to {spawn}
        else:
            stop
    else:
        stop

on quit:
    if {@QuitMessage} is true:
        set leave message to ""
        stop
    else:
        stop
 
Spawn için yazıların düzenleyip bu skripti kullanabilirsin.
Kod:
options:
#Teleport players to spawn whenever they join
    TPJoin: false
#Announce the new players when they join for the first time
    FirstJoin: true
#Hide join Messages
    JoinMessage: true
#Hide quit Messages
    QuitMessage: true

command /setspawn:
    aliases: spawnset, sethub, hubset, setlobby, lobbyset
    permission: spawn.setspawn
    permission message: &cSorry, but you don't have permission to execute this command!
    description: Set spawn at your location.
    trigger:
        message "&6You have &cset spawn&6 at your location!"
        set {spawn} to location of player

command /spawn [<player>]:
    aliases: hub, lobby
    permission: spawn.spawn
    permission message: &cSorry, but you don't have permission to execute this command!
    description: Teleport you to spawn.
    trigger:
        if {spawn} isn't set:
            message "&4Error:&c spawn is not set!"
            stop
        else:
            argument 1 is not set:
                teleport player to {spawn}
                message "&6Teleporting..."
            else:
                if sender has permission "spawn.spawn.others":
                    if argument is online:
                        teleport argument to {spawn}
                    if sender is a player:
                        message "&6You have been teleported to spawn by &c%player%&6." to argument 1
                    if sender is not a player:
                        message "&6You have been teleported to spawn by &cConsole&6." to argument 1
                        teleport player to {spawn}
                else:
                    message "&cSorry, but you don't have permission to execute this command!"

command /delspawn:
    permission: spawn.spawn.delete
    permission message: &cSorry, but you don't have permission to execute this command!
    description: Unset spawn location.
    trigger:
        delete {spawn}
        message "&6You have successfully unset &cspawn6!"


on first join:
    teleport player to {spawn}
    if {@FirstJoin} is true:
        broadcast "&dPlease welcome player &9%player's display name% &dhe/she have joined the server for the first time."
    else:
        stop

on join:
    if {@JoinMessage} is true:
        set join message to ""
        stop
    else:
        stop
    if {spawn} is set:
        if {@TPJoin} is true:
            teleport player to {spawn}
        else:
            stop
    else:
        stop

on quit:
    if {@QuitMessage} is true:
        set leave message to ""
        stop
    else:
        stop
denedim lakin olmadı /setspawn çektim , yeni bir hesap açtım ve oyuna girdigimde gene ormanda başlıyor spawn çektiğim yerde başlamıyor. bu arada pluginde yüklü bir tane setspawn diye çakışma olcağını zannetmiyorum.
 
Merhaba,
Skyblock sunucumda 4 sorun mevcut bilenler lütfen cevaplasın.

- Yeni Bir Oyuncu Sunucuya Girdiğinde /spawn'da doğmuyor. ben map'i flatroom dünyasına yaptım /setspawn'ı da oraya çektim lakin oyuncu world dünyasında başlıyor.

- JumpPads diye bir plugin yükledim oyuncuları ileri zıplatan bir plugin. lakin oyuncularda bu hatayı veriyor.
[Jump Pads] You do not have permission to do this! , Op Yetkisine Sahip olan kişiler zıplayabiliyor.

- Oyuncular ada'sındaki bir canavarı boşluğa attığında canavarın itemleri spawna geliyor, İronGolem'in canı fazla olduğu için ölmeden spawn'a ışınlanıyor.

- Oyuncular adalarından düştüğünde spawn'da doğuyor lakin ölüp doğuyor, skript kullanıyorum bunun için adadan düştüğü gibi ölmeden doğsun istiyorum ne yapmam gerek. Skripti Bırakıyorum


Kod:
on damage:
    victim is player
    if y-coordinate of victim is below 0:
        cancel event
        teleport victim to {ddy}
        send "&8[ &e&lMC-TR &8]» &7Yere düştüğün için buraya ışınlandın." to victim
        stop
command /dbde:
    permission: dbde.mctr
    permission message: &8[ &e&lMC-TR &8] &8» &7Bu komut için gerekli yetkiniz yok.
    trigger:
        set {ddy} to location of player
        message "&8[ &e&lMC-TR &8]» &7Düşünce doğacak yer &abaşarıyla &

Şuan kullandığınız bu skript bütün entityler için geçerli olduğu için adadan ne düşerse onu spawna atar bu skritpi kullanmayın bence

jumppads üstte açıklanmış. Perm vermeniz gerkiyor. " jumppads.use "
 
Adadam düşünce spawn atma gibi skript kullanıyorsanız atarmısınızç


- Oyuncular adalarından düştüğünde spawn'da doğuyor lakin ölüp doğuyor, skript kullanıyorum bunun için adadan düştüğü gibi ölmeden doğsun istiyorum ne yapmam gerek. Skripti Bırakıyorum

Kod:
on damage:
    victim is player
    if y-coordinate of victim is below 0:
        cancel event
        teleport victim to {ddy}
        send "&8[ &e&lMC-TR &8]» &7Yere düştüğün için buraya ışınlandın." to victim
        stop
command /dbde:
    permission: dbde.mctr
    permission message: &8[ &e&lMC-TR &8] &8» &7Bu komut için gerekli yetkiniz yok.
    trigger:
        set {ddy} to location of player
        message "&8[ &e&lMC-TR &8]» &7Düşünce doğacak yer &abaşarıyla &


Kendisi zaten üstte yazmış skripti bırakmış zaten sorun bu skriptte bütün entityleri spawna atar y = 0 ise

skripti kullanmamak daha iyi
 
skrip'ti sildim, Canavarlar'ı itince spawnda doğmuyor lakin şu sorun var yeni bir oyuncu oyuna girdiginde gene ormanlık world dünyasında başlıyor spawn'da başlamıyor illaha /spawn yazıp gitmesi lazım
 
skrip'ti sildim, Canavarlar'ı itince spawnda doğmuyor lakin şu sorun var yeni bir oyuncu oyuna girdiginde gene ormanlık world dünyasında başlıyor spawn'da başlamıyor illaha /spawn yazıp gitmesi lazım
/spawn yazıp /setworldspawn çekin sorununuz çözülecektir.
 
Kod:
on first login:
    execute console command "spawn %player%"

böyle bir skript ile deneyebilir misiniz?

Telefonda olduğumdan yazamamıştım skripti ben de teşekkür ederim yardımcı olduğunuz için
 
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