mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
- Still needs many of Artisan NPC's created and Placed. - Still needs the TS Recipes to be imported. - Only implemented up to the current expansion but added framework for all other/later tasks, will just need NPC scripts added for those regions. Code is ineffecient but clear to read and troubleshoot, can be refined at a later time.
11 lines
336 B
Lua
11 lines
336 B
Lua
function event_killed_merit(e)
|
|
if e.other:IsTaskActive(5791) then
|
|
if math.random(100) <= 30 then
|
|
if e.other:HasItem(35000) then
|
|
e.other:UpdateTaskActivity(5791,1,1);
|
|
else
|
|
e.other:Message(MT.Yellow, "You see the perfect pattern, but as you search your bags you cannot find your impression book.");
|
|
end
|
|
end
|
|
end
|
|
end
|