Jump to content

[Share]Pvp Boting Protection


Kяaσh

Recommended Posts

if someone kill the some character more than 1 time dont take pvp point (lol)

well for faction server's it may be good (propablY)

but for the boting pvp protection you can make something else like :

if someone try to increase his pvp point's from the SAME IP ADDRESS

       // Check if it's pvp

	String attacker = getClient().getConnection().getInetAddress().getHostAddress();
	String attacked = targetPlayer.getClient().getConnection().getInetAddress().getHostAddress();

	if (attacker.equals(attacked))
	{
		sendMessage("What you though? You cannot use dumb exploit's NOOB!");
		return;
	}
	if (
			(
					checkIfPvP(target) &&            //   Can pvp and
					targetPlayer.getPvpFlag() != 0   //   Target player has pvp flag set
			) ||                                     // or
			(
					isInsideZone(ZONE_PVP) &&         		 //   Player is inside pvp zone and
					targetPlayer.isInsideZone(ZONE_PVP) 	 //   Target player is inside pvp zone
			)
	)
	{
            increasePvpKills();
	}
	else                                                                        // Target player doesn't have pvp flag set
	{
            // check about wars
            if (targetPlayer.getClan() != null && getClan() != null)
            {
                if (getClan().isAtWarWith(targetPlayer.getClanId()))
                {
                    if (targetPlayer.getClan().isAtWarWith(getClanId()))
                    {
                        // 'Both way war' -> 'PvP Kill'
                        increasePvpKills();
                        return;
                    }
                }
            }
            
            // 'No war' or 'One way war' -> 'Normal PK'
    		if (attacker.equals(attacked))
    		{
    			sendMessage("What you though? You cannot use dumb exploit's NOOB!");
    			return;
    		}
            else if (targetPlayer.getKarma() > 0)                                        // Target player has karma
		{
			if ( Config.KARMA_AWARD_PK_KILL )
			{
                    increasePvpKills();
			}
		}
		else if (targetPlayer.getPvpFlag() == 0)                                                                    // Target player doesn't have karma
		{
			if (attacker.equals(attacked))
			{
				sendMessage("What you though? You cannot use dumb exploit's NOOB!");
				return;
			}

this is the protection for same IP w/e and your's it's correct

 

 

this code in what folder we put it?

Link to comment
Share on other sites

damn so for replying again : i just got some errors from this code.I use gracia final l2jserver last rev.

 

 

 

Syntax error, insert "}" to complete Block L2PcInstance.java /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance line 5825 Java Problem

Syntax error, insert "}" to complete Statement L2PcInstance.java /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance line 5825 Java Problem

Syntax error, insert "else Statement" to complete IfStatement L2PcInstance.java /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance line 5825 Java Problem

target cannot be resolved L2PcInstance.java /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance line 5763 Java Problem

targetPlayer cannot be resolved L2PcInstance.java /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance line 5754 Java Problem

targetPlayer cannot be resolved L2PcInstance.java /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance line 5764 Java Problem

targetPlayer cannot be resolved L2PcInstance.java /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance line 5768 Java Problem

targetPlayer cannot be resolved L2PcInstance.java /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance line 5778 Java Problem

targetPlayer cannot be resolved L2PcInstance.java /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance line 5780 Java Problem

targetPlayer cannot be resolved L2PcInstance.java /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance line 5782 Java Problem

targetPlayer cannot be resolved L2PcInstance.java /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance line 5797 Java Problem

targetPlayer cannot be resolved L2PcInstance.java /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance line 5804 Java Problem

 

 

Maybe it is need to import smth ??i just dont know what :/

 

Link to comment
Share on other sites

Syntax error, insert "}" to complete Block   L2PcInstance.java   /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance   line 5825   Java Problem

Syntax error, insert "}" to complete Statement   L2PcInstance.java   /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance   line 5825   Java Problem

Syntax error, insert "else Statement" to complete IfStatement   L2PcInstance.java   /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance   line 5825   Java Problem

target cannot be resolved   L2PcInstance.java   /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance   line 5763   Java Problem

targetPlayer cannot be resolved   L2PcInstance.java   /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance   line 5754   Java Problem

targetPlayer cannot be resolved   L2PcInstance.java   /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance   line 5764   Java Problem

targetPlayer cannot be resolved   L2PcInstance.java   /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance   line 5768   Java Problem

targetPlayer cannot be resolved   L2PcInstance.java   /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance   line 5778   Java Problem

targetPlayer cannot be resolved   L2PcInstance.java   /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance   line 5780   Java Problem

targetPlayer cannot be resolved   L2PcInstance.java   /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance   line 5782   Java Problem

targetPlayer cannot be resolved   L2PcInstance.java   /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance   line 5797   Java Problem

targetPlayer cannot be resolved   L2PcInstance.java   /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance   line 5804   Java Problem

 

 

Are you lazy to read ?

Link to comment
Share on other sites

Syntax error, insert "}" to complete Block  L2PcInstance.java  /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance  line 5825  Java Problem

Syntax error, insert "}" to complete Statement   L2PcInstance.java  /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance  line 5825  Java Problem

Syntax error, insert "else Statement" to complete IfStatement  L2PcInstance.java  /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance  line 5825  Java Problem

target cannot be resolved  L2PcInstance.java  /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance  line 5763  Java Problem

targetPlayer cannot be resolved  L2PcInstance.java  /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance  line 5754  Java Problem

targetPlayer cannot be resolved  L2PcInstance.java  /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance  line 5764  Java Problem

targetPlayer cannot be resolved  L2PcInstance.java  /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance  line 5768  Java Problem

targetPlayer cannot be resolved  L2PcInstance.java  /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance  line 5778  Java Problem

targetPlayer cannot be resolved  L2PcInstance.java  /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance  line 5780  Java Problem

targetPlayer cannot be resolved  L2PcInstance.java  /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance  line 5782  Java Problem

targetPlayer cannot be resolved  L2PcInstance.java  /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance  line 5797  Java Problem

targetPlayer cannot be resolved  L2PcInstance.java  /L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance  line 5804  Java Problem

 

 

Are you lazy to read ?

 

 

Ok man for the first 2 errors i can fix them,but for the rest???Lol i ask if you know because i am not expert....

Link to comment
Share on other sites

It is not offtopic man,it concerns about the code of pvp bot protecting.

But ok,as you wish.

you ask help about osiris code not mine.
Link to comment
Share on other sites

you ask help about osiris code not mine.

shut up nooB!!!! both codes are cool stop acting like [gr] (xazo)[/gr] :)

P.S {your's XD {credits Savormix} w/eeee

 

It is not offtopic man,it concerns the code of pvp bot protecting.

But ok,as you wish.

off topic : if you wanna add this code send me a message here with your msn and i will help ya

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.

Guest
Reply to this topic...

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




  • Posts

    • abortion pills online in Abu Dhabi +27791653574 Buy Pills now  +27791653574 abortion pills for sale Abu Dhabi Text NowAbortion Clinic Abu Dhabi +27791653574 Pregnancy Termination  clinic around Abu Dhabi Cytotec 200 mcg price in Abu Dhabi +27791653574 contact us now | +27791653574 Breeky Tablets in Abu Dhabi Know price/cost  Abortion pills in Abu Dhabi | +27791653574 WhatsApp Us Now Abortion pills online in Abu Dhabi Breeky tablets for sale in Abu Dhabi Cytotec 200 mcg Misoprostol for sale in Abu Dhabi Whatever your circumstances, its your right to terminate up 24 weeks into the pregnancy. It’s entirely your decision. And if its something you want to do, rest assured that its legal in Abu Dhabi to have an abortion Marina Whatsapp    Remember abortion is legal in Abu Dhabi  so there is no reason to ever visit an illegal service provider. If you have passed the 24 weeks mark, there are other options available to you which we will talk you through and help you to understand.   We are here to support you, whatever choice you make about your pregnancy, so you never have to feel alone, we offer safe abortion ( also called termination of pregnancy TOP) for women who are up to 24 weeks pregnant. Depending on the gestation (stage of the pregnancy), we have two services available the medical process (often called the abortion pill) and the surgical procedure (a minor same day surgical treatment.)   Our nurses and Doctors are accredited professionals and experts in reproductive healthcare. Our work is strictly governed the choice on termination of pregnancy and we adhere to World health Organisation Guidelines.   Safe abortion or termination of pregnancy (TOP) is when a pregnancy is terminated in its early stage before it results into the birth of a child.   Abortion may be performed in two different ways.   Medical Abortion This is when abortion pills will be swallowed to end the pregnancy   Surgical Abortion This is when instruments will be used to remove the foetus. If both abortion procedures are done by a qualified abortion doctor with medical guidance, there is no way it will affect your fertility.   How is a safe abortion done On your first visit to our clinic, counselling will be provided and this is optional.   Safe abortion The doctor will perform a pregnancy test to confirm the weeks and explain to you in detailed how the safe abortion procedure will be done and how to take care of yourself after the abortion.   Side effects of medical safe abortion You will experience cramping like period pains You might vomit Feel Nausea Get a running stomach Experience some bit of fatigue The bleeding might start 2 hours after using the second pills. abortion in Abu Dhabi Yas Island The Corniche Area Saadiyat Island Al Reem Island Al Maryah Island Tourist Club Area Khalifa City Al Khalidiyah Al Reef Mohammed Bin Zayed City Al Raha Al Mushrif Al Karamah
    • abortion pills online in Abu Dhabi +27791653574 Buy Pills now  +27791653574 abortion pills for sale Abu Dhabi Text NowAbortion Clinic Abu Dhabi +27791653574 Pregnancy Termination  clinic around Abu Dhabi Cytotec 200 mcg price in Abu Dhabi +27791653574 contact us now | +27791653574 Breeky Tablets in Abu Dhabi Know price/cost  Abortion pills in Abu Dhabi | +27791653574 WhatsApp Us Now Abortion pills online in Abu Dhabi Breeky tablets for sale in Abu Dhabi Cytotec 200 mcg Misoprostol for sale in Abu Dhabi Whatever your circumstances, its your right to terminate up 24 weeks into the pregnancy. It’s entirely your decision. And if its something you want to do, rest assured that its legal in Abu Dhabi to have an abortion Marina Whatsapp    Remember abortion is legal in Abu Dhabi  so there is no reason to ever visit an illegal service provider. If you have passed the 24 weeks mark, there are other options available to you which we will talk you through and help you to understand.   We are here to support you, whatever choice you make about your pregnancy, so you never have to feel alone, we offer safe abortion ( also called termination of pregnancy TOP) for women who are up to 24 weeks pregnant. Depending on the gestation (stage of the pregnancy), we have two services available the medical process (often called the abortion pill) and the surgical procedure (a minor same day surgical treatment.)   Our nurses and Doctors are accredited professionals and experts in reproductive healthcare. Our work is strictly governed the choice on termination of pregnancy and we adhere to World health Organisation Guidelines.   Safe abortion or termination of pregnancy (TOP) is when a pregnancy is terminated in its early stage before it results into the birth of a child.   Abortion may be performed in two different ways.   Medical Abortion This is when abortion pills will be swallowed to end the pregnancy   Surgical Abortion This is when instruments will be used to remove the foetus. If both abortion procedures are done by a qualified abortion doctor with medical guidance, there is no way it will affect your fertility.   How is a safe abortion done On your first visit to our clinic, counselling will be provided and this is optional.   Safe abortion The doctor will perform a pregnancy test to confirm the weeks and explain to you in detailed how the safe abortion procedure will be done and how to take care of yourself after the abortion.   Side effects of medical safe abortion You will experience cramping like period pains You might vomit Feel Nausea Get a running stomach Experience some bit of fatigue The bleeding might start 2 hours after using the second pills. abortion in Abu Dhabi Yas Island The Corniche Area Saadiyat Island Al Reem Island Al Maryah Island Tourist Club Area Khalifa City Al Khalidiyah Al Reef Mohammed Bin Zayed City Al Raha Al Mushrif Al Karamah
    • abortion pills online in Abu Dhabi +27791653574 Buy Pills now  +27791653574 abortion pills for sale Abu Dhabi Text NowAbortion Clinic Abu Dhabi +27791653574 Pregnancy Termination  clinic around Abu Dhabi Cytotec 200 mcg price in Abu Dhabi +27791653574 contact us now | +27791653574 Breeky Tablets in Abu Dhabi Know price/cost  Abortion pills in Abu Dhabi | +27791653574 WhatsApp Us Now Abortion pills online in Abu Dhabi Breeky tablets for sale in Abu Dhabi Cytotec 200 mcg Misoprostol for sale in Abu Dhabi Whatever your circumstances, its your right to terminate up 24 weeks into the pregnancy. It’s entirely your decision. And if its something you want to do, rest assured that its legal in Abu Dhabi to have an abortion Marina Whatsapp    Remember abortion is legal in Abu Dhabi  so there is no reason to ever visit an illegal service provider. If you have passed the 24 weeks mark, there are other options available to you which we will talk you through and help you to understand.   We are here to support you, whatever choice you make about your pregnancy, so you never have to feel alone, we offer safe abortion ( also called termination of pregnancy TOP) for women who are up to 24 weeks pregnant. Depending on the gestation (stage of the pregnancy), we have two services available the medical process (often called the abortion pill) and the surgical procedure (a minor same day surgical treatment.)   Our nurses and Doctors are accredited professionals and experts in reproductive healthcare. Our work is strictly governed the choice on termination of pregnancy and we adhere to World health Organisation Guidelines.   Safe abortion or termination of pregnancy (TOP) is when a pregnancy is terminated in its early stage before it results into the birth of a child.   Abortion may be performed in two different ways.   Medical Abortion This is when abortion pills will be swallowed to end the pregnancy   Surgical Abortion This is when instruments will be used to remove the foetus. If both abortion procedures are done by a qualified abortion doctor with medical guidance, there is no way it will affect your fertility.   How is a safe abortion done On your first visit to our clinic, counselling will be provided and this is optional.   Safe abortion The doctor will perform a pregnancy test to confirm the weeks and explain to you in detailed how the safe abortion procedure will be done and how to take care of yourself after the abortion.   Side effects of medical safe abortion You will experience cramping like period pains You might vomit Feel Nausea Get a running stomach Experience some bit of fatigue The bleeding might start 2 hours after using the second pills. abortion in Abu Dhabi Yas Island The Corniche Area Saadiyat Island Al Reem Island Al Maryah Island Tourist Club Area Khalifa City Al Khalidiyah Al Reef Mohammed Bin Zayed City Al Raha Al Mushrif Al Karamah
    • abortion pills online in Abu Dhabi +27791653574 Buy Pills now  +27791653574 abortion pills for sale Abu Dhabi Text NowAbortion Clinic Abu Dhabi +27791653574 Pregnancy Termination  clinic around Abu Dhabi Cytotec 200 mcg price in Abu Dhabi +27791653574 contact us now | +27791653574 Breeky Tablets in Abu Dhabi Know price/cost  Abortion pills in Abu Dhabi | +27791653574 WhatsApp Us Now Abortion pills online in Abu Dhabi Breeky tablets for sale in Abu Dhabi Cytotec 200 mcg Misoprostol for sale in Abu Dhabi Whatever your circumstances, its your right to terminate up 24 weeks into the pregnancy. It’s entirely your decision. And if its something you want to do, rest assured that its legal in Abu Dhabi to have an abortion Marina Whatsapp    Remember abortion is legal in Abu Dhabi  so there is no reason to ever visit an illegal service provider. If you have passed the 24 weeks mark, there are other options available to you which we will talk you through and help you to understand.   We are here to support you, whatever choice you make about your pregnancy, so you never have to feel alone, we offer safe abortion ( also called termination of pregnancy TOP) for women who are up to 24 weeks pregnant. Depending on the gestation (stage of the pregnancy), we have two services available the medical process (often called the abortion pill) and the surgical procedure (a minor same day surgical treatment.)   Our nurses and Doctors are accredited professionals and experts in reproductive healthcare. Our work is strictly governed the choice on termination of pregnancy and we adhere to World health Organisation Guidelines.   Safe abortion or termination of pregnancy (TOP) is when a pregnancy is terminated in its early stage before it results into the birth of a child.   Abortion may be performed in two different ways.   Medical Abortion This is when abortion pills will be swallowed to end the pregnancy   Surgical Abortion This is when instruments will be used to remove the foetus. If both abortion procedures are done by a qualified abortion doctor with medical guidance, there is no way it will affect your fertility.   How is a safe abortion done On your first visit to our clinic, counselling will be provided and this is optional.   Safe abortion The doctor will perform a pregnancy test to confirm the weeks and explain to you in detailed how the safe abortion procedure will be done and how to take care of yourself after the abortion.   Side effects of medical safe abortion You will experience cramping like period pains You might vomit Feel Nausea Get a running stomach Experience some bit of fatigue The bleeding might start 2 hours after using the second pills. abortion in Abu Dhabi Yas Island The Corniche Area Saadiyat Island Al Reem Island Al Maryah Island Tourist Club Area Khalifa City Al Khalidiyah Al Reef Mohammed Bin Zayed City Al Raha Al Mushrif Al Karamah
    • abortion pills online in Abu Dhabi +27791653574 Buy Pills now  +27791653574 abortion pills for sale Abu Dhabi Text NowAbortion Clinic Abu Dhabi +27791653574 Pregnancy Termination  clinic around Abu Dhabi Cytotec 200 mcg price in Abu Dhabi +27791653574 contact us now | +27791653574 Breeky Tablets in Abu Dhabi Know price/cost  Abortion pills in Abu Dhabi | +27791653574 WhatsApp Us Now Abortion pills online in Abu Dhabi Breeky tablets for sale in Abu Dhabi Cytotec 200 mcg Misoprostol for sale in Abu Dhabi Whatever your circumstances, its your right to terminate up 24 weeks into the pregnancy. It’s entirely your decision. And if its something you want to do, rest assured that its legal in Abu Dhabi to have an abortion Marina Whatsapp    Remember abortion is legal in Abu Dhabi  so there is no reason to ever visit an illegal service provider. If you have passed the 24 weeks mark, there are other options available to you which we will talk you through and help you to understand.   We are here to support you, whatever choice you make about your pregnancy, so you never have to feel alone, we offer safe abortion ( also called termination of pregnancy TOP) for women who are up to 24 weeks pregnant. Depending on the gestation (stage of the pregnancy), we have two services available the medical process (often called the abortion pill) and the surgical procedure (a minor same day surgical treatment.)   Our nurses and Doctors are accredited professionals and experts in reproductive healthcare. Our work is strictly governed the choice on termination of pregnancy and we adhere to World health Organisation Guidelines.   Safe abortion or termination of pregnancy (TOP) is when a pregnancy is terminated in its early stage before it results into the birth of a child.   Abortion may be performed in two different ways.   Medical Abortion This is when abortion pills will be swallowed to end the pregnancy   Surgical Abortion This is when instruments will be used to remove the foetus. If both abortion procedures are done by a qualified abortion doctor with medical guidance, there is no way it will affect your fertility.   How is a safe abortion done On your first visit to our clinic, counselling will be provided and this is optional.   Safe abortion The doctor will perform a pregnancy test to confirm the weeks and explain to you in detailed how the safe abortion procedure will be done and how to take care of yourself after the abortion.   Side effects of medical safe abortion You will experience cramping like period pains You might vomit Feel Nausea Get a running stomach Experience some bit of fatigue The bleeding might start 2 hours after using the second pills. abortion in Abu Dhabi Yas Island The Corniche Area Saadiyat Island Al Reem Island Al Maryah Island Tourist Club Area Khalifa City Al Khalidiyah Al Reef Mohammed Bin Zayed City Al Raha Al Mushrif Al Karamah
  • Topics

×
×
  • Create New...