Histrymn2
Odunlara Vur Vur Vur!
İyi akşamlar, bugün yeni skriptle geldim :) skriptteki bazı özellikleri kaldırdım daha sade olsun diye, basit bir skript zaten :D
/bildir [oyuncu] [sebep] - oyuncuyu bildirir
/raporgör [oyuncu] - oyuncunun son raporunu gösterir (yetkililer için)
Oyuncular her 10 dakikada bir /report (bildir) komutunu kullanabilirler. Op'ler için bypass vardır.
Oyuncular kendilerini veya yetkilileri bildiremezler. Yetkililer için bildirmeyi kaldırmadım.
Hataları bana bildirebilirsiniz :D
Kod:
/bildir [oyuncu] [sebep] - oyuncuyu bildirir
/raporgör [oyuncu] - oyuncunun son raporunu gösterir (yetkililer için)
Oyuncular her 10 dakikada bir /report (bildir) komutunu kullanabilirler. Op'ler için bypass vardır.
Oyuncular kendilerini veya yetkilileri bildiremezler. Yetkililer için bildirmeyi kaldırmadım.
Hataları bana bildirebilirsiniz :D
Kod:
Kod:
options:
p: &3Lobi &8‣
command /report [<player>] [<text>]:
cooldown: 10 minutes
cooldown message: {@p} &eHer 10 dakikada bir şikayette bulunabilirsin!
cooldown bypass: op
aliases: rapor, şikayet, bildir
trigger:
if arg-1 is not set:
send "{@p} &cLütfen bir oyuncu belirtin!"
stop
if arg-1 is not a player:
send "{@p} &cLütfen geçerli bir oyuncu belirtin!"
stop
if arg-2 is not set:
send "{@p} &cLütfen geçerli bir sebep belirtin!"
stop
if arg-1 is player:
send "{@p} &cKendini bildiremezsin!"
stop
if {bildirmis.%player%} is not set:
send "{@p} &cBu oyuncu daha önceden kimseyi bildirmemiş!"
stop
if {bildirilen.%player%} is an op:
send "{@p} &cYetkilileri bildiremezsin!"
stop
else:
set {bildirmis.%player%} to true
set {bildiren.%player%} to player
set {bildirilen.%player%} to arg-1
set {sebep.%player%} to arg-2
send "&8&l---------- &e&lYeni Rapor &8&l----------"
send ""
send "&6Gönderen: &eSen"
send "&6Bildirilen: &e%{bildirilen.%player%}%"
send "&6Sebep: &e%{sebep.%player%}%"
send ""
send "&8&l---------- &e&lYeni Rapor &8&l----------"
send "&8&l---------- &e&lYeni Rapor &8&l----------" to ops
send "" to ops
send "&6Gönderen: &e%{bildiren.%player%}%" to ops
send "&6Bildirilen: &e%{bildirilen.%player%}%" to ops
send "&6Sebep: &e%{sebep.%player%}%" to ops
send "" to ops
send "&8&l---------- &e&lYeni Rapor &8&l----------" to ops
command /raporgor [<player>]:
aliases: raporgör
permission: op
permission message: {@p} &cBu komutu kullanabilmek için gerekli olan izne sahip değilsin!
trigger:
if arg-1 is not set:
send "{@p} &6/raporgör &e[Oyuncu] &8- &aOyuncunun raporlarını gösterir!"
stop
if {bildiren.%player%} is arg-1:
send "&8&l---------- &e&lRapor &8&l----------"
send "&e%arg-1% &8adlı oyuncunun raporu:"
send ""
send "&6Bildirilen: &e%{bildirilen.%player%}%"
send "&6Sebep: &e%{sebep.%player%}%"
send ""
send "&8&l---------- &e&lRapor &8&l----------"
stop
