Kucluck Script
TebexDiscord
  • Introduction
  • Garage
    • KC Garage V1
      • ⚙️Installation
      • 🧰Functions
      • #️⃣Commands
      • ❓Common Issues
    • KC Garage V2
      • Installation
      • Functions
        • Jobs Impound
        • isParkingZone
        • getGarages
        • getImpounds
        • getGarageLabel
        • getImpoundLabel
        • getVehicleParkingFromPlate
      • Commands
      • Common Issues
  • Utils
    • KC Core Weapon
      • ⚙️Installation
      • ❓Common Issues
    • KC Logger
      • ⚙️Installation
      • 🧰Exports
      • 💡Tips
  • Side Jobs
    • KC Farming
      • ⚙️Installation
      • ❓Common Issues
Powered by GitBook
On this page
  • Simple Exports
  • Advanced Exports
  1. Utils
  2. KC Logger

Exports

Simple Exports

  • Can be used for clients or servers

exports['kc_logger']:DiscordLog({
    webhook = WEBHOOK_URL, 
    title = '📥 Join',
    embeds = '**'..gameName..'** New boarding to the city.\n\n`👥`**Nama: '..gameName..'**\n`🔢` **Server ID:** `'..src..'`\n`💬` **Discord:** <@'..discordId..'> (||'..discordId..'||)\n`🎮` **Steam Hex: **`'..identifiers..'`',
    color = '#3AF241'
})
Code Block
Value
Explanation

webhook

URL

Your discord webhook URL

title

string

Title to order embeds

embeds

string

Message content

color

string

Color for message

Advanced Exports

  • Can be used for clients or servers

exports['kc_logger']:DiscordLog({
    webhook = WEBHOOK_URL, 
    name = 'Kucluck Logger',
    content = 'This is a content for logger',
    title = '📥 Join',
    embeds = '**'..gameName..'** New boarding to the city.\n\n`👥`**Nama: '..gameName..'**\n`🔢` **Server ID:** `'..src..'`\n`💬` **Discord:** <@'..discordId..'> (||'..discordId..'||)\n`🎮` **Steam Hex: **`'..identifiers..'`',
    color = '#3AF241'
})
Code Block
Value
Explanation

webhook

URL

Your discord webhook URL

name

string

Name log sendder

content

string

Message content

title

string

Title to order embeds

embeds

string

Message content embeds

color

string

Color for message

Last updated 12 months ago

🧰