mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
19 lines
No EOL
390 B
Lua
Executable file
19 lines
No EOL
390 B
Lua
Executable file
--[[
|
|
Script Name : ItemScripts/AutomaticBook.lua
|
|
Script Author : Dorbin
|
|
Script Date : 2022.10.21 04:10:19
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
function examined(Item, Player)
|
|
|
|
end
|
|
|
|
function obtained(Item, Spawn)
|
|
target = GetTarget(Spawn)
|
|
if target ~= nil then
|
|
-- CastEntityCommand(Spawn, target, 1, "Scribe")
|
|
end
|
|
end
|
|
|