mirror of
https://github.com/ornfelt/azerothcore_lua_scripts
synced 2026-08-22 06:26:03 -04:00
8 lines
454 B
Text
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)
|