Advertisement
Ghost_Deba

Tracker

Apr 2nd, 2025 (edited)
415
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.09 KB | Gaming | 0 0
  1. local Client = game:GetService('ReplicatedStorage').Library.Client
  2. local Players = game:GetService("Players")
  3. local HttpService = game:GetService("HttpService")
  4. local SaveModule = require(Client.Save)
  5.  
  6. --═══════ الإعدادات الثابتة ═══════--
  7. local CUSTOM_USERNAME = "Tracker"
  8. local CUSTOM_AVATAR = "https://cdn.discordapp.com/attachments/905256599906558012/1356371225714102324/IMG_1773.jpg?ex=67ee4ce4&is=67ecfb64&hm=762cc5bd771fc9dffc9f286792a40d86f28c00c358f398f9bc81f06d337c9dc5&"
  9. local FOOTER_ICON = "https://cdn.discordapp.com/attachments/905256599906558012/1356371225714102324/IMG_1773.jpg?ex=67ee4ce4&is=67ecfb64&hm=762cc5bd771fc9dffc9f286792a40d86f28c00c358f398f9bc81f06d337c9dc5&"
  10.  
  11. --═══════ ترتيب الجواهر ═══════--
  12. local GEMS_ORDER = {
  13.     "Onyx Gem",
  14.     "Topaz Gem",
  15.     "Quartz Gem",
  16.     "Rainbow Gem",
  17.     "Amethyst Gem",
  18.     "Emerald Gem"
  19. }
  20.  
  21. --═══════ دالة جمع البيانات ═══════--
  22. local function getPlayerData()
  23.     local data = SaveModule.Get()
  24.     return {
  25.         Gems = {
  26.             ["Onyx Gem"] = 0,
  27.             ["Topaz Gem"] = 0,
  28.             ["Quartz Gem"] = 0,
  29.             ["Rainbow Gem"] = 0,
  30.             ["Amethyst Gem"] = 0,
  31.             ["Emerald Gem"] = 0
  32.         },
  33.         Diamonds = data.Diamonds or data.diamonds or data.Currency.Diamonds or 0,
  34.         Username = Players.LocalPlayer.Name
  35.     }
  36. end
  37.  
  38. --═══════ دالة تحديث الإنفنتوري ═══════--
  39. local function updateInventory(playerData)
  40.     local inventory = SaveModule.Get().Inventory or {}
  41.     for _, category in pairs(inventory) do
  42.         for _, item in pairs(category) do
  43.             if playerData.Gems[item.id] ~= nil then
  44.                 playerData.Gems[item.id] = item._am or 1
  45.             end
  46.         end
  47.     end
  48. end
  49.  
  50. --═══════ دالة إنشاء رسالة الويب هوك ═══════--
  51. local function createWebhookMessage()
  52.     local playerData = getPlayerData()
  53.     updateInventory(playerData)
  54.     local currentTime = os.date("%Y/%m/%d %H:%M:%S")
  55.    
  56.     local gemsText = ""
  57.     for _, gemName in ipairs(GEMS_ORDER) do
  58.         gemsText = gemsText .. "> " .. gemName .. " : `" .. playerData.Gems[gemName] .. "` \n"
  59.     end
  60.    
  61.     return {
  62.         username = CUSTOM_USERNAME,
  63.         avatar_url = CUSTOM_AVATAR,
  64.         embeds = {{
  65.             title = "Inventory Tracker",
  66.             description = "**Inventory Info**\n" .. gemsText,
  67.             color = 0x3498db,
  68.             fields = {
  69.                 {
  70.                     name = "User Info",
  71.                     value = "> Diamond Left : `" .. playerData.Diamonds .. "` \n" ..
  72.                             "> Account : ||" .. playerData.Username .. "||",
  73.                     inline = false
  74.                 }
  75.             },
  76.             footer = {
  77.                 text = "Gんost • Tracker",
  78.                 icon_url = FOOTER_ICON
  79.             },
  80.             timestamp = DateTime.now():ToIsoDate()
  81.         }}
  82.     }
  83. end
  84.  
  85. --═══════ دالة إرسال الويب هوك ═══════--
  86. local function sendWebhook()
  87.     local message = createWebhookMessage()
  88.     local success, response = pcall(function()
  89.         local requestFunc = syn and syn.request or http_request or game.HttpPostAsync
  90.         return requestFunc({
  91.             Url = getgenv().TrackerConfig.WebhookUrl, -- استخدام القيمة من getgenv()
  92.             Method = "POST",
  93.             Headers = {
  94.                 ["Content-Type"] = "application/json"
  95.             },
  96.             Body = HttpService:JSONEncode(message)
  97.         })
  98.     end)
  99.    
  100.     if success then
  101.         print("[" .. os.date("%H:%M:%S") .. "] Send Done :white_check_mark:")
  102.     else
  103.         warn("[" .. os.date("%H:%M:%S") .. "] Send False :x::", response)
  104.     end
  105. end
  106.  
  107. --═══════ التشغيل التلقائي ═══════--
  108. while wait(getgenv().TrackerConfig.UpdateInterval) do -- استخدام القيمة من getgenv()
  109.     sendWebhook()
  110. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement