07-04-2010, 03:19 PM
|
#1 (permalink)
|
|
Membro - Veterano
Registrado em: Sep 2009
Localização: Florianopolis (sc)
Posts: 591
Agradecido 724 Vezes em 241 Posts
Achei Ruim:
Acharam ruim Vezes em Posts
Meu Estado:
|
Coordenadas configuráveis para Party Duel
Index: /trunk/L2Archid_GameServer_It/java/com/l2jarchid/Config.java
===================================================================
--- /trunk/L2Archid_GameServer_It/java/com/l2jarchid/Config.java (revision 352)
+++ /trunk/L2Archid_GameServer_It/java/com/l2jarchid/Config.java (revision 353)
@@ -1309,5 +1309,8 @@
public static boolean L2JMOD_WEDDING_FORMALWEAR;
public static int L2JMOD_WEDDING_DIVORCE_COSTS;
-
+ public static int DUEL_SPAWN_X;
+ public static int DUEL_SPAWN_Y;
+ public static int DUEL_SPAWN_Z;
+
// *******************************************************************************************
public static void loadAMConfig()
@@ -1408,5 +1411,7 @@
L2JMOD_WEDDING_FORMALWEAR = Boolean.parseBoolean(L2JArchidModSettings.getProperty("WeddingFormalWear", "True"));
L2JMOD_WEDDING_DIVORCE_COSTS = Integer.parseInt(L2JArchidModSettings.getProperty("WeddingDivorceCosts", "20"));
-
+ DUEL_SPAWN_X = Integer.parseInt(L2JArchidModSettings.getProperty("PartyDuelSpawnX", "149319"));
+ DUEL_SPAWN_Y = Integer.parseInt(L2JArchidModSettings.getProperty("PartyDuelSpawnY", "46710"));
+ DUEL_SPAWN_Z = Integer.parseInt(L2JArchidModSettings.getProperty("PartyDuelSpawnZ", "-3413"));
TVT_EVENT_ENABLED = Boolean.parseBoolean(L2JArchidModSettings.getProperty("TvTEventEnabled", "false"));
TVT_EVENT_INTERVAL = L2JArchidModSettings.getProperty("TvTEventInterval", "20:00").split(",");
Index: /trunk/L2Archid_GameServer_It/java/com/l2jarchid/gameserver/model/entity/Duel.java
===================================================================
--- /trunk/L2Archid_GameServer_It/java/com/l2jarchid/gameserver/model/entity/Duel.java (revision 262)
+++ /trunk/L2Archid_GameServer_It/java/com/l2jarchid/gameserver/model/entity/Duel.java (revision 353)
@@ -23,5 +23,5 @@
import javolution.util.FastList;
-
+import com.l2jarchid.Config;
import com.l2jarchid.gameserver.ThreadPoolManager;
import com.l2jarchid.gameserver.ai.CtrlIntention;
@@ -228,9 +228,11 @@
{
// players need to be teleportet first
- //TODO: stadia manager needs a function to return an unused stadium for duels
+ // TODO: stadia manager needs a function to return an unused stadium for duels
// currently only teleports to the same stadium
- _duel.teleportPlayers(-102495, -209023, -3326);
-
- // give players 20 seconds to complete teleport and get ready (its ought to be 30 on offical..)
+
+ _duel.teleportPlayers(Config.DUEL_SPAWN_X, Config.DUEL_SPAWN_Y, Config.DUEL_SPAWN_Z);
+
+
+ // give players 20 seconds to complete teleport and get ready (its ought to be 30 on official..)
ThreadPoolManager.getInstance().scheduleGeneral(this, 20000);
}
Index: /trunk/L2Archid_GameServer_It/config/mods/l2jarchid-mods.properties
===================================================================
--- /trunk/L2Archid_GameServer_It/config/mods/l2jarchid-mods.properties (revision 315)
+++ /trunk/L2Archid_GameServer_It/config/mods/l2jarchid-mods.properties (revision 353)
@@ -348,2 +348,13 @@
#TvTShowCredits = True
+
+#================================================#
+# /!\ Party Duel /!\ #
+#================================================#
+# Default Coordinates : Coliseum
+# Party Duel Spawn X
+PartyDuelSpawnX = 149319
+# Party Duel Spawn Y
+PartyDuelSpawnY = 46710
+# Party Duel Spawn Z
+PartyDuelSpawnZ = -3413
Creditos : Archid team
|
|
|