|
Você não é registrado, por favor registre-se para ter acesso ao conteúdo completo. Caso seja registrado, efetue login. Esqueceu sua senha? Clique aqui Recomendamos o uso do Mozilla Firefox para uma melhor visualização. |
|
| Início | Postados Hoje | Marcar Fóruns Como Lidos | Álbums | Banidos | SE Team | Medalhas |
|
|||||||
| Registrar | Loteria VIP | Staff SE | Regras do fórum | Comunidade | Arcade | Postados Hoje | Pesquisar | Experience |
|
|
|
||||||||||||||||||||||||||||||||||||||||
|
|
![]() |
|
|
Ferramentas do Tópico | Modos de Exibição |
|
|
#1 |
|
Membro - Recruta
![]() Registrado em: Jul 2010
Posts: 5
Agradeceu: 3
Agradecido 0 Vezes em 0 Posts
Achei Ruim:
Acharam ruim Vezes em Posts
Meu Estado:
![]()
|
qria sabe como editar para os pks quando morrerem ou derem /unstuck irem direto para floran village alguem ajuda aew vlw!
|
|
|
|
| Links Patrocinados |
|
|
#2 |
|
Membro - Tenente
![]() Registrado em: May 2011
Localização: Na Frente do PC :D
Posts: 93
Agradeceu: 17
Agradecido 26 Vezes em 22 Posts
Nome Real: Fábio
|
Amigo para facilitar sua Duvida, posta qual Rev você esta usando
|
|
|
|
|
|
#3 |
|
Membro - Recruta
![]() Registrado em: Jul 2010
Posts: 5
Agradeceu: 3
Agradecido 0 Vezes em 0 Posts
Achei Ruim:
Acharam ruim Vezes em Posts
Meu Estado:
![]()
|
minha rev é l2jteon! alguem ajuda aew =)
|
|
|
|
|
|
#4 |
|
Membro - Veterano
![]() Registrado em: Dec 2009
Posts: 1,335
Agradeceu: 490
Agradecido 803 Vezes em 427 Posts
Nome Real: Roberto
|
So Adicionar e Testa =x
Código:
[Somente Usuários Registrados Podem Visualizar os Links Desta PáginaClique aqui para se Registrar]
Index: C:/Documents and Settings/Roberto/workspace/L2JDemonniac/trunk/gameserver/config/functions/pvp.properties
===================================================================
--- C:/Documents and Settings/Roberto/workspace/L2JDemonniac/trunk/gameserver/config/functions/pvp.properties (revision 332)
+++ C:/Documents and Settings/Roberto/workspace/L2JDemonniac/trunk/gameserver/config/functions/pvp.properties (working copy)
@@ -65,8 +65,6 @@
# The player with karma can use the Warehouse?
AltKarmaPlayerCanUseWareHouse = True
+# The dead player and the player that will use a SOE of any type will be teleported to floran
+AltKarmaTeleportToFloran=true
+
# --------------------------------
# PvP Color System -
Index: C:/Documents and Settings/Roberto/workspace/L2JDemonniac/trunk/gameserver/head-src/com/l2jdemonniac/gameserver/handler/usercommandhandlers/Escape.java
===================================================================
--- C:/Documents and Settings/Roberto/workspace/L2JDemonniac/trunk/gameserver/head-src/com/l2jdemonniac/gameserver/handler/usercommandhandlers/Escape.java (revision 332)
+++ C:/Documents and Settings/Roberto/workspace/L2JDemonniac/trunk/gameserver/head-src/com/l2jdemonniac/gameserver/handler/usercommandhandlers/Escape.java (working copy)
@@ -176,12 +176,12 @@
try
{
- if (_activeChar.isKoof())
- _activeChar.teleToLocation(146334, 25767, -2013);
- else if (_activeChar.isNoob())
- _activeChar.teleToLocation(59669, -42221, -2992);
- else
- _activeChar.teleToLocation(MapRegionTable.TeleportWhereType.Town);
+ if(_activeChar.getKarma()>0 && Config.ALT_KARMA_TELEPORT_TO_FLORAN){
+ _activeChar.teleToLocation(17836, 170178, -3507, true); // Floran
+ return;
+ }
+
+ _activeChar.teleToLocation(MapRegionTable.TeleportWhereType.Town);
}
catch(Throwable e)
{
Index: C:/Documents and Settings/Roberto/workspace/L2JDemonniac/trunk/gameserver/head-src/com/l2jdemonniac/Config.java
===================================================================
--- C:/Documents and Settings/Roberto/workspace/L2JDemonniac/trunk/gameserver/head-src/com/l2jdemonniac/Config.java (revision 332)
+++ C:/Documents and Settings/Roberto/workspace/L2JDemonniac/trunk/gameserver/head-src/com/l2jdemonniac/Config.java (working copy)
@@ -984,7 +984,7 @@
public static boolean ALT_GAME_KARMA_PLAYER_CAN_TELEPORT;
public static boolean ALT_GAME_KARMA_PLAYER_CAN_TRADE;
public static boolean ALT_GAME_KARMA_PLAYER_CAN_USE_WAREHOUSE;
+ public static boolean ALT_KARMA_TELEPORT_TO_FLORAN;
+
public static byte BUFFS_MAX_AMOUNT;
public static byte DEBUFFS_MAX_AMOUNT;
public static boolean AUTO_LEARN_DIVINE_INSPIRATION;
@@ -2726,8 +2726,7 @@
ALT_GAME_KARMA_PLAYER_CAN_TELEPORT = Boolean.valueOf(pvpSettings.getProperty("AltKarmaPlayerCanTeleport", "true"));
ALT_GAME_KARMA_PLAYER_CAN_TRADE = Boolean.valueOf(pvpSettings.getProperty("AltKarmaPlayerCanTrade", "true"));
ALT_GAME_KARMA_PLAYER_CAN_USE_WAREHOUSE = Boolean.valueOf(pvpSettings.getProperty("AltKarmaPlayerCanUseWareHouse", "true"));
+ ALT_KARMA_TELEPORT_TO_FLORAN = Boolean.valueOf(pvpSettings.getProperty("AltKarmaTeleportToFloran", "true"));
PVP_REWARD_ENABLED = Boolean.valueOf(pvpSettings.getProperty("PvpRewardEnabled", "false"));
PVP_REWARD_ID = Integer.parseInt(pvpSettings.getProperty("PvpRewardItemId", "6392"));
PVP_REWARD_AMOUNT = Integer.parseInt(pvpSettings.getProperty("PvpRewardAmmount", "1"));
|
|
|
|