mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
15 lines
No EOL
362 B
Lua
Executable file
15 lines
No EOL
362 B
Lua
Executable file
--[[
|
|
Script Name : ItemScripts/firststrike.lua
|
|
Script Author : Premierio015
|
|
Script Date : 2021.10.29 09:10:39
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
local FirstStrike = 5382 -- First Strike Quest
|
|
|
|
function examined(Item, Player)
|
|
if not HasQuest(Player, FirstStrike) then
|
|
OfferQuest(nil, Player, FirstStrike)
|
|
end
|
|
end |