Advertisement
Guest User

Eierkopf Code

a guest
Jan 19th, 2024
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. # INGAMECHAT SKRIPT BY PUBLICCODE
  2.  
  3.  
  4. # CONFIG
  5.  
  6. options:
  7. webhook: "YOUR WEBHOOK"
  8. server: SERVERNAME
  9. discord: YOUR DISCORD LINK
  10.  
  11. # load embed message
  12.  
  13. # AB HIER NIX VERÄNDERN! (on here don't change anyone!)
  14. on load:
  15. create a new embed:
  16. webhook: {@webhook}
  17.  
  18. title: "PublicCode's - ingame ChatUtils!"
  19. titleUrl: "https://www.blackspigot.com/downloads/publiccodes-chatutils-free-download-utils-for-discord.32188"
  20.  
  21. description: "Version: 1.0.0"
  22. color: "##3437eb" # Please use Hex Colors AND IMPORTANT: Write ## instead of #
  23. footer: "loadet PublicCode's CHATUTILS on {@server}"
  24. author: "PublicCode"
  25. authorUrl: "https://youtube.com/@KxmischerD8de"
  26.  
  27. timestamp: true
  28.  
  29. # Ingame Chat to Webhook
  30. on chat:
  31. send "%player% » %message%" as webhook to {@webhook}
  32.  
  33. # Message on Player's Join
  34. on join:
  35. send "[✅] %player%" as webhook to {@webhook}
  36.  
  37. # Welcome Message to new Player's
  38. on first join:
  39. send "%player% ist das erste mal auf den server gegangen! (Herzlich willkommen :D)"
  40.  
  41. # Message on Player leave
  42. on disconnect:
  43. send "[❌} %player%"
  44.  
  45.  
  46. # Admin Message
  47. on join:
  48. if player has permission "ChatUtils.admin":
  49. broadcast "&8[&bPublicCode &cChatUtils&8] &7» &3This Server using PublicCode's ChatUtils!"
  50.  
  51.  
  52. # Info Message
  53. command /PublicChatUtils:
  54. aliases: pcu, publiccodechatutils, chatutils
  55. trigger:
  56. send "&8[&bPublicCode &cChatUtils&8] &7» &aVERSION: 1.0.1" to player
  57. send "&8[&bPublicCode &cChatUtils&8] &7» &rDownload on BlackSpigot (PublicCodez)"
  58.  
  59.  
  60. command /discord:
  61. aliases: dc, discordserver
  62. trigger:
  63. send "&7[&9Discord] &7» {@discord}" to player
  64.  
  65.  
  66.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement