Skip to content
Snippets Groups Projects
Commit f0bd89b8 authored by dg's avatar dg
Browse files

Arena quest npc appears up to level 13

Derth attack starts at level 14


git-svn-id: http://svn.net-core.org/repos/t-engine4@5948 51575b47-30f0-44d4-a5cc-537603b46e54
parent d49ee806
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ return {
end,
on_enter = function(_, _, newzone)
if game.player.level <= 10 and not game.player:hasQuest("arena-unlock") then
if game.player.level <= 13 and not game.player:hasQuest("arena-unlock") then
local spot = game.level:pickSpot{type="npc", subtype="arena"}
local m = game.zone:makeEntityByName(game.level, "actor", "ARENA_AGENT")
if spot and m then
......
......@@ -86,7 +86,7 @@ return {
end,
on_enter_list = {},
on_enter = function(_, _, newzone)
if game.player.level >= 12 and game.player.level <= 20 and not game.player:hasQuest("lightning-overload") then
if game.player.level >= 14 and game.player.level <= 22 and not game.player:hasQuest("lightning-overload") then
game.player:grantQuest("lightning-overload")
elseif game.player:hasQuest("lightning-overload") then
game.player:hasQuest("lightning-overload"):on_wilderness()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment