mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
16 lines
402 B
Lua
Executable file
16 lines
402 B
Lua
Executable file
--[[
|
|
Script Name : ItemScripts/BloodofRallosEnemies.lua
|
|
Script Author : torsten
|
|
Script Date : 2022.07.12 11:07:45
|
|
Script Purpose :
|
|
:
|
|
--]]
|
|
|
|
local TheFumeFireCeremony = 5635
|
|
|
|
function examined(Item, Player)
|
|
if not QuestStepIsComplete(Player, TheFumeFireCeremony, 5) then
|
|
SetStepComplete(Player, TheFumeFireCeremony, 5)
|
|
end
|
|
end
|
|
|