eluna-scripts-ornfelt/lua/WowEmulationScriptPack/Lua/WIP/ObjectGUIDInfo.lua.DISABLED

9 lines
454 B
Text
Raw Permalink Normal View History

2023-08-16 00:50:59 +02:00
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)