Jump to content
  • 0

[Help] Clan Reputation


MasterJinz

Question

10 answers to this question

Recommended Posts

  • 0

Its a config at gameserver/config/altsettings

 

# Reputation Score gained per Kill in Clanwar.

# Retail: 1

ReputationScorePerKill = 1

 

1 = how many clan reputations a clan gains for each kill with a clan war

Link to comment
Share on other sites

  • 0

Its a config at gameserver/config/altsettings

 

# Reputation Score gained per Kill in Clanwar.

# Retail: 1

ReputationScorePerKill = 1

 

1 = how many clan reputations a clan gains for each kill with a clan war

he doesn't want only for clan_war i think
Link to comment
Share on other sites

  • 0

well i think it's easy..

 

in l2pcinstance:

setPvpKills(getPvpKills() + 1); find this, and paste this under...:

if(getClan() != null)

        {

        getClan().setReputationScore(getClan().getReputationScore() + 500, true);

        }

 

ofc you can make it more advanced by adding and some messages etc..also..where 500 add how many clan rep you want to add every pvp kill

Link to comment
Share on other sites

  • 0

Use proper methods.

 

addReputationScore(numberToGive, true/false depending if you want to save)

takeReputationScore(numberToTake, true/false depending if you want to save)

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...