Skip to content
Snippets Groups Projects
Commit 5c99030d authored by xban1x's avatar xban1x
Browse files

BETA: Missing enums update for Jython scripts, for [L6187]

	* Reported by: Konstantinos
	* Patch by: Konstantinos
parent b840d660
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ import sys
from com.l2jserver.gameserver.model.quest import State
from com.l2jserver.gameserver.model.quest import QuestState
from com.l2jserver.gameserver.model.quest import Quest as JQuest
from com.l2jserver.gameserver.model.base import Race
from com.l2jserver.gameserver.enums import PcRace
#Quest info
qn = "235_MimirsElixir"
QUEST_NUMBER,QUEST_NAME,QUEST_DESCRIPTION = 235,"MimirsElixir","Mimir's Elixir"
......@@ -59,7 +59,7 @@ class Quest (JQuest) :
if npcId == LADD :
if id == State.CREATED :
st.set("cond","0")
if player.getRace() == Race.Kamael :
if player.getRace() == PcRace.Kamael :
st.exitQuest(1)
htmltext = "<html><body>I'm sorry, but I am not allowed to offer this quest to Kamael. Talk to Hierarch Kekropus.</body></html>"
elif player.getLevel() < MINLEVEL :
......
......@@ -5,7 +5,7 @@ import sys
from com.l2jserver.gameserver.model.quest import State
from com.l2jserver.gameserver.model.quest import QuestState
from com.l2jserver.gameserver.model.quest import Quest as JQuest
from com.l2jserver.gameserver.model.base import Race
from com.l2jserver.gameserver.enums import PcRace
qn = "236_SeedsOfChaos"
......@@ -151,7 +151,7 @@ class Quest (JQuest) :
if npcId == KEKROPUS :
if id == State.CREATED :
st.set("cond","0")
if player.getRace() != Race.Kamael :
if player.getRace() != PcRace.Kamael :
st.exitQuest(1)
htmltext = "<html><body>I'm sorry, but I can only give this quest to Kamael. Talk to Magister Ladd.</body></html>"
elif player.getLevel() < 75 :
......
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