YusufAhmedov
Pluginer,Bilgisayar Mühendisi
- Katılım
- 20 Haziran 2017
- Mesajlar
- 124
- Elmaslar
- 10
- Puan
- 0
./c Ile Otomatik Rütbe Atlama Şu Şekildedir.
Dikkat: Rütbeleri Kendinize Göre Editleye Bilirsiniz. Kendi Sunucumda Kullandığım Rütbelerle Paylaşıyorum.
İlk Önce Şu Kodu plugins/chestcommands Kısmında .yml dosyası açıyoruz ve açtığımız dosyanın içerisine şu kodu yazıyoruz:
Sonra ise plugins/Skript/scripts Kısmına Gelip .sk Uzantılı Her hangi Bir Dosya Açıyoruz Ve O Dosyanın İçerisine Şu Kodu Yazıyoruz:
Dikkat: Rütbeleri Kendinize Göre Editleye Bilirsiniz. Kendi Sunucumda Kullandığım Rütbelerle Paylaşıyorum.
İlk Önce Şu Kodu plugins/chestcommands Kısmında .yml dosyası açıyoruz ve açtığımız dosyanın içerisine şu kodu yazıyoruz:
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
Sonra ise plugins/Skript/scripts Kısmına Gelip .sk Uzantılı Her hangi Bir Dosya Açıyoruz Ve O Dosyanın İçerisine Şu Kodu Yazıyoruz:
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%"
İşlem Bu Kadardır Ondan Sonra Serverinize Reload Atın. Ve ./c Yazıp Adanızı 30Bin Level Yapın Ve LegendLord a Tıklayın. Direkt LegendLord Olucaksınız!
İyi Günler
İyi Günler