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
c5151db1
Commit
c5151db1
authored
10 years ago
by
Sdw-
Browse files
Options
Downloads
Patches
Plain Diff
Replacing a map in SubclassCertification with proper category data
parent
acaacaa0
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/ai/npc/SubclassCertification/SubclassCertification.java
+29
-86
29 additions, 86 deletions
...s/ai/npc/SubclassCertification/SubclassCertification.java
with
29 additions
and
86 deletions
L2J_DataPack/dist/game/data/scripts/ai/npc/SubclassCertification/SubclassCertification.java
+
29
−
86
View file @
c5151db1
...
@@ -24,10 +24,10 @@ import java.util.Map;
...
@@ -24,10 +24,10 @@ import java.util.Map;
import
ai.npc.AbstractNpcAI
;
import
ai.npc.AbstractNpcAI
;
import
com.l2jserver.gameserver.datatables.ClassListData
;
import
com.l2jserver.gameserver.datatables.ClassListData
;
import
com.l2jserver.gameserver.enums.CategoryType
;
import
com.l2jserver.gameserver.model.actor.L2Npc
;
import
com.l2jserver.gameserver.model.actor.L2Npc
;
import
com.l2jserver.gameserver.model.actor.instance.L2PcInstance
;
import
com.l2jserver.gameserver.model.actor.instance.L2PcInstance
;
import
com.l2jserver.gameserver.model.actor.instance.L2VillageMasterInstance
;
import
com.l2jserver.gameserver.model.actor.instance.L2VillageMasterInstance
;
import
com.l2jserver.gameserver.model.base.ClassId
;
import
com.l2jserver.gameserver.model.items.instance.L2ItemInstance
;
import
com.l2jserver.gameserver.model.items.instance.L2ItemInstance
;
import
com.l2jserver.gameserver.model.quest.QuestState
;
import
com.l2jserver.gameserver.model.quest.QuestState
;
import
com.l2jserver.gameserver.model.quest.State
;
import
com.l2jserver.gameserver.model.quest.State
;
...
@@ -59,91 +59,10 @@ public final class SubclassCertification extends AbstractNpcAI
...
@@ -59,91 +59,10 @@ public final class SubclassCertification extends AbstractNpcAI
// @formatter:on
// @formatter:on
private
static
final
int
CERTIFICATE_EMERGENT_ABILITY
=
10280
;
private
static
final
int
CERTIFICATE_EMERGENT_ABILITY
=
10280
;
private
static
final
int
CERTIFICATE_MASTER_ABILITY
=
10612
;
private
static
final
int
CERTIFICATE_MASTER_ABILITY
=
10612
;
private
static
final
Map
<
ClassId
,
Integer
>
CLASSES
=
new
HashMap
<>();
private
static
final
Map
<
Integer
,
Integer
>
ABILITY_CERTIFICATES
=
new
HashMap
<>();
private
static
final
Map
<
Integer
,
Integer
>
ABILITY_CERTIFICATES
=
new
HashMap
<>();
private
static
final
Map
<
Integer
,
Integer
>
TRANSFORMATION_SEALBOOKS
=
new
HashMap
<>();
private
static
final
Map
<
Integer
,
Integer
>
TRANSFORMATION_SEALBOOKS
=
new
HashMap
<>();
static
static
{
{
// Warrior classes
CLASSES
.
put
(
ClassId
.
gladiator
,
0
);
CLASSES
.
put
(
ClassId
.
warlord
,
0
);
CLASSES
.
put
(
ClassId
.
destroyer
,
0
);
CLASSES
.
put
(
ClassId
.
tyrant
,
0
);
CLASSES
.
put
(
ClassId
.
bountyHunter
,
0
);
CLASSES
.
put
(
ClassId
.
artisan
,
0
);
CLASSES
.
put
(
ClassId
.
duelist
,
0
);
CLASSES
.
put
(
ClassId
.
dreadnought
,
0
);
CLASSES
.
put
(
ClassId
.
titan
,
0
);
CLASSES
.
put
(
ClassId
.
grandKhavatari
,
0
);
CLASSES
.
put
(
ClassId
.
fortuneSeeker
,
0
);
CLASSES
.
put
(
ClassId
.
maestro
,
0
);
CLASSES
.
put
(
ClassId
.
berserker
,
0
);
CLASSES
.
put
(
ClassId
.
maleSoulbreaker
,
0
);
CLASSES
.
put
(
ClassId
.
femaleSoulbreaker
,
0
);
CLASSES
.
put
(
ClassId
.
doombringer
,
0
);
CLASSES
.
put
(
ClassId
.
maleSoulhound
,
0
);
CLASSES
.
put
(
ClassId
.
femaleSoulhound
,
0
);
// Rogue classes
CLASSES
.
put
(
ClassId
.
treasureHunter
,
1
);
CLASSES
.
put
(
ClassId
.
hawkeye
,
1
);
CLASSES
.
put
(
ClassId
.
plainsWalker
,
1
);
CLASSES
.
put
(
ClassId
.
silverRanger
,
1
);
CLASSES
.
put
(
ClassId
.
abyssWalker
,
1
);
CLASSES
.
put
(
ClassId
.
phantomRanger
,
1
);
CLASSES
.
put
(
ClassId
.
sagittarius
,
1
);
CLASSES
.
put
(
ClassId
.
adventurer
,
1
);
CLASSES
.
put
(
ClassId
.
windRider
,
1
);
CLASSES
.
put
(
ClassId
.
moonlightSentinel
,
1
);
CLASSES
.
put
(
ClassId
.
ghostHunter
,
1
);
CLASSES
.
put
(
ClassId
.
ghostSentinel
,
1
);
CLASSES
.
put
(
ClassId
.
arbalester
,
1
);
CLASSES
.
put
(
ClassId
.
trickster
,
1
);
// Knight classes
CLASSES
.
put
(
ClassId
.
paladin
,
2
);
CLASSES
.
put
(
ClassId
.
darkAvenger
,
2
);
CLASSES
.
put
(
ClassId
.
templeKnight
,
2
);
CLASSES
.
put
(
ClassId
.
shillienKnight
,
2
);
CLASSES
.
put
(
ClassId
.
phoenixKnight
,
2
);
CLASSES
.
put
(
ClassId
.
hellKnight
,
2
);
CLASSES
.
put
(
ClassId
.
evaTemplar
,
2
);
CLASSES
.
put
(
ClassId
.
shillienTemplar
,
2
);
// Summoner classes
CLASSES
.
put
(
ClassId
.
warlock
,
3
);
CLASSES
.
put
(
ClassId
.
elementalSummoner
,
3
);
CLASSES
.
put
(
ClassId
.
phantomSummoner
,
3
);
CLASSES
.
put
(
ClassId
.
arcanaLord
,
3
);
CLASSES
.
put
(
ClassId
.
elementalMaster
,
3
);
CLASSES
.
put
(
ClassId
.
spectralMaster
,
3
);
// Wizard classes
CLASSES
.
put
(
ClassId
.
sorceror
,
4
);
CLASSES
.
put
(
ClassId
.
necromancer
,
4
);
CLASSES
.
put
(
ClassId
.
spellsinger
,
4
);
CLASSES
.
put
(
ClassId
.
spellhowler
,
4
);
CLASSES
.
put
(
ClassId
.
archmage
,
4
);
CLASSES
.
put
(
ClassId
.
soultaker
,
4
);
CLASSES
.
put
(
ClassId
.
mysticMuse
,
4
);
CLASSES
.
put
(
ClassId
.
stormScreamer
,
4
);
// Healer classes
CLASSES
.
put
(
ClassId
.
bishop
,
5
);
CLASSES
.
put
(
ClassId
.
elder
,
5
);
CLASSES
.
put
(
ClassId
.
shillenElder
,
5
);
CLASSES
.
put
(
ClassId
.
cardinal
,
5
);
CLASSES
.
put
(
ClassId
.
evaSaint
,
5
);
CLASSES
.
put
(
ClassId
.
shillienSaint
,
5
);
// Enchanter classes
CLASSES
.
put
(
ClassId
.
prophet
,
6
);
CLASSES
.
put
(
ClassId
.
swordSinger
,
6
);
CLASSES
.
put
(
ClassId
.
bladedancer
,
6
);
CLASSES
.
put
(
ClassId
.
overlord
,
6
);
CLASSES
.
put
(
ClassId
.
warcryer
,
6
);
CLASSES
.
put
(
ClassId
.
hierophant
,
6
);
CLASSES
.
put
(
ClassId
.
swordMuse
,
6
);
CLASSES
.
put
(
ClassId
.
spectralDancer
,
6
);
CLASSES
.
put
(
ClassId
.
dominator
,
6
);
CLASSES
.
put
(
ClassId
.
doomcryer
,
6
);
CLASSES
.
put
(
ClassId
.
inspector
,
6
);
CLASSES
.
put
(
ClassId
.
judicator
,
6
);
ABILITY_CERTIFICATES
.
put
(
0
,
10281
);
// Certificate - Warrior Ability
ABILITY_CERTIFICATES
.
put
(
0
,
10281
);
// Certificate - Warrior Ability
ABILITY_CERTIFICATES
.
put
(
1
,
10283
);
// Certificate - Rogue Ability
ABILITY_CERTIFICATES
.
put
(
1
,
10283
);
// Certificate - Rogue Ability
ABILITY_CERTIFICATES
.
put
(
2
,
10282
);
// Certificate - Knight Ability
ABILITY_CERTIFICATES
.
put
(
2
,
10282
);
// Certificate - Knight Ability
...
@@ -287,12 +206,36 @@ public final class SubclassCertification extends AbstractNpcAI
...
@@ -287,12 +206,36 @@ public final class SubclassCertification extends AbstractNpcAI
private
static
int
getClassIndex
(
L2PcInstance
player
)
private
static
int
getClassIndex
(
L2PcInstance
player
)
{
{
Integer
tmp
=
CLASSES
.
get
(
player
.
getClassId
());
if
(
player
.
isInCategory
(
CategoryType
.
SUB_GROUP_WARRIOR
))
if
(
tmp
==
null
)
{
return
0
;
}
else
if
(
player
.
isInCategory
(
CategoryType
.
SUB_GROUP_ROGUE
))
{
return
1
;
}
else
if
(
player
.
isInCategory
(
CategoryType
.
SUB_GROUP_KNIGHT
))
{
return
2
;
}
else
if
(
player
.
isInCategory
(
CategoryType
.
SUB_GROUP_SUMMONER
))
{
{
return
-
1
;
return
3
;
}
}
return
tmp
.
intValue
();
else
if
(
player
.
isInCategory
(
CategoryType
.
SUB_GROUP_WIZARD
))
{
return
4
;
}
else
if
(
player
.
isInCategory
(
CategoryType
.
SUB_GROUP_HEALER
))
{
return
5
;
}
else
if
(
player
.
isInCategory
(
CategoryType
.
SUB_GROUP_ENCHANTER
))
{
return
6
;
}
return
-
1
;
}
}
private
String
doCertification
(
L2PcInstance
player
,
QuestState
qs
,
String
variable
,
Integer
itemId
,
int
level
)
private
String
doCertification
(
L2PcInstance
player
,
QuestState
qs
,
String
variable
,
Integer
itemId
,
int
level
)
...
...
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