Skip to content

Instantly share code, notes, and snippets.

View nonom's full-sized avatar
🎯
Focusing

Antonio Martínez nonom

🎯
Focusing
View GitHub Profile
Index: dist/game/data/scripts/ai/group_template/Monastery.java
===================================================================
--- dist/game/data/scripts/ai/group_template/Monastery.java (revision 9815)
+++ dist/game/data/scripts/ai/group_template/Monastery.java (working copy)
@@ -27,6 +27,7 @@
import com.l2jserver.gameserver.model.actor.L2Attackable;
import com.l2jserver.gameserver.model.actor.L2Character;
import com.l2jserver.gameserver.model.actor.L2Npc;
+import com.l2jserver.gameserver.model.actor.instance.L2MonsterInstance;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
class 0 ai_monastery_level_burner : default_npc
{
parameter:
int BURNER_NUMBER = 1000;
int CHECK_TIME = 1001;
int CHECK_TIME_ANNOUNCE = 1002;
int DSPAWN_TIME = 1003;
int CHECK_TIME_ANNOUNCE2 = 1004;
int SPAWN_TIME = 1005;
string my_maker0 = "";
/*
* 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.
/*
* Copyright (C) 2004-2013 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.
*
Index: dist/game/data/scripts.cfg
===================================================================
--- dist/game/data/scripts.cfg (revision 9911)
+++ dist/game/data/scripts.cfg (working copy)
@@ -33,6 +33,7 @@
ai/npc/Jinia/Jinia.java
ai/npc/KetraOrcSupport/KetraOrcSupport.java
ai/npc/MercenaryCaptain/MercenaryCaptain.java
+ai/npc/Minigame/Minigame.java
ai/npc/MonumentOfHeroes/MonumentOfHeroes.java
Index: dist/game/data/stats/skills/09000-09099.xml
===================================================================
--- dist/game/data/stats/skills/09000-09099.xml (revision 9913)
+++ dist/game/data/stats/skills/09000-09099.xml (working copy)
@@ -1201,13 +1201,23 @@
<set name="targetType" val="ONE" />
</skill>
<skill id="9076" levels="1" name="Secret Door Key">
- <set name="effectPoint" val="-100000" />
+ <!-- Confirmed CT2.5 -->
Index: dist/game/data/scripts.cfg
===================================================================
--- dist/game/data/scripts.cfg (revision 9958)
+++ dist/game/data/scripts.cfg (working copy)
@@ -183,8 +183,6 @@
instances/Kamaloka/Kamaloka.java
#instances/MithrilMine/MithrilMine.java
instances/NornilsGarden/NornilsGarden.java
-instances/Pailaka/PailakaDevilsLegacy.java
-instances/Pailaka/PailakaSongOfIceAndFire.java
Index: dist/game/data/scripts/ai/npc/ZealotOfShilen/ZealotOfShilen.java
===================================================================
--- dist/game/data/scripts/ai/npc/ZealotOfShilen/ZealotOfShilen.java (revision 10247)
+++ dist/game/data/scripts/ai/npc/ZealotOfShilen/ZealotOfShilen.java (working copy)
@@ -38,8 +38,8 @@
private static final int ZEALOT = 18782;
private static final int[] GUARDS =
{
- 32628,
- 32629
Index: dist/game/data/stats/npcs/18700-18800.xml
===================================================================
--- dist/game/data/stats/npcs/18700-18800.xml (revision 10245)
+++ dist/game/data/stats/npcs/18700-18800.xml (working copy)
@@ -3390,7 +3390,12 @@
</skill_list>
<ex_crt_effect>true</ex_crt_effect>
<s_npc_prop_hp_rate>4</s_npc_prop_hp_rate>
- <ai type="BALANCED" aggroRange="300" clanHelpRange="300" isAggressive="false" />
+ <ai type="BALANCED" aggroRange="300" clanHelpRange="300" isAggressive="false">
package com.nonomartinez.app.managers;
import java.util.concurrent.atomic.AtomicInteger;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
/**
* Database Manager
*