Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion data-global/lib/core/quests.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3944,7 +3944,7 @@ if not Quests then
[2] = "Snake Eye told you to visit Ahmet in Ankrahmun.",
[3] = "Ahmet told you that he will only help a friend and asked you to kill at least one Nomad.",
[4] = "You have killed a Nomad, go back to Ahmet!",
[5] = "You have received the forged documents from Ahmet, next is to get a disguise from Percybald in Venore!",
[5] = "You have received the forged documents from Ahmet, next is to get a disguise from Percybald in Carlin!",
[6] = "You have received the dwarf disguise from Percybald. Now go do the deal with Nurik.",
[7] = "You have traded the forged documents for the painting, report back to Dorian.",
[8] = "You have delivered the painting to Dorian, ask him for a new mission!",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
local childrenGrease = Action()

function childrenGrease.onUse(player, item, fromPosition, target, toPosition, isHotkey)
if target.actionid ~= 8013 then
if not target.actionid == 8013 then
return false
end

if player:getStorageValue(Storage.Quest.U8_54.ChildrenOfTheRevolution.Questline) == 13 then
if player:getStorageValue(Storage.Quest.U8_54.ChildrenOfTheRevolution.Mission04) == 3 then
player:setStorageValue(Storage.Quest.U8_54.ChildrenOfTheRevolution.Questline, 14)
player:setStorageValue(Storage.Quest.U8_54.ChildrenOfTheRevolution.Mission04, 4) --Questlog, Children of the Revolution "Mission 4: Zze Way of Zztonezz"
item:remove()
Expand Down
Loading