mirror of
https://github.com/araxiaonline/awakening-lua.git
synced 2026-06-13 02:22:19 -04:00
8 lines
231 B
Lua
8 lines
231 B
Lua
local function MaraStaff(event, player, item, target)
|
|
local goober = player:GetNearestGameObject( 0.1, 178386)
|
|
if (goober ~= nil) then
|
|
player:CastSpell(player, 21127, true)
|
|
end
|
|
end
|
|
|
|
RegisterItemEvent(17191, 2, MaraStaff) |