Advertisement
ninja-gen

Lol

Jan 17th, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.52 KB | None | 0 0
  1. -- Discord Webhook Links
  2. -- Need help setting it up? (https://support.discordapp.com/hc/en-us/articles/228383668-Intro-to-Webhooks)
  3.  
  4. DiscordWebhookSystemInfos = 'https://discordapp.com/api/webhooks/667838584400642108/ZkY1mFpGnWUBaue01awjpjceXfMVMtLcd_p_H2nfDfIpqsj3ApSIhU8wPLiH2pfshHLh' -- Replace "WEBHOOK_HERE" Or Error
  5. DiscordWebhookKillinglogs = 'https://discordapp.com/api/webhooks/667844099365273600/0HiW_CSruFKGakhA1MmwCzzN7Pl2er-qLGZ3IXIAWp8GRk6Hk61k4BssoHzgTm7YCOUw' -- Replace "WEBHOOK_HERE" Or Error
  6. DiscordWebhookChat = 'https://discordapp.com/api/webhooks/667844181435351067/Wbtcu3S5bvuFoSKvl516Yd121jGiLwnNwpSzlnPGpqOf2WkewLH34YmzT0FJvqkra0t4' -- Replace "WEBHOOK_HERE" Or Error
  7.  
  8. -- Bot/Client Avatar and UserName
  9. SystemAvatar = 'https://wiki.fivem.net/w/images/d/db/FiveM-Wiki.png' -- Bot Avatar (FiveM Logo By Default)
  10.  
  11. UserAvatar = 'IMAGE_LINK_HERE' -- Change this to a link of your choice (Example https://i.imgur.com/KIcqSYs.png)
  12.  
  13. SystemName = 'Server Bot' -- Change this to a name of your choice!
  14.  
  15. -- How To Format and Setup Special Commands
  16. --[[ Special Commands formatting
  17.          *YOUR_TEXT*            --> Make Text Italics in Discord
  18.         **YOUR_TEXT**           --> Make Text Bold in Discord
  19.        ***YOUR_TEXT***          --> Make Text Italics & Bold in Discord
  20.         __YOUR_TEXT__           --> Underline Text in Discord
  21.        __*YOUR_TEXT*__          --> Underline Text and make it Italics in Discord
  22.       __**YOUR_TEXT**__         --> Underline Text and make it Bold in Discord
  23.      __***YOUR_TEXT***__        --> Underline Text and make it Italics & Bold in Discord
  24.         ~~YOUR_TEXT~~           --> Strikethrough Text in Discord
  25. ]]
  26.  
  27. -- Use 'USERNAME_NEEDED_HERE' without the quotes if you need a Users Name in a special command
  28. -- Use 'USERID_NEEDED_HERE' without the quotes if you need a Users ID in a special command
  29.  
  30. -- These Are Your Special Commands!!
  31. -- These special commands will be printed differently in discord, depending on what you set it to
  32. SpecialCommands = {
  33.                    {'/ooc', '**[OOC]:**'},
  34.                     {'/me', '**[ME]:**'},
  35.                     {'/dv', '**[DV]:**'},
  36.                     {'/tweet', '**[TWEET]:**'},
  37.                     {'/news', '**[WEAZEL NEWS]:**'},
  38.                     {'/repair', '**[MECHANIC]:**'},
  39.                     {'/dispatch', '**[DISPATCH]:**'},
  40.                    {'/911', '**[911]: (CALLER ID: [ USERNAME_NEEDED_HERE | USERID_NEEDED_HERE ])**'},
  41.                   }
  42.                        
  43. -- These blacklisted commands will not be printed in discord
  44. BlacklistedCommands = {                  
  45.                        '/unjail',
  46.                       }
  47.  
  48. -- Own WebHooks/Seperate Channels
  49. -- These Commands will use their own webhook
  50. OwnWebhookCommands = {
  51.                       {'/911', 'https://discordapp.com/api/webhooks/667844181435351067/Wbtcu3S5bvuFoSKvl516Yd121jGiLwnNwpSzlnPGpqOf2WkewLH34YmzT0FJvqkra0t4'},
  52.                       {'/dispatch', 'https://discordapp.com/api/webhooks/667844181435351067/Wbtcu3S5bvuFoSKvl516Yd121jGiLwnNwpSzlnPGpqOf2WkewLH34YmzT0FJvqkra0t4'},
  53.                       {'/me', 'https://discordapp.com/api/webhooks/667844181435351067/Wbtcu3S5bvuFoSKvl516Yd121jGiLwnNwpSzlnPGpqOf2WkewLH34YmzT0FJvqkra0t4'},                     {'/dv', 'https://discordapp.com/api/webhooks/667844181435351067/Wbtcu3S5bvuFoSKvl516Yd121jGiLwnNwpSzlnPGpqOf2WkewLH34YmzT0FJvqkra0t4'},
  54.                       {'/tweet', 'https://discordapp.com/api/webhooks/667844181435351067/Wbtcu3S5bvuFoSKvl516Yd121jGiLwnNwpSzlnPGpqOf2WkewLH34YmzT0FJvqkra0t4'},
  55.                       {'/repair', 'https://discordapp.com/api/webhooks/667844181435351067/Wbtcu3S5bvuFoSKvl516Yd121jGiLwnNwpSzlnPGpqOf2WkewLH34YmzT0FJvqkra0t4'},
  56.                      }
  57.  
  58. -- Discord Text To Speech Friendly Commands
  59. -- These Commands will be sent as TTS messages
  60. TTSCommands = {
  61.                '/Whatever',
  62.                '/Whatever2',
  63.               }
  64.               }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement