Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
L2j Server Datapack
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
L2j
L2j Server Datapack
Commits
638740b3
Commit
638740b3
authored
10 years ago
by
ivantotov
Browse files
Options
Downloads
Patches
Plain Diff
Quest: Vain Conclusion (191) update.
Reviewed by: @Zoey76
parent
434756ef
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
L2J_DataPack/dist/game/data/scripts/quests/Q00191_VainConclusion/Q00191_VainConclusion.java
+98
-92
98 additions, 92 deletions
...s/quests/Q00191_VainConclusion/Q00191_VainConclusion.java
with
98 additions
and
92 deletions
L2J_DataPack/dist/game/data/scripts/quests/Q00191_VainConclusion/Q00191_VainConclusion.java
+
98
−
92
View file @
638740b3
...
...
@@ -24,7 +24,6 @@ import com.l2jserver.gameserver.model.actor.L2Npc;
import
com.l2jserver.gameserver.model.actor.instance.L2PcInstance
;
import
com.l2jserver.gameserver.model.quest.Quest
;
import
com.l2jserver.gameserver.model.quest.QuestState
;
import
com.l2jserver.gameserver.model.quest.State
;
/**
* Vain Conclusion (191)
...
...
@@ -33,10 +32,10 @@ import com.l2jserver.gameserver.model.quest.State;
public
final
class
Q00191_VainConclusion
extends
Quest
{
// NPCs
private
static
final
int
SHEGFIELD
=
30068
;
private
static
final
int
HEAD_BLACKSMITH_KUSTO
=
30512
;
private
static
final
int
RESEARCHER_LORAIN
=
30673
;
private
static
final
int
DOROTHY_LOCKSMITH
=
30970
;
private
static
final
int
SHEGFIELD
=
30068
;
// Items
private
static
final
int
REPAIRED_METALLOGRAPH
=
10371
;
// Misc
...
...
@@ -54,15 +53,15 @@ public final class Q00191_VainConclusion extends Quest
@Override
public
String
onAdvEvent
(
String
event
,
L2Npc
npc
,
L2PcInstance
player
)
{
final
QuestState
s
t
=
getQuestState
(
player
,
false
);
if
(
s
t
==
null
)
final
QuestState
q
s
=
getQuestState
(
player
,
false
);
if
(
q
s
==
null
)
{
return
null
;
}
String
htmltext
=
null
;
switch
(
event
)
{
case
"30068-02.html"
:
case
"30970-03.htm"
:
{
htmltext
=
event
;
...
...
@@ -70,43 +69,54 @@ public final class Q00191_VainConclusion extends Quest
}
case
"30970-04.htm"
:
{
if
(
s
t
.
isCreated
())
if
(
q
s
.
isCreated
())
{
st
.
startQuest
();
st
.
giveItems
(
REPAIRED_METALLOGRAPH
,
1
);
qs
.
startQuest
();
qs
.
setMemoState
(
1
);
giveItems
(
player
,
REPAIRED_METALLOGRAPH
,
1
);
htmltext
=
event
;
}
break
;
}
case
"30
512
-02.html"
:
case
"30
068
-02.html"
:
{
if
(
s
t
.
is
Cond
(
4
))
if
(
q
s
.
is
MemoState
(
2
))
{
st
.
giveAdena
(
117327
,
true
);
if
(
player
.
getLevel
()
<
MAX_LEVEL_FOR_EXP_SP
)
{
st
.
addExpAndSp
(
309467
,
20614
);
}
st
.
exitQuest
(
false
,
true
);
htmltext
=
event
;
}
break
;
}
case
"30
673
-0
2
.html"
:
case
"30
068
-0
3
.html"
:
{
if
(
s
t
.
is
Cond
(
1
))
if
(
q
s
.
is
MemoState
(
2
))
{
s
t
.
set
Cond
(
2
,
true
);
st
.
takeItems
(
REPAIRED_METALLOGRAPH
,
-
1
);
q
s
.
set
MemoState
(
3
);
qs
.
setCond
(
3
,
true
);
htmltext
=
event
;
}
break
;
}
case
"30068-03.html"
:
case
"30512-02.html"
:
{
if
(
qs
.
isMemoState
(
4
))
{
giveAdena
(
player
,
117327
,
true
);
if
(
player
.
getLevel
()
<
MAX_LEVEL_FOR_EXP_SP
)
{
addExpAndSp
(
player
,
309467
,
20614
);
}
qs
.
exitQuest
(
false
,
true
);
htmltext
=
event
;
}
break
;
}
case
"30673-02.html"
:
{
if
(
s
t
.
is
Cond
(
2
))
if
(
q
s
.
is
MemoState
(
1
))
{
st
.
setCond
(
3
,
true
);
qs
.
setMemoState
(
2
);
qs
.
setCond
(
2
,
true
);
takeItems
(
player
,
REPAIRED_METALLOGRAPH
,
-
1
);
htmltext
=
event
;
}
break
;
...
...
@@ -118,96 +128,92 @@ public final class Q00191_VainConclusion extends Quest
@Override
public
String
onTalk
(
L2Npc
npc
,
L2PcInstance
player
)
{
final
QuestState
qs
=
getQuestState
(
player
,
true
);
String
htmltext
=
getNoQuestMsg
(
player
);
final
QuestState
st
=
getQuestState
(
player
,
true
);
if
(
st
==
null
)
if
(
qs
.
isCreated
())
{
return
htmltext
;
if
(
npc
.
getId
()
==
DOROTHY_LOCKSMITH
)
{
final
QuestState
q188
=
player
.
getQuestState
(
Q00188_SealRemoval
.
class
.
getSimpleName
());
if
((
q188
!=
null
)
&&
q188
.
isCompleted
())
{
htmltext
=
(
player
.
getLevel
()
>=
MIN_LEVEL
)
?
"30970-01.htm"
:
"30970-02.htm"
;
}
}
}
switch
(
npc
.
getId
())
else
if
(
qs
.
isStarted
())
{
case
DOROTHY_LOCKSMITH:
switch
(
npc
.
getId
())
{
switch
(
st
.
getState
())
case
DOROTHY_LOCKSMITH:
{
case
State
.
CREATED
:
if
(
qs
.
getMemoState
()
>=
1
)
{
final
QuestState
qs
=
player
.
getQuestState
(
Q00188_SealRemoval
.
class
.
getName
());
if
((
qs
!=
null
)
&&
qs
.
isCompleted
())
{
htmltext
=
(
player
.
getLevel
()
>=
MIN_LEVEL
)
?
"30970-01.htm"
:
"30970-02.htm"
;
}
break
;
htmltext
=
"30970-05.html"
;
}
case
State
.
STARTED
:
break
;
}
case
SHEGFIELD:
{
switch
(
qs
.
getCond
())
{
if
(
st
.
getCond
()
>=
1
)
case
2
:
{
htmltext
=
"30970-05.html"
;
htmltext
=
"30068-01.html"
;
break
;
}
case
3
:
{
htmltext
=
"30068-04.html"
;
break
;
}
break
;
}
case
State
.
COMPLETED
:
{
htmltext
=
getAlreadyCompletedMsg
(
player
);
break
;
}
break
;
}
break
;
}
case
HEAD_BLACKSMITH_KUSTO:
{
if
(
st
.
isCond
(
4
))
case
HEAD_BLACKSMITH_KUSTO:
{
htmltext
=
"30512-01.html"
;
}
break
;
}
case
RESEARCHER_LORAIN:
{
switch
(
st
.
getCond
())
{
case
1
:
{
htmltext
=
"30673-01.html"
;
break
;
}
case
2
:
{
htmltext
=
"30673-03.html"
;
break
;
}
case
3
:
{
st
.
setCond
(
4
,
true
);
htmltext
=
"30673-04.html"
;
break
;
}
case
4
:
if
(
qs
.
isMemoState
(
4
))
{
htmltext
=
"30673-05.html"
;
break
;
htmltext
=
"30512-01.html"
;
}
break
;
}
break
;
}
case
SHEGFIELD:
{
switch
(
st
.
getCond
())
case
RESEARCHER_LORAIN:
{
case
2
:
switch
(
qs
.
getCond
())
{
htmltext
=
"30068-01.html"
;
break
;
}
case
3
:
{
htmltext
=
"30068-04.html"
;
break
;
case
1
:
{
htmltext
=
"30673-01.html"
;
break
;
}
case
2
:
{
htmltext
=
"30673-03.html"
;
break
;
}
case
3
:
{
qs
.
setMemoState
(
4
);
qs
.
setCond
(
4
,
true
);
htmltext
=
"30673-04.html"
;
break
;
}
case
4
:
{
htmltext
=
"30673-05.html"
;
break
;
}
}
break
;
}
break
;
}
}
else
if
(
qs
.
isCompleted
())
{
if
(
npc
.
getId
()
==
DOROTHY_LOCKSMITH
)
{
htmltext
=
getAlreadyCompletedMsg
(
player
);
}
}
return
htmltext
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment