Jump to content

[Share]Hero reward for pvps


Recommended Posts

I get error on this increasePvpKills();

How to fix it? And thank you for the code.

 

lol dude you should find it not add it xD

Link to comment
Share on other sites

then try with that one :

if (getPvpKills() >= 5000)
        {
             sendMessage ("Congratz , you are now a hero ");
             setHero(true);
        }

Link to comment
Share on other sites

I get error on this increasePvpKills();

How to fix it? And thank you for the code.

 

And You think that we can help you without error log?

 

Smart.

Link to comment
Share on other sites

And You think that we can help you without error log?

 

Smart.

 

already helped :P I know what error will apear with that activeChar...

Link to comment
Share on other sites

  • 3 months later...

*L2PcIstance.java

 

Hello there , i got inspired for that by L2Core (old faction) where u had an amount of PvPs you could gain hero status .. so here its the code..

 

(currently the amount of pvp's you need to have is seted to 5000 , but can simple change it)

 

Tested on L2J Archid

 

find this

public void increasePvpKills()

 

 

and change it like this

 public void increasePvpKills(L2PcInstance activeChar)

 

And then paste this

if (activeChar.getPvpKills() >= 5000)
        {
       activeChar.sendMessage ("Congratz , you are now a hero ");
        activeChar.setHero(true);
        }
        

 

 

 

down of this

{
        // Add karma to attacker and increase its PK counter
        setPvpKills(getPvpKills() + 1);

 

 

 

Credits goes to Revenger for www.maxcheaters.com

 

is very good idea but, can u make it when you take restart hero to disapear, something like that you kill 5 guys you take only hero aura after when you die two times and you lose it or when you take restart

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



×
×
  • Create New...