Skip to content
Snippets Groups Projects
Commit 12a3578e authored by nonom's avatar nonom
Browse files

BETA: Renaming StakatoNest Teleporter.

parent c2fb48a6
No related branches found
No related tags found
No related merge requests found
...@@ -200,7 +200,7 @@ teleports/NewbieTravelToken/NewbieTravelToken.java ...@@ -200,7 +200,7 @@ teleports/NewbieTravelToken/NewbieTravelToken.java
teleports/NoblesseTeleport/NoblesseTeleport.java teleports/NoblesseTeleport/NoblesseTeleport.java
teleports/OracleTeleport/OracleTeleport.java teleports/OracleTeleport/OracleTeleport.java
teleports/PaganTeleporters/PaganTeleporters.java teleports/PaganTeleporters/PaganTeleporters.java
teleports/StakatoNest/StakatoNest.java teleports/StakatoNestTeleporter/StakatoNestTeleporter.java
teleports/SteelCitadelTeleport/SteelCitadelTeleport.java teleports/SteelCitadelTeleport/SteelCitadelTeleport.java
teleports/StrongholdsTeleports/StrongholdsTeleports.java teleports/StrongholdsTeleports/StrongholdsTeleports.java
teleports/Survivor/Survivor.java teleports/Survivor/Survivor.java
......
<html><body>Bounty Hunter Kintaijin:<br> <html><body>Bounty Hunter Kintaijin:<br>
I will teleport you and your party members to the major area of Stakato Nest. But party members who are not near me won't be teleported, so you need to make sure the members who you want to move are nicely gathered around me.<br> I will teleport you and your party members to the major area of Stakato Nest. But party members who are not near me won't be teleported, so you need to make sure the members who you want to move are nicely gathered around me.<br>
<a action="bypass -h Quest StakatoNest 1">Waiting Room of Stakato Queen</a><br> <a action="bypass -h Quest StakatoNestTeleporter 1">Waiting Room of Stakato Queen</a><br>
<a action="bypass -h Quest StakatoNest 2">Nest Introduction</a><br> <a action="bypass -h Quest StakatoNestTeleporter 2">Nest Introduction</a><br>
<a action="bypass -h Quest StakatoNest 3">Nest Water Supply</a><br> <a action="bypass -h Quest StakatoNestTeleporter 3">Nest Water Supply</a><br>
<a action="bypass -h Quest StakatoNest 4">Nest Deepest Layer</a><br> <a action="bypass -h Quest StakatoNestTeleporter 4">Nest Deepest Layer</a><br>
<a action="bypass -h Quest StakatoNest 5">Nest Entrance</a> <a action="bypass -h Quest StakatoNestTeleporter 5">Nest Entrance</a>
</body></html> </body></html>
\ No newline at end of file
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
* You should have received a copy of the GNU General Public License along with * You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>. * this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
package teleports.StakatoNest; package teleports.StakatoNestTeleporter;
import com.l2jserver.gameserver.model.Location; import com.l2jserver.gameserver.model.Location;
import com.l2jserver.gameserver.model.actor.L2Npc; import com.l2jserver.gameserver.model.actor.L2Npc;
...@@ -21,10 +21,10 @@ import com.l2jserver.gameserver.model.quest.Quest; ...@@ -21,10 +21,10 @@ import com.l2jserver.gameserver.model.quest.Quest;
import com.l2jserver.gameserver.model.quest.QuestState; import com.l2jserver.gameserver.model.quest.QuestState;
/** /**
* Stakato Nest teleport AI. * Stakato Nest Teleporter AI.
* @author Charus * @author Charus
*/ */
public class StakatoNest extends Quest public class StakatoNestTeleporter extends Quest
{ {
private final static Location[] _locs = private final static Location[] _locs =
{ {
...@@ -37,7 +37,7 @@ public class StakatoNest extends Quest ...@@ -37,7 +37,7 @@ public class StakatoNest extends Quest
private final static int npcId = 32640; private final static int npcId = 32640;
public StakatoNest(int questId, String name, String descr) public StakatoNestTeleporter(int questId, String name, String descr)
{ {
super(questId, name, descr); super(questId, name, descr);
addStartNpc(npcId); addStartNpc(npcId);
...@@ -88,6 +88,6 @@ public class StakatoNest extends Quest ...@@ -88,6 +88,6 @@ public class StakatoNest extends Quest
public static void main(String[] args) public static void main(String[] args)
{ {
new StakatoNest(-1, "StakatoNest", "teleports"); new StakatoNestTeleporter(-1, StakatoNestTeleporter.class.getSimpleName(), "teleports");
} }
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment