Bpek-Essentials V_0.0

Beğendiniz mi ?


  • Kullanılan toplam oy
    2

enes lol lol

Zombi Katili
En iyi cevaplar
0
Hepinize Merhaba,
Mini bir essentials kendi yapımım, küçük serverlarda kullanışlıdır..


Permission(YETKİLER)

bpek.sethome - Ev Belirler
bpek.home - Eve Gider
bpek.Iteminfo - Elindeki eşyanın numarasını öğrenirsiniz.
bpek.hat - Yazdığın eşyayı kafana giyersin.
bpek.gm - Oyun modunu değiştirirsin.
bpek.day - Gündüz yaparsın.
bpek.night - Gece yaparsın.
bpek.sun - Güneşli yaparsın.
bpek.rain - Yağmurlu yaparsın.
bpek.feed - Kendini beslersin.
bpek.tp - Birine ışınlanırsın.
bpek.tphere - Birini yanına çekersin.
bpek.kill - Birini öldürürsün.
bpek.setwarp - Işınlanma yeri belirlersin.
bpek.warp - Işınlanma yerine ışınlanırsın.
bpek.msg - Özel mesaj atarsın.
bpek.r - Özel mesaja kısa cevap verirsin.
bpek.cc - Sohbeti temizlersin.
bpek.sohbetkilitle - Sohbeti kilitlersin.



Kod:
options:
  alert: &7&l[&c&lAlert&7&l]
  girismesaji: &b(&eGIRDI&b)
  cikismesaji: &b(&cCIKTI&b)
  olummesaji: &b(&4GEBERDI&b)
  Onlineyok: &7Hic kimse aktif &cdegil
  Onlinelar: &f&lONLINE KISILER: &a%{_online staff::*}%

on join:
    broadcast "{@girismesaji} &9&l> &f%player%"
on quit:
    broadcast "{@cikismesaji} &9&l> &f%player%"
on death of player:
    broadcast "{@olummesaji} &9&l> &f%player%"

command /list:
    description: &7Aktif kullanicilar kimler?
    trigger:
        loop all players:
            loop-player has permission "Bpek.OnlineKullanici"
            add loop-player to {_online staff::*}
 
        size of {_online staff::*} is 0:
            message "{@Onlineyok}"
        else:
            message "{@Onlinelar}"
command /sethome <text>:
    permission: Bpek.Sethome
    description: &7Evini belirlemek ister misin?
    usage: /sethome [ISIM]
    trigger:
        set {home.%player%.%argument%} to location of player
        message "&7Ev belirlendi!"
command /home <text>:
    permission: Bpek.home
    description: &7Kendi evine isinlan!
    usage: /home [EV-ISMI]
    trigger:
        if {home.%player%} is not set:
            message "&c&lHATA: &7Hicbir ev belirlenmedi!"
            stop trigger
        teleport player to {home.%player%.%argument%}
command /Iteminfo <item=%tool%>:
    description: &7Itemlerin Id numarasini ogren
    usage: /id [ISIM]
    permission: Bpek.iteminfo
    trigger:
        message "&a%arg 1% &7iteminin ID Numarasi su &a%id of arg 1%"
command /hat <material>:
    description: &7Kafana bir esya giy
    usage: /hat <material>
    permission: Bpek.hat
    trigger:
        id of argument 1 is greater than 255:
            message "&c&lHATA: &7Sadece bloklari kafana sokabilirsin.."
            stop trigger
        player doesn't have argument 1:
            player doesn't have the permission "Bpek.hat":
                message "&c&lHATA: &7Kafana bir blok giyemezsin!"
                stop trigger
        helmet slot of player is not empty:
            message "&c&lHATA: &7Zaten kafana bir blok sokmussun ne gerek var buna ?"
            stop trigger
        player doesn't have the permission "ServerEssentials.hat":
            remove argument 1 from player
        equip player with argument 1
command /gm <text>:
    permission: bpek.gamemode
    trigger:
        if arg-1 is "1":
            set player' gamemode to creative
            send "&7Oyun modun &aYARATICI &7olarak ayarlandi."
        if arg-1 is "0":
            set player' gamemode to survival
            send "&7Oyun modun &cHAYATTA KALMA &7olarak ayarlandi."
        if arg-1 is "2":
            set player' gamemode to adventure
            send "&7Oyun modun &9MACERACI &7olarak ayarlandi."
command /day:
    permission: bpek.day
    trigger:
        message "&7Saat sabaha &aayarlandi.."
        execute command "time set day"
command /night:
    permission: bpek.night
    trigger:
        message "&7Saat geceye &aayarlandi"
        execute command "time set night"
command /sun:
    permission: bpek.sun
    trigger:
        message "&7Hava temizlendi,guneslendi.."
        make player execute command "weather clear"
command /rain:
    permission: bpek.rain
    trigger:
        message "&7Firtinalar basladi..."
        execute command "weather storm"
command /feed:
    permission: bpek.feed
    trigger:
        message "&7Aclik dolduruldu.."
        set hunger bar to 10
command /tp <player>:
    description: &7Baska birine isinlanma komudu
    usage: /tp <Oyuncu-Ismi>.
    permission: bpek.tp
    trigger:
        if player has permission "bpek.tp":
            teleport player to argument
            message "&c%argument% &7adli kisiye isinlandin.!"
            stop
command /tphere <player>:
    description: &7Baska birine yanina cekme komudu
    usage: /tphere <Oyuncu-Ismi>
    permission: bpek.tphere
    trigger:
        if player has permission "bpek.tphere":
            message "&7Oyuncu olan &c%argument% &7yanina isinlandi..!"
            teleport argument to player
            stop
command /kill <player>:
    permission: bpek.kill
    trigger:
        player has permission "bpek.kill":
            send "&c%argument% &7i geberttin..!"
            kill argument 1
command /setwarp <text>:
    permission: bpek.setwarp
    description: &7Gidilecek bir yer olustur..!
    trigger:
        set {essentials.%argument 1%.warp} to location of player
        message "&7Isinlanma noktası &abasariyla &7olusturuldu..!"
command /warp <text>:
    permission: bpek.warp
    description: &7Bir yere isinlan..
    trigger:
        if player has permission "bpek.tpnow":
            teleport player to {essentials.%argument 1%.warp}
            message "&7Su noktaya isinlandin.. &c%argument%..!"
        else:
            message "&73 Saniye icinde su noktaya isinlanacaksin.. &c%argument%..!"
          
command /msg <player> <text>:
    aliases: tell, m, t, whisper
    description: &7Bir mesaj gonder..
    permission: bpek.msg
    trigger:
        send "&b&l [&c%player% &9&l> &e%argument 2% &b&l]" to argument 1
        send "&b&l [&c%player% &9&l> &c%argument 1% &b&l] &e%argument 2%" to player
        set {essentials.%argument 1%.reply} to player
command /r <text>:
    aliases: reply
    description: &7Az onceki konusmaya cevap ver..!
    permission: bpek.r
    trigger:
        send "&b&l [&c%player% &9&l> &e%argument 1%]" to {essentials.%player%.reply}
        send "&b&l [&c%player% &9&l> &c%argument 1%]" to player
command /bpekyardim:
    trigger:
        message "&9&l********************************************************************************"
        message "&c/Home - &7Belirledigin bir eve git."
        message "&c/List - &7Online kisileri gor."
        message "&c/Iteminfo - &7Bir itemin ID numarasini ogren."
        message "&c/Hat (BLOK) - &7Kafana yazdigin bir bloku sok."
        message "&c/Day - &7Zamani gunduz yap."
        message "&c/Night - &7Zamani gece yap."
        message "&c/Sun - &7Havayi gunesli yap"
        message "&c/Rain - &7Havayi yagmurlu yap."
        message "&c/Feed - &7Kendini besle."
        message "&c/Gm (MOD) - &7Oyun modunu degistir."
        message "&c/Tp (ISIM) - &7Bir adama isinlan."
        message "&c/Tphere (ISIM) - &7Bir adami yanina isinla."
        message "&c/Kill (ISIM) - &7Bir kisiyi oldur."
        message "&c/Setwarp (ISIM) - &7Isinlanma yerini belirle."
        message "&c/Warp (ISIM) - &7Bir noktaya isinlan."
        message "&c/Msg (ISIM) (MESAJ) - &7Ozel bir mesaj gonder."
        message "&c/R (ISIM) - &7Bir mesaja devam et."
        message "&c/sohbetkilit (KOMUT) - &7Sohbeti kitle veya ac"
        message "&9&l********************************************************************************"
command /BpekEssentials:
    description: &7Eklenti hakkinda bilgi al.
    trigger:
        message ""
        message "&9&l********************************************************************************"
        message "&b[&eBPEK-MINIESSENTIALS&b]"
        message "&cVersion: 0.0"
        message "&cKodlayici: &7Enes lol lol(Berkay5134)"
        message "&9&l********************************************************************************"
command /cc:
    description: Clear the chat
    permission: bpek.cc
    trigger:
        loop 200 times:
            send "&f" to all players
        send "&6&lSUNUCU: &7Sohbet &abasariyla &7temizlendi." to all players
command /sohbetkilit <text>:
    description: &7Server sohbetini kitle.
    usage: &c/sohbetkilit &c<Ac/Kapat>
    permission: bpek.sohbetkilit
    trigger:
        if argument 1 is "ac":
            send "&6&lSUNUCU: &7Sohbet kilidi &aaktif &7edildi." to all players
            set {sohbetkilit} to true
        if argument 1 is "kapat":
            send "&6&lSUNUCU: &7Sohbet kilidi &cdeaktif &7edildi." to all players
            set {sohbetkilit} to false
        if argument 1 is not "ac" or "kapat":
            message "&cBilinmeyen Komut &b/sohbetkilit <Ac/Kapat>"
on chat:
    if {sohbetkilit} is true:
        message "&6&lSUNUCU: &cSohbet kilitliyken konusamazsin..!"
        cancel event
#(REKLAM)
on join:
    send "&7Bu server &aBPEK_ESSENTIALS_V0.0 &7kullaniyor." to player
 
Üst