Jump to content
  • 0

[GR]Ip olympiad/pvp


Question

12 answers to this question

Recommended Posts

  • 0
Posted

Πάρε αυτόν τον κώδικα φίλε, θα σε βοηθήσει!!!

 

Index: /config/altsettings.properties
===================================================================
--- /config/altsettings.properties	(revision 5149)
+++ /config/altsettings.properties	(working copy)
@@ -324,6 +324,10 @@
# Olympiad Validation Period, Default 24 Hours.
AltOlyVperiod = 86400000

+# Olympiad allow matches from same ip
+AltOlySameIp = True
+	
+
#-------------------------------------------------------------
# Npc Crafter
#-------------------------------------------------------------
Index: /src/main/java/net/sf/l2j/gameserver/Olympiad.java
===================================================================
--- /src/main/java/net/sf/l2j/gameserver/Olympiad.java	(revision 5149)
+++ /src/main/java/net/sf/l2j/gameserver/Olympiad.java	(working copy)
@@ -1819,6 +1819,19 @@
             _sm3 = new SystemMessage(SystemMessageId.S1_HAS_LOST_S2_OLYMPIAD_POINTS);
             
             String result = "";
+			
+			String ip1 = "";
+			String ip2 = "";
+			
+			if(ip1.equals(ip2) && !Config.ALT_OLY_SAME_IP)
+			{
+                    _log.warn("Match from same ip " + _playerOneName + " vs " + _playerTwoName);
+                    result = " tie";
+                    _sm = new SystemMessage(SystemMessageId.THE_GAME_ENDED_IN_A_TIE);
+                    broadcastMessage(_sm, true);
+                    _playerOne.sendMessage("Matches from same Ip are forbidden.");
+                    _playerTwo.sendMessage("Matches from same Ip are forbidden.");
+            }    					

             if (playerTwoHp==0 || hpDiffOne < hpDiffTwo)
             {
Index: /src/main/java/net/sf/l2j/Config.java
===================================================================
--- /src/main/java/net/sf/l2j/Config.java	(revision 5149)
+++ /src/main/java/net/sf/l2j/Config.java	(working copy)
@@ -1353,6 +1353,7 @@
     public static int 				ALT_OLY_IWAIT;				// Olympiad Inital Wait
     public static int 				ALT_OLY_WPERIOD;			// Olympaid Weekly Period
     public static int 				ALT_OLY_VPERIOD;			// Olympaid Validation Period
+	public static boolean           ALT_OLY_SAME_IP;
     public static float 			ALT_GAME_SUMMON_PENALTY_RATE;	// Alternative game summon penalty
     public static int 				ALT_MANOR_REFRESH_TIME;			// Manor Refresh Starting time
     public static int 				ALT_MANOR_REFRESH_MIN;			// Manor Refresh Min
@@ -1495,7 +1496,8 @@
	        ALT_OLY_IWAIT                                       = Integer.parseInt(altSettings.getProperty("AltOlyPwait","300000"));
	        ALT_OLY_WPERIOD                                     = Integer.parseInt(altSettings.getProperty("AltOlyWperiod","604800000"));
	        ALT_OLY_VPERIOD                                     = Integer.parseInt(altSettings.getProperty("AltOlyVperiod","86400000"));
-
+            ALT_OLY_SAME_IP                                     = Boolean.parseBoolean(altSettings.getProperty("AltOlySameIp", "true"));
+			
             ALT_MANOR_REFRESH_TIME                              = Integer.parseInt(altSettings.getProperty("AltManorRefreshTime","20"));
             ALT_MANOR_REFRESH_MIN                               = Integer.parseInt(altSettings.getProperty("AltManorRefreshMin","00"));
             ALT_MANOR_APPROVE_TIME                              = Integer.parseInt(altSettings.getProperty("AltManorApproveTime","6"));

  • 0
Posted

Φίλε το pack σου είναι compile ή pre-conf?

Πάρε αυτόν τον κώδικα φίλε, θα σε βοηθήσει!!!

 

Index: /config/altsettings.properties
===================================================================
--- /config/altsettings.properties	(revision 5149)
+++ /config/altsettings.properties	(working copy)
@@ -324,6 +324,10 @@
# Olympiad Validation Period, Default 24 Hours.
AltOlyVperiod = 86400000

+# Olympiad allow matches from same ip
+AltOlySameIp = True
+	
+
#-------------------------------------------------------------
# Npc Crafter
#-------------------------------------------------------------
Index: /src/main/java/net/sf/l2j/gameserver/Olympiad.java
===================================================================
--- /src/main/java/net/sf/l2j/gameserver/Olympiad.java	(revision 5149)
+++ /src/main/java/net/sf/l2j/gameserver/Olympiad.java	(working copy)
@@ -1819,6 +1819,19 @@
             _sm3 = new SystemMessage(SystemMessageId.S1_HAS_LOST_S2_OLYMPIAD_POINTS);
             
             String result = "";
+			
+			String ip1 = "";
+			String ip2 = "";
+			
+			if(ip1.equals(ip2) && !Config.ALT_OLY_SAME_IP)
+			{
+                    _log.warn("Match from same ip " + _playerOneName + " vs " + _playerTwoName);
+                    result = " tie";
+                    _sm = new SystemMessage(SystemMessageId.THE_GAME_ENDED_IN_A_TIE);
+                    broadcastMessage(_sm, true);
+                    _playerOne.sendMessage("Matches from same Ip are forbidden.");
+                    _playerTwo.sendMessage("Matches from same Ip are forbidden.");
+            }    					

             if (playerTwoHp==0 || hpDiffOne < hpDiffTwo)
             {
Index: /src/main/java/net/sf/l2j/Config.java
===================================================================
--- /src/main/java/net/sf/l2j/Config.java	(revision 5149)
+++ /src/main/java/net/sf/l2j/Config.java	(working copy)
@@ -1353,6 +1353,7 @@
     public static int 				ALT_OLY_IWAIT;				// Olympiad Inital Wait
     public static int 				ALT_OLY_WPERIOD;			// Olympaid Weekly Period
     public static int 				ALT_OLY_VPERIOD;			// Olympaid Validation Period
+	public static boolean           ALT_OLY_SAME_IP;
     public static float 			ALT_GAME_SUMMON_PENALTY_RATE;	// Alternative game summon penalty
     public static int 				ALT_MANOR_REFRESH_TIME;			// Manor Refresh Starting time
     public static int 				ALT_MANOR_REFRESH_MIN;			// Manor Refresh Min
@@ -1495,7 +1496,8 @@
	        ALT_OLY_IWAIT                                       = Integer.parseInt(altSettings.getProperty("AltOlyPwait","300000"));
	        ALT_OLY_WPERIOD                                     = Integer.parseInt(altSettings.getProperty("AltOlyWperiod","604800000"));
	        ALT_OLY_VPERIOD                                     = Integer.parseInt(altSettings.getProperty("AltOlyVperiod","86400000"));
-
+            ALT_OLY_SAME_IP                                     = Boolean.parseBoolean(altSettings.getProperty("AltOlySameIp", "true"));
+			
             ALT_MANOR_REFRESH_TIME                              = Integer.parseInt(altSettings.getProperty("AltManorRefreshTime","20"));
             ALT_MANOR_REFRESH_MIN                               = Integer.parseInt(altSettings.getProperty("AltManorRefreshMin","00"));
             ALT_MANOR_APPROVE_TIME                              = Integer.parseInt(altSettings.getProperty("AltManorApproveTime","6"));

το code αυτό είναι λάθος >.>
  • 0
Posted

exw parei ena pack apo edw to mathuza

Φίλε μου μάθε να κάνεις compile,δούλεψε πάνω στον σέρβερ σου,υπάρχουνε τόσοι οδηγοί εδώ μέσα,ψάξε και κάτσε διάβασε!
  • 0
Posted

ine compiled..

Ναί αλλά απο τι στιγμή που δεν έχεις το source του,είναι προκατασκευασμένο >.>
  • 0
Posted

kai den mporw na ftiakso twra auto me tin olympiada?

Δυστυχώς όχι :|

φίλε μάθε να κάνεις compile >.>

  • 0
Posted

kala kai kati allo gia na min anigo allo topic pws kanw otan xekanaei to gm otan mpenei sto game na ine invis euxaristo

στα config σου είναι αυτό,ψάξτο!
  • 0
Posted

Στα config πήγαινε στο other και βρες το παρακάτω και άλλαξε το από false σε true

 

''GMStartupInvisible = False''

 

Δεν υπάρχει κάτι άλλο να συζητήσουμε αφού το προηγούμενο που ζητάς χρειάζεται να έχεις το source από το pack σου.

 

Guest
This topic is now closed to further replies.


  • Posts

    • Hello, I'm looking for classic client for l2 gold or l2 gold weapons for classic 166 version
    • Good afternoon   ⚡CAN'T GO TO THE ONLINE STORE? OPEN THE SITE VIA VPN OR TOR BROWSER⚡ ⚡PREMIUM QUALITY ACCOUNTS, INSTANT DELIVERY, FREE CONSULTATIONS, RELIABLE WORK⚡   ✔ Ready accounts ✔   BUSINESS ACCOUNTS ☟ Blackcatcard Business LV, Volet com (AdvCash) Business EU, Xapo Bank Business EU, Finom Business, PayPal Business, Payset Business, Stripe Business, Payoneer Business EU, Wise Business UK/EU, Revolut Business EU/UK, N26 Business DE, Wallester Business EU, Mistertango Business LV   BANKS, NATIONAL BANKS ☟ Ceska Sporitelna, KASIKORNBANK, BBVA, CommerzBank, Santander, Kaspi Bank, AlfaBank, Raiffeisen, mBank, Paribas, Bereke Bank, Freedom Bank   PAYMENT SYSTEMS ☟ Bunq on emulator (DE, NL, FR, ES, IE ibans), Revolut on emulator (UK/EU), ICard, BlackCatCard, Vivid DE, Bankera, Bitsa, Wise EU/UK, N26 DE on emulator, Skrill, Neteller, Trasta, Wirex, Lama, Paysera, 4x4 io, Weststein, Paysafecard, Paysend, Genome, Conotoxia, Mybrocard, Payz Silver, Pockit UK, NagaPay, Volet com, SpectroCoin, SwissMoney, Yuh, Lydia / Sumeria, Ka.App, Wittix, Western Union, MyGuava   CRYPTOEXCHANGE ☟ Poloniex, Bitmart, Kraken, WhiteBit, Quppy, Nexo, Gate, OKX, Paybis, Paxful, Huobi (HTX), xcoins com, Bit2Me, Bybit LVL 2, KuCoin, Binance LVL 2, Mexc, Latoken   Contact via telegram - in the first post of the topic!
    • Sell "Amoral" Classic Armor and Weapon.   Custom "Amoral" Draconic Set YouTube Custom "Amoral" Imperial Set YouTube Custom "Amoral" Dark Crystal Robe YouTube Custom "Amoral" Classic S-Grade Weapon YouTube My Contacts Telegram  
    • Greetings to all! I offer a scope for client modification. What services do I provide: 1) Transfer of any Weapon, Armor, Accessories, from any chronicles to yours. 2) Creating exclusive add-ons. 3) Repainting of Armor, Weapons аnd Accessories. 4) Packing the icons you need and other things. 5) Creating NPCs with and without effects. 6) Create Monsters and Raid bosses, with effects and sounds. 7) HTLM NPC design. Creating Buttons and other things for your project. And much more If you have any questions, write in  Telegram. You can find some of the works here  YouTube
  • Topics

×
×
  • Create New...