Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. DiscordWebhookSystemInfos = 'CYCE_WIKUSI<3'
  2. DiscordWebhookKillinglogs = 'https://discordapp.com/api/webhooks/582913708053757963/QA85cnsa-AyKKiFf4Jd-AnOOYdfaqI9G2XgXJrFFyZlzO5dZ_5qnzE8nFn71neeD_HE_'
  3. DiscordWebhookChat = ''
  4.  
  5. SystemAvatar = 'https://wiki.fivem.net/w/images/d/db/FiveM-Wiki.png'
  6.  
  7. UserAvatar = 'https://i.imgur.com/KIcqSYs.png'
  8.  
  9. SystemName = 'SYSTEM'
  10.  
  11.  
  12. --[[ Special Commands formatting
  13. *YOUR_TEXT* --> Make Text Italics in Discord
  14. **YOUR_TEXT** --> Make Text Bold in Discord
  15. ***YOUR_TEXT*** --> Make Text Italics & Bold in Discord
  16. __YOUR_TEXT__ --> Underline Text in Discord
  17. __*YOUR_TEXT*__ --> Underline Text and make it Italics in Discord
  18. __**YOUR_TEXT**__ --> Underline Text and make it Bold in Discord
  19. __***YOUR_TEXT***__ --> Underline Text and make it Italics & Bold in Discord
  20. ~~YOUR_TEXT~~ --> Strikethrough Text in Discord
  21. ]]
  22. -- Use 'USERNAME_NEEDED_HERE' without the quotes if you need a Users Name in a special command
  23. -- Use 'USERID_NEEDED_HERE' without the quotes if you need a Users ID in a special command
  24.  
  25.  
  26. -- These special commands will be printed differently in discord, depending on what you set it to
  27. SpecialCommands = {
  28. {'/ooc', '**[OOC]:** '},
  29. {'/dark', '**DARK: **'},
  30. {'/twt', '**TWT: **'},
  31. {'/report', '**REPORT: **'},
  32. }
  33.  
  34.  
  35. -- These blacklisted commands will not be printed in discord
  36. BlacklistedCommands = {
  37. '/AnyCommand',
  38. '/AnyCommand2',
  39. }
  40.  
  41. -- These Commands will use their own webhook
  42. OwnWebhookCommands = {
  43. {'/AnotherCommand', 'WEBHOOK_LINK_HERE'},
  44. {'/AnotherCommand2', 'WEBHOOK_LINK_HERE'},
  45. }
  46.  
  47. -- These Commands will be sent as TTS messages
  48. TTSCommands = {
  49. '/Whatever',
  50. '/Whatever2',
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement