RISKSCRIPTS

Farmingsystem DiscordConfig

Nov 4th, 2024 (edited)
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. DCConfig = {}
  2.  
  3. DCConfig.WebhookURL = "https://discord.com/api/webhooks/yourapihere" -- Webhook für allgemeine Benachrichtigungen (z.B. Preisupdates)
  4. DCConfig.AdminWebhookURL = "https://discord.com/api/webhooks/yourapihere" -- Webhook für Admin-Benachrichtigungen (z.B. Verkäufe)
  5.  
  6. -- Configuration for the price update embed
  7. DCConfig.PriceUpdateEmbed = {
  8. title = "» **New Selling Prices After Server Restart** «",
  9. color = 3447003, -- Blue (Hex: #3498db)
  10. includeTimestamp = true, -- We'll handle the actual timestamp in server.lua
  11. footer = {
  12. text = "RISK SCRIPTS",
  13. icon_url = "https://files.catbox.moe/37ed2b.png"
  14. },
  15. author = {
  16. name = "FARMING PRICE",
  17. icon_url = "https://files.catbox.moe/37ed2b.png"
  18. },
  19. fields = {
  20. {
  21. name = "Note",
  22. value = "Prices change every server restart.",
  23. inline = false
  24. }
  25. }
  26. }
  27.  
Add Comment
Please, Sign In to add comment