Jump to content
  • 0

[Request]Olympiads Same IP


Question

3 answers to this question

Recommended Posts

  • 0
Posted

what pack do you use?

 

for l2jfree go to configs and open altsettings.properties

 

and find that thing!

 

# -----------------------------------------------------------------

#  Olympiad Config

# -----------------------------------------------------------------

 

# Olympiad Start Time in Military hours Default 6pm (18)

AltOlyStartTime = 18

 

# Olympiad Start Time for Min's, Default 00 so at the start of the hour.

AltOlyMin = 00

 

# Olympiad Compeition Period, Default 6 hours.

AltOlyCPeriod = 21600000

 

# Olympiad Battle Period, Default 6 minutes. (If set different, should be < AltOlyBWait)

AltOlyBattle = 360000

 

# Olympiad Battle Wait, Default 10 Minutes

AltOlyBWait = 600000

 

# Olympiad Inital Wait Period, Default 5 minutes

AltOlyPwait = 300000

 

# Olympiad Weekly Period, Default 1 week

AltOlyWperiod = 604800000

 

# Olympiad Validation Period, Default 24 Hours.

AltOlyVperiod = 86400000

 

# Olympiad allow matches from same ip

AltOlySameIp = False <<<---------------------------------- Make it True and you are ok!

 

# Classed Olympiad Settings

AltOlyClassedParticipants = 5

AltOlyBattleRewardItem = 6651

AltOlyClassedRewItemCount = 50

 

# NonClassed Olympiad Settings

AltOlyNonClassedParticipants = 9

AltOlyNonClassedRewardItem = 6651

AltOlyNonClassedRewItemCount = 30

 

# Olympiad Competition Rewards

# Minimum Points needed to to exchange nobless gate pass, Retail 50

AltOlyMinPointForExchange = 50

# ItemId for this Reward, Retail 6651(Gate Pass)

AltOlyCompRewItem = 6651

# Rate to exchange Points to Reward item, Retail 1 Point * 1000

AltOlyGPPerPoint = 1000

# Noblesse points awarded to Heros. Retail 300

AltOlyHeroPoints = 300

 

# Restrict same item in olympiad. ItemID's need to be separated whit comma (ex. 1,200,350)

AltOlyRestrictedItems = 0

 

# if true on a tie the total dmg = dmg - heal of oppenent

AltOlyMatchHealCounts = False

# if true, damage dealed by summons or to summons also counts

AltOlySummonDamageCounts = False

 

# remove all non self summonable cubics on oly

AltOlyRemoveCubics = False

  • 0
Posted

Try to add this at your olympiad.java

 

if (_game._playerOneIp.equals(_game._playerTwoIp) && !Config.ALT_OLY_SAME_IP)
			{
				_log.warn("Match from same ip " + _game._playerOneName + " vs " + _game._playerTwoName);
				_sm = new SystemMessage(SystemMessageId.THE_GAME_ENDED_IN_A_TIE);
				broadcastMessage(_sm, true);
				try
				{
					_game._playerOne.sendMessage("Match suspected of Illegal Violation: GM informed");
					_game._playerTwo.sendMessage("Match suspected of Illegal Violation: GM informed");
				}
				catch (Exception e)
				{
					_log.error(e.getMessage(), e);
				}
			}

 

 

 

and at your config add these 2

 

 

 

public static boolean				ALT_OLY_SAME_IP;															// Olympiad allow Matches from same Ip

 

 

 

ALT_OLY_SAME_IP = Boolean.parseBoolean(altSettings.getProperty("AltOlySameIp", "true"));

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
Answer this question...

×   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...