Advertisement
Guest User

Untitled

a guest
Mar 1st, 2017
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. # Kullanım = /tedit k Yazarsaniz Onunuzdeki Tabela Kopyalanir /tedit y Yazarsaniz Onunuzdeki Tabelaya Kopyaladıgınız Tabeladaki Yazanlari Yapistirir ! DİKKAT Onunuzde Mutlaka Tabela # # Olmalı Aksi Halde Olmaz Çalışmaz !
  2.  
  3. # Yapımcı = Emre Zengin
  4. # Nick = MySkript
  5.  
  6.  
  7.  
  8. command /tedit [<text>]:
  9. aliases: /tabelaedit, /tabe
  10. permission: Tabela.sk
  11. permission message: &cYou don't have permission to perform this command.
  12. trigger:
  13. if arg-1 is not set:
  14. send "&7Tabela Kopyalamak Icin &c/tedit k &7Yaziniz &a&lDIKKAT &9= &7Onunuzde Yazili bir Tabelaya Bakarak Yapiniz !"
  15. send "&7Tabela Yapistirmak Icin &c/tedit t &7Yaziniz &a&lDIKKAT &9= &7Onunuzde Bos Bir Tabelaya Bakarak Yapiniz !"
  16. send "&7Tabela Silmek Icin &c/tedit s &7Yaziniz &a&lDIKKAT &9= &7Onunuzde Yazili Bir Tabelaya Bakarak Yapiniz !"
  17. if arg-1 is "kopyala" or "kop" or "k":
  18. if target block is sign:
  19. delete {TabelaEdit.%event-player%::*}
  20. add line 1 of target block to {TabelaEdit.%event-player%::*}
  21. add line 2 of target block to {TabelaEdit.%event-player%::*}
  22. add line 3 of target block to {TabelaEdit.%event-player%::*}
  23. add line 4 of target block to {TabelaEdit.%event-player%::*}
  24. message "&2[&7- TabelaEdit &7-&2] &4>> &7Tabela Kopyalandi !"
  25. else:
  26. message "&2[&7- TabelaEdit &7-&2] &4>> &7Onunde Bir Tabela Goremiyorum !"
  27. else if arg-1 is "yapistir" or "yap" or "y":
  28. if target block is sign:
  29. loop 4 times:
  30. set line loop-number of target block to colored {TabelaEdit.%event-player%::%loop-number%}
  31. message "&2[&7- TabelaEdit &7-&2] &4>> &7Tabela Basariyla Yapistirildi !"
  32. else:
  33. message "&2[&7- TabelaEdit &7-&2] &4>> &7Onunde Bir Tabela Goremiyorum !"
  34. else if arg-1 is "sil" or "s":
  35. loop 4 times:
  36. set line loop-number of target block to ""
  37. message "&2[&7- TabelaEdit &7-&2] &4>> &7Tabela Basariyla Temizlendi !"
  38. else:
  39. message "&2[&7- TabelaEdit &7-&2] &4>> &7Onunde Bir Tabela Goremiyorum !"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement