Çözüldü Skyblock rütbe sistemi

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

iTargetDS

Kızılsakal Kızıltaş?
Katılım
8 Ekim 2017
Mesajlar
506
Elmaslar
118
Puan
14.295
Konum
Türkiyeeee
Minecraft
iTargetDS

Discord:

iTargetDS #6159

Merhaba!
Sizden skyblock için rütbe sistemi istiyeceğim fakat skript veya plugin istemiyorum ASkyBlock plugininn /c özelliği ile yapmanızı istiyorum böyle bir şey var mı tam bilmiyorum fakat bir yerde gördüm diye hatırlıyorum.
Teşekkürler.
 
/c özelliği ile derken ? görevlerin hepsini tamamladıktan sonramı rütbe atlayacak oyuncu ?
 

Merhabalar isteğinizi yerine getirmek için geldim.
/c komudu ile rütbe atlatmak istiyorsanız adımları takip edin.
İlk öncelikle aşağıda verdiğim kodu kopyalayın sunucunun plugins/chestcommands bölümüne geliyoruz.
''.yml'' dosyası oluşturup kopyaladığınız kodu yapıştırmanız yeterli olacaktır.

Kod:
######################
#+                  +#
#   MENU SETTINGS    #
#+                  +#
######################

menu-settings:

  # name - appears as the title - REQUIRED
  name: '&b&lRütbeler'

  # rows - the number of rows of the chest - REQUIRED
  rows: 3

  # command - OPTIONAL (you can remove this or set it to '')
  command: 'rutbe; c; challenges'


  # The sound played whenever the menu is opened.
  # List of sounds:
  # jd.bukkit.org/rb/apidocs/org/bukkit/Sound.html
  open-sound: 'sound: ghast fireball'


  # open-with-item - OPTIONAL (you can remove this or
  # set the item-id/data-value to 0)
  # In this case it will open with a book (right click)
  open-with-item:
    item-id: 345
    left-click: false
    right-click: true
#   data-value: 0

######################
#+                  +#
#       ITEMS        #
#+                  +#
######################


Skylord:
  COMMAND: 'legendlordol'
  NAME: '&a&l[cross] &6LegendLord &a&l[cross]'
  LORE:
  - '&7Adanızı 30k yapıp buna tıklayın'
  ID: SLIME_BLOCK
  POSITION-X: 3
  POSITION-Y: 2

Skyking:
  COMMAND: 'legendkingol'
  NAME: '&a&l[cross] &6LegendKing &a&l[cross]'
  LORE:
  - '&7Adanızı 75k yapıp buna tıklayın'
  ID: IRON_BLOCK
  POSITION-X: 4
  POSITION-Y: 2

Skymaster:
  COMMAND: 'legendzeusol'
  NAME: '&a&l[cross] &6LegendZeus&a&l[cross]'
  LORE:
  - '&7Adanızı 150k yapıp buna tıklayın'
  ID: GOLD_BLOCK
  POSITION-X: 5
  POSITION-Y: 2

Skylegend:
  COMMAND: 'legendgodol'
  NAME: '&a&l[cross] &6LegendGod &a&l[cross]'
  LORE:
  - '&7Adanızı 400k yapıp buna tıklayın'
  ID: EMERALD_BLOCK
  POSITION-X: 6
  POSITION-Y: 2

Zeus:
  COMMAND: 'legendskyol'
  NAME: '&a&l[cross] &6LegendSky &a&l[cross]'
  LORE:
  - '&7Adanizi 700k yapip buna tiklayin'
  ID: DIAMOND_BLOCK
  POSITION-X: 7
  POSITION-Y: 2



Son olarak aşağıda olan kodu kopyalayın ve plugins/skript/scripts bölümüne gelip ''.sk'' adlı herhangi bir skript dosyası oluşturuyoruz.
Kopyaladığınız kodu o dosya içerisine yapıştırmanız yeterli olacaktır. En iyi cevap seçerseniz sevinirim <3

Kod:
options:
    skylordolamadin: &cLegendNetwork &e>> &2LegendLord olabilmek icin adanızı 10000 lvl yapmalisiniz
    skykingolamadin: &cLegendNetwork &e>> &2LegendKing olabilmek icin adanızı 25000 lvl yapmalisiniz
    skymasterolamadin: &cLegendNetwork &e>> &2LegendZeus olabilmek icin adanızı 50000 lvl yapmalisiniz
    skylegendolamadin: &cLegendNetwork &e>> &2LegendGod olabilmek icin adanızı 75000 lvl yapmalisiniz
    zeusolamadin: &cLegendNetwork &e>> &2LegendZeus olabilmek icin adanızı 100000 lvl yapmalisiniz

command /legendlordol:
    trigger:
        if asb player's island level is greater than 30000:
            execute console command "manuadd %player% legendlord"
            send "&cLegendNetwork &e>> &2Başarıyla LegendLord Oldunuz "
        else:
            message "{@skylordolamadin}"
command /legendkingol:
    trigger:
        if asb player's island level is greater than 75000:
            execute console command "manuadd %player% legendking"
            send "&cLegendNetwork &e>> &2Başarıyla LegendKing Oldunuz "
        else:
            message "{@skykingolamadin}"
command /legendzeusol:
    trigger:
        if asb player's island level is greater than 150000:
            execute console command "manuadd %player% legendzeus"
            send "&cLegendNetwork &e>> &2Başarıyla LegendZeus Oldunuz "
        else:
            message "{@skymasterolamadin}"
command /legendgodol:
    trigger:
        if asb player's island level is greater than 400000:
            execute console command "manuadd %player% legendgod"
            send "&cLegendNetwork &e>> &2Başarıyla LegendGod Oldunuz "
        else:
            message "{@skylegendolamadin}"
command /legendskyol:
    trigger:
        if asb player's island level is greater than 700000:
            execute console command "manuadd %player% legendsky"
            send "&cLegendNetwork &e>> &2Başarıyla LegendSky Oldunuz "
        else:
            message "{@zeusolamadin}"
command /is_restart:
    trigger:
        if player does not have permission "grup.kal":
            execute console command "manuadd %player% oyuncu"
            execute console command "manudel %player%"
command /is_leave:
    trigger:
        if player does not have permission "grup.kal":
            execute console command "manuadd %player% oyuncu"
            execute console command "manudel %player%"
command /is_confirm:
    trigger:
        if player does not have permission "grup.kal":
            execute console command "manuadd %player% oyuncu"
            execute console command "manudel %player%"
command /is_reset:
    trigger:
        if player does not have permission "grup.kal":
            execute console command "manuadd %player% oyuncu"
            execute console command "manudel %player%"

 

Merhabalar isteğinizi yerine getirmek için geldim.
/c komudu ile rütbe atlatmak istiyorsanız adımları takip edin.
İlk öncelikle aşağıda verdiğim kodu kopyalayın sunucunun plugins/chestcommands bölümüne geliyoruz.
''.yml'' dosyası oluşturup kopyaladığınız kodu yapıştırmanız yeterli olacaktır.

Kod:
######################
#+                  +#
#   MENU SETTINGS    #
#+                  +#
######################

menu-settings:

  # name - appears as the title - REQUIRED
  name: '&b&lRütbeler'

  # rows - the number of rows of the chest - REQUIRED
  rows: 3

  # command - OPTIONAL (you can remove this or set it to '')
  command: 'rutbe; c; challenges'


  # The sound played whenever the menu is opened.
  # List of sounds:
  # jd.bukkit.org/rb/apidocs/org/bukkit/Sound.html
  open-sound: 'sound: ghast fireball'


  # open-with-item - OPTIONAL (you can remove this or
  # set the item-id/data-value to 0)
  # In this case it will open with a book (right click)
  open-with-item:
    item-id: 345
    left-click: false
    right-click: true
#   data-value: 0

######################
#+                  +#
#       ITEMS        #
#+                  +#
######################


Skylord:
  COMMAND: 'legendlordol'
  NAME: '&a&l[cross] &6LegendLord &a&l[cross]'
  LORE:
  - '&7Adanızı 30k yapıp buna tıklayın'
  ID: SLIME_BLOCK
  POSITION-X: 3
  POSITION-Y: 2

Skyking:
  COMMAND: 'legendkingol'
  NAME: '&a&l[cross] &6LegendKing &a&l[cross]'
  LORE:
  - '&7Adanızı 75k yapıp buna tıklayın'
  ID: IRON_BLOCK
  POSITION-X: 4
  POSITION-Y: 2

Skymaster:
  COMMAND: 'legendzeusol'
  NAME: '&a&l[cross] &6LegendZeus&a&l[cross]'
  LORE:
  - '&7Adanızı 150k yapıp buna tıklayın'
  ID: GOLD_BLOCK
  POSITION-X: 5
  POSITION-Y: 2

Skylegend:
  COMMAND: 'legendgodol'
  NAME: '&a&l[cross] &6LegendGod &a&l[cross]'
  LORE:
  - '&7Adanızı 400k yapıp buna tıklayın'
  ID: EMERALD_BLOCK
  POSITION-X: 6
  POSITION-Y: 2

Zeus:
  COMMAND: 'legendskyol'
  NAME: '&a&l[cross] &6LegendSky &a&l[cross]'
  LORE:
  - '&7Adanizi 700k yapip buna tiklayin'
  ID: DIAMOND_BLOCK
  POSITION-X: 7
  POSITION-Y: 2



Son olarak aşağıda olan kodu kopyalayın ve plugins/skript/scripts bölümüne gelip ''.sk'' adlı herhangi bir skript dosyası oluşturuyoruz.
Kopyaladığınız kodu o dosya içerisine yapıştırmanız yeterli olacaktır. En iyi cevap seçerseniz sevinirim <3

Kod:
options:
    skylordolamadin: &cLegendNetwork &e>> &2LegendLord olabilmek icin adanızı 10000 lvl yapmalisiniz
    skykingolamadin: &cLegendNetwork &e>> &2LegendKing olabilmek icin adanızı 25000 lvl yapmalisiniz
    skymasterolamadin: &cLegendNetwork &e>> &2LegendZeus olabilmek icin adanızı 50000 lvl yapmalisiniz
    skylegendolamadin: &cLegendNetwork &e>> &2LegendGod olabilmek icin adanızı 75000 lvl yapmalisiniz
    zeusolamadin: &cLegendNetwork &e>> &2LegendZeus olabilmek icin adanızı 100000 lvl yapmalisiniz

command /legendlordol:
    trigger:
        if asb player's island level is greater than 30000:
            execute console command "manuadd %player% legendlord"
            send "&cLegendNetwork &e>> &2Başarıyla LegendLord Oldunuz "
        else:
            message "{@skylordolamadin}"
command /legendkingol:
    trigger:
        if asb player's island level is greater than 75000:
            execute console command "manuadd %player% legendking"
            send "&cLegendNetwork &e>> &2Başarıyla LegendKing Oldunuz "
        else:
            message "{@skykingolamadin}"
command /legendzeusol:
    trigger:
        if asb player's island level is greater than 150000:
            execute console command "manuadd %player% legendzeus"
            send "&cLegendNetwork &e>> &2Başarıyla LegendZeus Oldunuz "
        else:
            message "{@skymasterolamadin}"
command /legendgodol:
    trigger:
        if asb player's island level is greater than 400000:
            execute console command "manuadd %player% legendgod"
            send "&cLegendNetwork &e>> &2Başarıyla LegendGod Oldunuz "
        else:
            message "{@skylegendolamadin}"
command /legendskyol:
    trigger:
        if asb player's island level is greater than 700000:
            execute console command "manuadd %player% legendsky"
            send "&cLegendNetwork &e>> &2Başarıyla LegendSky Oldunuz "
        else:
            message "{@zeusolamadin}"
command /is_restart:
    trigger:
        if player does not have permission "grup.kal":
            execute console command "manuadd %player% oyuncu"
            execute console command "manudel %player%"
command /is_leave:
    trigger:
        if player does not have permission "grup.kal":
            execute console command "manuadd %player% oyuncu"
            execute console command "manudel %player%"
command /is_confirm:
    trigger:
        if player does not have permission "grup.kal":
            execute console command "manuadd %player% oyuncu"
            execute console command "manudel %player%"
command /is_reset:
    trigger:
        if player does not have permission "grup.kal":
            execute console command "manuadd %player% oyuncu"
            execute console command "manudel %player%"

".... skript veya plugin istemiyorum."
 
Merhaba, sorununuzun çözümü oldukça basit.

İlk olarak ASkyBlock\challanges.yml dosyasını açın. İçindeki bütün yazıları silin. Ve alttakileri kopyalayıp oraya yapıştırın.

Kod:
##########################################################################################
# Challenges
# Rewards and required items have to be described using Bukkit Materials
# and be exactly correct
# Do not use Type Id's - they will not work
# Challenges can be one of three types - inventory, island or level.
# inventory - means the player must have the items on them
# island - means the items have to be on the island and within 10 blocks of the player
#          entities are also supported, e.g., COW.
# level - means the island level has to be equal or over this amount
# Challenges can be repeatable only if they are inventory challenges
# permissions can be given as a reward
#
# Reward Commands - commands can be run when a challenge is completed and repeated
# Commands are:
#    rewardcommands:
#      - command1
#      - command2
#    repeatrewardcommands:
#      - command1
#      - command2     
# The commands are listed and run in order. Do not put a / in front of the command.
# The token [player] will be replaced with the player's name.
# Example:
#    rewardcommands:
#      - pex promote [player]
#      - heal [player]
#      - warp winner_circle [player]
# If a command fails, it will be noted in the console.
##########################################################################################

challenges:
  # Challenge levels - list as many as you like
  levels: 'Rutbeler'
  # The number of undone tasks that can be left on a level before revealing next level
  waiveramount: 1
  # Challenge list
  # Challenge names must be in lowercase.
  challengeList:
    skylord:
      friendlyname: 'Skylord'
      description: 'Adani 2000 level yapip buna tikla. Sonra /Skylordol yaz.'
      icon: QUARTZ_BLOCK
      level: 'Rutbeler'
      type: level
      requiredItems: 2000
      takeItems: false
      itemReward: 'DIAMOND_BLOCK:64'
      rewardText: '64 elmas blok!'
      moneyReward: 15000
      expReward: 25000
      permissionReward: 'skylord.ol'
      repeatable: false
      repeatItemReward: ''
      repeatRewardText: ''
      repeatMoneyReward: 0
      repeatExpReward: 0
    skyking:
      friendlyname: 'Skyking'
      description: 'Adani 8000 level yapip buna tikla. Sonra /Skykingol yaz.'
      icon: IRON_BLOCK
      level: 'Rutbeler'
      type: level
      requiredItems: 8000
      takeItems: false
      itemReward: 'DIAMOND_BLOCK:64'
      rewardText: '64 elmas blok!'
      moneyReward: 15000
      expReward: 25000
      permissionReward: 'skyking.ol'
      repeatable: false
      repeatItemReward: ''
      repeatRewardText: ''
      repeatMoneyReward: 0
      repeatExpReward: 0
    skymaster:
      friendlyname: 'Skymaster'
      description: 'Adani 15000 level yapip buna tikla. Sonra /Skymasterol yaz.'
      icon: GOLD_BLOCK
      level: 'Rutbeler'
      type: level
      requiredItems: 15000
      takeItems: false
      itemReward: 'DIAMOND_BLOCK:64'
      rewardText: '64 elmas blok!'
      moneyReward: 15000
      expReward: 25000
      permissionReward: 'skymaster.ol'
      repeatable: false
      repeatItemReward: ''
      repeatRewardText: ''
      repeatMoneyReward: 0
      repeatExpReward: 0
    skyguardian:
      friendlyname: 'Skyguardian'
      description: 'Adani 25000 level yapip buna tikla. Sonra /Skyguardianol yaz.'
      icon: EMERALD_BLOCK
      level: 'Rutbeler'
      type: level
      requiredItems: 25000
      takeItems: false
      itemReward: 'DIAMOND_BLOCK:64'
      rewardText: '64 elmas blok!'
      moneyReward: 15000
      expReward: 25000
      permissionReward: 'skyguardian.ol'
      repeatable: false
      repeatItemReward: ''
      repeatRewardText: ''
      repeatMoneyReward: 0
      repeatExpReward: 0
    skytech:
      friendlyname: 'Skytech'
      description: 'Adani 35000 level yapip buna tikla. Sonra /Skytechol yaz.'
      icon: DIAMOND_BLOCK
      level: 'Rutbeler'
      type: level
      requiredItems: 35000
      takeItems: false
      itemReward: 'DIAMOND_BLOCK:64'
      rewardText: '64 elmas blok!'
      moneyReward: 15000
      expReward: 25000
      permissionReward: 'skytech.ol'
      repeatable: false
      repeatItemReward: ''
      repeatRewardText: ''
      repeatMoneyReward: 0
      repeatExpReward: 0

Ondan sonra, sunucunuza şu Skripti ekleyin:

Kod:
command /skylordol:
    trigger:
        if player have the permission "skylord.ol":
            {skylord.%player%} is true:
                send "&aTechNetwork &8&l» &7Zaten SkyLord olmuşsun."
            else:
                send "&aTechNetwork &8&l» &7Başarıyla SkyLord oldun." to player
                set {skylord.%player%} to true
                execute console command "manuadd %player% skylord"
        else:
            send "&aTechNetwork &8&l» &7Skylord olmak için ilk önce &a/c&7'deki görevi yapman lazım."
          
command /skykingol:
    trigger:
        if player have the permission "skyking.ol":
            {skylord.%player%} is true:
                {skyking.%player%} is true:
                    send "&aTechNetwork &8&l» &7Zaten Skyking olmuşsun."
                else:
                    send "&aTechNetwork &8&l» &7Başarıyla Skyking oldun." to player
                    set {skyking.%player%} to true
                    execute console command "manuadd %player% skyking"
            else:
                send "&aTechNetwork &8&l» &7İlk önce Skylord olman lazım."
        else:
            send "&aTechNetwork &8&l» &7Skyking olmak için ilk önce &a/c&7'deki görevi yapman lazım."
          
command /skymasterol:
    trigger:
        if player have the permission "skymaster.ol":
            {skyking.%player%} is true:
                {skymaster.%player%} is true:
                    send "&aTechNetwork &8&l» &7Zaten Skymaster olmuşsun."
                else:
                    send "&aTechNetwork &8&l» &7Başarıyla Skymaster oldun." to player
                    set {skymaster.%player%} to true
                    execute console command "manuadd %player% skymaster"
            else:
                send "&aTechNetwork &8&l» &7İlk önce Skyking olman lazım."
        else:
            send "&aTechNetwork &8&l» &7Skymaster olmak için ilk önce &a/c&7'deki görevi yapman lazım."
          
command /skyguardianol:
    trigger:
        if player have the permission "skyguardian.ol":
            {skymaster.%player%} is true:
                {skyguardian.%player%} is true:
                    send "&aTechNetwork &8&l» &7Zaten Skyguardian olmuşsun."
                else:
                    send "&aTechNetwork &8&l» &7Başarıyla Skyguardian oldun." to player
                    set {skyguardian.%player%} to true
                    execute console command "manuadd %player% skyguardian"
            else:
                send "&aTechNetwork &8&l» &7İlk önce Skymaster olman lazım."
        else:
            send "&aTechNetwork &8&l» &7Skyguardian olmak için ilk önce &a/c&7'deki görevi yapman lazım."
          
command /skytechol:
    trigger:
        if player have the permission "skytech.ol":
            {skyguardian.%player%} is true:
                {skytech.%player%} is true:
                    send "&aTechNetwork &8&l» &7Zaten Skytech olmuşsun."
                else:
                    send "&aTechNetwork &8&l» &7Başarıyla Skytech oldun." to player
                    set {skytech.%player%} to true
                    execute console command "manuadd %player% skytech"
            else:
                send "&aTechNetwork &8&l» &7İlk önce Skyguardian olman lazım."
        else:
            send "&aTechNetwork &8&l» &7Skytech olmak için ilk önce &a/c&7'deki görevi yapman lazım."

Bu işlemleri yaptıktan sonra sunucunuzu yeniden başlatın.

NOT: Eski sunucularımın birinden alıntıdır. Aslında yine ben yapmış oluyorum ama demem yine yararıma :D (2016)
 

Merhabalar isteğinizi yerine getirmek için geldim.
/c komudu ile rütbe atlatmak istiyorsanız adımları takip edin.
İlk öncelikle aşağıda verdiğim kodu kopyalayın sunucunun plugins/chestcommands bölümüne geliyoruz.
''.yml'' dosyası oluşturup kopyaladığınız kodu yapıştırmanız yeterli olacaktır.

Kod:
######################
#+                  +#
#   MENU SETTINGS    #
#+                  +#
######################

menu-settings:

  # name - appears as the title - REQUIRED
  name: '&b&lRütbeler'

  # rows - the number of rows of the chest - REQUIRED
  rows: 3

  # command - OPTIONAL (you can remove this or set it to '')
  command: 'rutbe; c; challenges'


  # The sound played whenever the menu is opened.
  # List of sounds:
  # jd.bukkit.org/rb/apidocs/org/bukkit/Sound.html
  open-sound: 'sound: ghast fireball'


  # open-with-item - OPTIONAL (you can remove this or
  # set the item-id/data-value to 0)
  # In this case it will open with a book (right click)
  open-with-item:
    item-id: 345
    left-click: false
    right-click: true
#   data-value: 0

######################
#+                  +#
#       ITEMS        #
#+                  +#
######################


Skylord:
  COMMAND: 'legendlordol'
  NAME: '&a&l[cross] &6LegendLord &a&l[cross]'
  LORE:
  - '&7Adanızı 30k yapıp buna tıklayın'
  ID: SLIME_BLOCK
  POSITION-X: 3
  POSITION-Y: 2

Skyking:
  COMMAND: 'legendkingol'
  NAME: '&a&l[cross] &6LegendKing &a&l[cross]'
  LORE:
  - '&7Adanızı 75k yapıp buna tıklayın'
  ID: IRON_BLOCK
  POSITION-X: 4
  POSITION-Y: 2

Skymaster:
  COMMAND: 'legendzeusol'
  NAME: '&a&l[cross] &6LegendZeus&a&l[cross]'
  LORE:
  - '&7Adanızı 150k yapıp buna tıklayın'
  ID: GOLD_BLOCK
  POSITION-X: 5
  POSITION-Y: 2

Skylegend:
  COMMAND: 'legendgodol'
  NAME: '&a&l[cross] &6LegendGod &a&l[cross]'
  LORE:
  - '&7Adanızı 400k yapıp buna tıklayın'
  ID: EMERALD_BLOCK
  POSITION-X: 6
  POSITION-Y: 2

Zeus:
  COMMAND: 'legendskyol'
  NAME: '&a&l[cross] &6LegendSky &a&l[cross]'
  LORE:
  - '&7Adanizi 700k yapip buna tiklayin'
  ID: DIAMOND_BLOCK
  POSITION-X: 7
  POSITION-Y: 2



Son olarak aşağıda olan kodu kopyalayın ve plugins/skript/scripts bölümüne gelip ''.sk'' adlı herhangi bir skript dosyası oluşturuyoruz.
Kopyaladığınız kodu o dosya içerisine yapıştırmanız yeterli olacaktır. En iyi cevap seçerseniz sevinirim <3

Kod:
options:
    skylordolamadin: &cLegendNetwork &e>> &2LegendLord olabilmek icin adanızı 10000 lvl yapmalisiniz
    skykingolamadin: &cLegendNetwork &e>> &2LegendKing olabilmek icin adanızı 25000 lvl yapmalisiniz
    skymasterolamadin: &cLegendNetwork &e>> &2LegendZeus olabilmek icin adanızı 50000 lvl yapmalisiniz
    skylegendolamadin: &cLegendNetwork &e>> &2LegendGod olabilmek icin adanızı 75000 lvl yapmalisiniz
    zeusolamadin: &cLegendNetwork &e>> &2LegendZeus olabilmek icin adanızı 100000 lvl yapmalisiniz

command /legendlordol:
    trigger:
        if asb player's island level is greater than 30000:
            execute console command "manuadd %player% legendlord"
            send "&cLegendNetwork &e>> &2Başarıyla LegendLord Oldunuz "
        else:
            message "{@skylordolamadin}"
command /legendkingol:
    trigger:
        if asb player's island level is greater than 75000:
            execute console command "manuadd %player% legendking"
            send "&cLegendNetwork &e>> &2Başarıyla LegendKing Oldunuz "
        else:
            message "{@skykingolamadin}"
command /legendzeusol:
    trigger:
        if asb player's island level is greater than 150000:
            execute console command "manuadd %player% legendzeus"
            send "&cLegendNetwork &e>> &2Başarıyla LegendZeus Oldunuz "
        else:
            message "{@skymasterolamadin}"
command /legendgodol:
    trigger:
        if asb player's island level is greater than 400000:
            execute console command "manuadd %player% legendgod"
            send "&cLegendNetwork &e>> &2Başarıyla LegendGod Oldunuz "
        else:
            message "{@skylegendolamadin}"
command /legendskyol:
    trigger:
        if asb player's island level is greater than 700000:
            execute console command "manuadd %player% legendsky"
            send "&cLegendNetwork &e>> &2Başarıyla LegendSky Oldunuz "
        else:
            message "{@zeusolamadin}"
command /is_restart:
    trigger:
        if player does not have permission "grup.kal":
            execute console command "manuadd %player% oyuncu"
            execute console command "manudel %player%"
command /is_leave:
    trigger:
        if player does not have permission "grup.kal":
            execute console command "manuadd %player% oyuncu"
            execute console command "manudel %player%"
command /is_confirm:
    trigger:
        if player does not have permission "grup.kal":
            execute console command "manuadd %player% oyuncu"
            execute console command "manudel %player%"
command /is_reset:
    trigger:
        if player does not have permission "grup.kal":
            execute console command "manuadd %player% oyuncu"
            execute console command "manudel %player%"

Skript doğru çalışmıyor
 
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