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
327b9b4d
Commit
327b9b4d
authored
10 years ago
by
St3eT
Browse files
Options
Downloads
Patches
Plain Diff
BETA: Reworked Non-talking NPCs.
* Reviewed by: Zoey76, Adry_85, !UnAfraid, Nos
parent
ffb4e352
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
L2J_DataPack_BETA/dist/game/data/scripts.cfg
+1
-0
1 addition, 0 deletions
L2J_DataPack_BETA/dist/game/data/scripts.cfg
L2J_DataPack_BETA/dist/game/data/scripts/ai/group_template/NonTalkingNpcs.java
+83
-0
83 additions, 0 deletions
...t/game/data/scripts/ai/group_template/NonTalkingNpcs.java
with
84 additions
and
0 deletions
L2J_DataPack_BETA/dist/game/data/scripts.cfg
+
1
−
0
View file @
327b9b4d
...
...
@@ -106,6 +106,7 @@ ai/group_template/LairOfAntharas.java
ai/group_template/MithrilMines.java
ai/group_template/MonasteryOfSilence.java
ai/group_template/NonLethalableNpcs.java
ai/group_template/NonTalkingNpcs.java
ai/group_template/PavelArchaic.java
ai/group_template/PlainsOfDion.java
ai/group_template/PlainsOfLizardman.java
...
...
This diff is collapsed.
Click to expand it.
L2J_DataPack_BETA/dist/game/data/scripts/ai/group_template/NonTalkingNpcs.java
0 → 100644
+
83
−
0
View file @
327b9b4d
/*
* Copyright (C) 2004-2014 L2J DataPack
*
* This file is part of L2J DataPack.
*
* L2J DataPack is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* L2J DataPack is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package
ai.group_template
;
import
ai.npc.AbstractNpcAI
;
import
com.l2jserver.gameserver.datatables.SpawnTable
;
import
com.l2jserver.gameserver.model.L2Spawn
;
import
com.l2jserver.gameserver.model.actor.L2Npc
;
/**
* AI for handle Non-Talking NPCs.
* @author St3eT
*/
public
final
class
NonTalkingNpcs
extends
AbstractNpcAI
{
// @formatter:off
private
static
final
int
[]
NONTALKINGNPCS
=
{
18684
,
18685
,
18686
,
// Red Star Stone
18687
,
18688
,
18689
,
// Blue Star Stone
18690
,
18691
,
18692
,
// Green Star Stone
18848
,
18849
,
18926
,
// Jinia Guild
18927
,
// Fire
18933
,
// Fire Feed
31202
,
31203
,
31204
,
31205
,
31206
,
31207
,
31208
,
31209
,
31266
,
31593
,
31758
,
31955
,
// Town pets
31557
,
// Mercenary Sentry
31606
,
// Alice de Catrina
31671
,
31672
,
31673
,
31674
,
// Patrol
32026
,
// Hestui Guard
32030
,
// Garden Sculpture
32031
,
// Ice Fairy Sculpture
32032
,
// Strange Machine
32306
,
// Native's Corpse
32619
,
32620
,
32621
,
// NPC's without name
32715
,
32716
,
32717
,
// Lilith's group
32718
,
32719
,
32720
,
32721
,
// Anakim's group
18839
,
// Wild Maguen
};
// @formatter:on
public
NonTalkingNpcs
()
{
super
(
NonTalkingNpcs
.
class
.
getSimpleName
(),
"ai/group_template"
);
addSpawnId
(
NONTALKINGNPCS
);
for
(
int
npcId
:
NONTALKINGNPCS
)
{
for
(
L2Spawn
spawn
:
SpawnTable
.
getInstance
().
getSpawns
(
npcId
))
{
onSpawn
(
spawn
.
getLastSpawn
());
}
}
}
@Override
public
String
onSpawn
(
L2Npc
npc
)
{
npc
.
setTalking
(
false
);
return
super
.
onSpawn
(
npc
);
}
public
static
void
main
(
String
[]
args
)
{
new
NonTalkingNpcs
();
}
}
\ No newline at end of file
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