Jump to content

[share]Custom Escape


Guma!

Recommended Posts

when you use the command / unstuck

you will be teleported to the location of your configuration

 

 

===================================================================
--- D:/L2JBRASIL NOVO/L2JBrasil_CORE/config/L2JBrasil.properties	(revision 657)
+++ D:/L2JBRASIL NOVO/L2JBrasil_CORE/config/L2JBrasil.properties	(working copy)
@@ -49,18 +49,23 @@
AllowDaggersUseHeavy = True
# IF False , Archer Classes Won't Be Able To Use Heavy Armors
AllowArchersUseHeavy = True
+#---------------------------------------------------------------  
+# Custom Escape.                                              -  
+#--------------------------------------------------------------- 

+UnstuckX = 82698
+UnstuckY = 148638
+UnstuckZ = -3473

Index: D:/L2JBRASIL NOVO/L2JBrasil_CORE/java/com/it/br/Config.java
===================================================================
--- D:/L2JBRASIL NOVO/L2JBrasil_CORE/java/com/it/br/Config.java	(revision 657)
+++ D:/L2JBRASIL NOVO/L2JBrasil_CORE/java/com/it/br/Config.java	(working copy)
@@ -912,6 +912,10 @@
    public static boolean   ANNOUNCE_GM_LOGIN;
    public static boolean   ALLOW_HERO_SKILLS_ON_SUB; 
    public static boolean   DISABLE_GRADE_PENALTY; 
+   public static int       ESCAPE_X;  
+   public static int       ESCAPE_Y; 
+   public static int       ESCAPE_Z; 
    public static boolean   ALT_NEW_SPAWN;  
    public static int       ALT_NEW_SPAWN_X;  
    public static int       ALT_NEW_SPAWN_Y; 
@@ -1269,6 +1273,11 @@
               DUEL_SPAWN_Y    = Integer.parseInt(L2JBrasil.getProperty("PartyDuelSpawnY", "46710"));  
               DUEL_SPAWN_Z    = Integer.parseInt(L2JBrasil.getProperty("PartyDuelSpawnZ", "-3413"));

+              ESCAPE_X = Integer.parseInt(L2JBrasil.getProperty("UnstuckX", ""));  
+              ESCAPE_Y = Integer.parseInt(L2JBrasil.getProperty("UnstuckY", ""));  
+              ESCAPE_Z = Integer.parseInt(L2JBrasil.getProperty("UnstuckZ", ""));  
+

Index: D:/L2JBRASIL NOVO/L2JBrasil_CORE/java/com/it/br/gameserver/handler/usercommandhandlers/Escape.java
===================================================================
--- D:/L2JBRASIL NOVO/L2JBrasil_CORE/java/com/it/br/gameserver/handler/usercommandhandlers/Escape.java	(revision 656)
+++ D:/L2JBRASIL NOVO/L2JBrasil_CORE/java/com/it/br/gameserver/handler/usercommandhandlers/Escape.java	(working copy)
@@ -124,7 +124,8 @@

             try
             {
-                _activeChar.teleToLocation(MapRegionTable.TeleportWhereType.Town);
+                _activeChar.teleToLocation(Config.ESCAPE_X,Config.ESCAPE_Y,Config.ESCAPE_Z);
             } catch (Throwable e) { if (Config.DEBUG) e.printStackTrace(); }
         }
     }

Link to comment
Share on other sites

Nothing special, another share with < 10 lines..

 

And learn to use proper tag in your topic title.

14 lines, but is useless.. put directly x.y.z w/o configs ... more performance :D :D

 

 

Use the following prefixs for your topics:

 

Use [share] if you wanna share something, created by you or not.

Use [Guide] if you wanna let us know how to do something.

Use [Tool] if you wanna share a tool created by you or not.

Link to comment
Share on other sites

14 lines, but is useless.. put directly x.y.z w/o configs ... more performance :D :D

 

 

Use the following prefixs for your topics:

 

Use [share] if you wanna share something, created by you or not.

Use [Guide] if you wanna let us know how to do something.

Use [Tool] if you wanna share a tool created by you or not.

he have and config... :P .. its at begin.. l2jbrasil.properties :P ..
Link to comment
Share on other sites

14 lines, but is useless.. put directly x.y.z w/o configs ... more performance :D :D

 

 

Use the following prefixs for your topics:

 

Use [share] if you wanna share something, created by you or not.

Use [Guide] if you wanna let us know how to do something.

Use [Tool] if you wanna share a tool created by you or not.

 

Ah I forgot to count lines from config.. what ever.

 

Everyone can do it. I dont see any point to share things like this.

 

In fact this is only one line share:

 

_activeChar.teleToLocation(Config.ESCAPE_X,Config.ESCAPE_Y,Config.ESCAPE_Z);

 

.. with config included.

Link to comment
Share on other sites

and also of doing so:

 

-                _activeChar.teleToLocation(MapRegionTable.TeleportWhereType.Town);

+                _activeChar.teleToLocation(82698,148638,-3473);

 

 

but not given the option to change after

'll have to modify the file escape.java

 

edit~~

sorry not seen this topic

but mine is also with different options.

Link to comment
Share on other sites

and why should beam?

 

if this is completely different from the other and still with options?

 

lol you just added some configs, what's the big difference?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...