Jump to content
  • 0

[Help] L2j Freya Server 3 issues


`NeverMore

Question

Hello Mxc ..!

 

I found 1 problem on my server ( L2j Freya )

And also i want to ask about another 2  problems

 

1) The problem is on Talismans, where if some1 wears some Talismans (eg. For Avasion/ P def etc ) and change his weapon ( while he wears the talismans) , all stats of the talisman gone ..!

 

I want to fix this sh!t , so if any1 know something about that , reply here ;)

 

 

2) I want a java code , Where Clan Leaders Have different colour name ( I know it is somewhere shares but i cant find it , so if any1 have it , plz post it here )

 

 

3) I want to make / find a code that will disallow players to Use BSOE when they are flagged / And also to disallow players to drain from mobs ( on PvP / Farm Areas ) when they are flagged ..!

 

 

Thanks of of you for Reading , Plz if you can help me i will apreciate it ;) ..

 

 

Thanks in advance

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

2. I just found this http://pastebin.com/Xy4Qv1b8

 

I Love you ..! I will test it ..!

 

2 issues incompleted ... ;)

Link to comment
Share on other sites

  • 0

3) I want to make / find a code that will disallow players to Use BSOE when they are flagged / And also to disallow players to drain from mobs ( on PvP / Farm Areas ) when they are flagged ..!

You can find this on configs, i think general.properties
Link to comment
Share on other sites

  • 0

3) I want to make / find a code that will disallow players to Use BSOE when they are flagged

gameserver/network/clientpackets/UseItem.java

change

	if (!Config.ALT_GAME_KARMA_PLAYER_CAN_TELEPORT && activeChar.getKarma() > 0)
	{
		switch (_itemId)
		{
			case 736: case 1538: case 1829: case 1830: case 3958: case 5858:
			case 5859: case 6663: case 6664: case 7554: case 7555: case 7556:
			case 7557: case 7558: case 7559: case 7618: case 7619: case 10129:
			case 10130:
				return;
		}

		if (_itemId >= 7117 && _itemId <= 7135)
			return;
	}

to

	if((!Config.ALT_GAME_KARMA_PLAYER_CAN_TELEPORT && activeChar.getKarma() > 0) || activeChar.getPvpFlag() > 0)
	{
		switch (_itemId)
		{
			case 736: case 1538: case 1829: case 1830: case 3958: case 5858:
			case 5859: case 6663: case 6664: case 7554: case 7555: case 7556:
			case 7557: case 7558: case 7559: case 7618: case 7619: case 10129:
			case 10130:
				return;
		}

		if (_itemId >= 7117 && _itemId <= 7135)
			return;
	}

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