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
0c5ef06f
"...datapack/handlers/targethandlers/Unlockable.java" did not exist on "bf6496439e9aff5c4cff8e4cb1521bcc9515f4f5"
Commit
0c5ef06f
authored
13 years ago
by
MELERIX
Browse files
Options
Downloads
Patches
Plain Diff
BETA/STABLE: Cleanup due [L4613].
parent
ba9254b0
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/data/scripts.cfg
+0
-1
0 additions, 1 deletion
L2J_DataPack_BETA/data/scripts.cfg
L2J_DataPack_BETA/data/scripts/custom/NonTalkingNPCs/NonTalkingNPCs.java
+0
-48
0 additions, 48 deletions
...TA/data/scripts/custom/NonTalkingNPCs/NonTalkingNPCs.java
with
0 additions
and
49 deletions
L2J_DataPack_BETA/data/scripts.cfg
+
0
−
1
View file @
0c5ef06f
...
@@ -648,7 +648,6 @@ custom/SubClassCertification/Validator.java
...
@@ -648,7 +648,6 @@ custom/SubClassCertification/Validator.java
custom/HeroCirclet/HeroCirclet.java
custom/HeroCirclet/HeroCirclet.java
custom/HeroWeapon/HeroWeapon.java
custom/HeroWeapon/HeroWeapon.java
custom/IOPRace/IOPRace.java
custom/IOPRace/IOPRace.java
custom/NonTalkingNPCs/NonTalkingNPCs.java
custom/PinsAndPouchUnseal/PinsAndPouchUnseal.java
custom/PinsAndPouchUnseal/PinsAndPouchUnseal.java
custom/SkillTransfer/SkillTransfer.java
custom/SkillTransfer/SkillTransfer.java
...
...
This diff is collapsed.
Click to expand it.
L2J_DataPack_BETA/data/scripts/custom/NonTalkingNPCs/NonTalkingNPCs.java
deleted
100644 → 0
+
0
−
48
View file @
ba9254b0
/*
* This program 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.
*
* This program 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
custom.NonTalkingNPCs
;
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.network.serverpackets.ActionFailed
;
public
class
NonTalkingNPCs
extends
Quest
{
private
static
final
int
[]
NPC_IDS
=
{
18684
,
18685
,
18686
,
18687
,
18688
,
18689
,
18690
,
19691
,
18692
,
31557
,
31606
,
31671
,
31672
,
31673
,
31674
,
32026
,
32030
,
32031
,
32032
,
32306
,
32619
,
32620
,
32621
};
public
NonTalkingNPCs
(
int
id
,
String
name
,
String
descr
)
{
super
(
id
,
name
,
descr
);
for
(
int
npcId
:
NPC_IDS
)
addFirstTalkId
(
npcId
);
}
@Override
public
final
String
onFirstTalk
(
L2Npc
npc
,
L2PcInstance
player
)
{
player
.
sendPacket
(
ActionFailed
.
STATIC_PACKET
);
return
null
;
}
public
static
void
main
(
String
[]
args
)
{
new
NonTalkingNPCs
(-
1
,
NonTalkingNPCs
.
class
.
getSimpleName
(),
"custom"
);
}
}
\ 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