mirror of
https://github.com/araxiaonline/awakening-lua.git
synced 2026-06-13 02:22:19 -04:00
11 lines
271 B
Lua
11 lines
271 B
Lua
local function ZFGong(event, player, item, target)
|
|
local goober = player:GetNearestGameObject( 5, 141832)
|
|
if (goober == nil) then
|
|
return false;
|
|
else
|
|
player:SpawnCreature(7273, 1665.56, 1187.32, 11.64, 3.9, 7)
|
|
end
|
|
end
|
|
|
|
|
|
RegisterItemEvent(9240, 2, ZFGong) |