eluna-scripts-ornfelt/lua/WowEmulationScriptPack/Lua/WIP/ObjectGUIDInfo.lua.DISABLED
2024-09-23 07:59:23 +02:00

8 lines
454 B
Text

function GoToTarget(event, player, object)
local message3 = "GUID: " .. tostring(object:GetGUID()) .. ", GUID-LOW: " .. tostring(object:GetGUIDLow()) .. ", Entry: " .. tostring(object:GetEntry()) .. ", DBTableGuidLOW: " .. tostring(object:GetDBTableGUIDLow()) .. ", DisplayID: " .. tostring(object:GetDisplayId())
print(message3)
printObj(object)
player:Say(message3, 0)
end
RegisterGameObjectGossipEvent(189947, 1, GoToTarget)