Jump to content

Recommended Posts

Posted

Hello Guys Sorry For Reshare i Search and i dont find For L2jfrozen Champion Aura

Lest Start 

Sorry For My English

 

 

 

 Go config/fun/champion.properties

 Find This 

 ChampionTitle = Champion

And Down Paste This

+
+# Enable aura from champion mobs
+# 0 - no aura / 1 - blue aura / 2 - red aura
+# Default = 0
+ChampionEnableAura = 0

Now Open Eclipse and Go head-src/com/l2jfrozen/Config.java

Find This

public static String L2JMOD_CHAMP_TITLE;

And Paste This

+ public static int L2JMOD_CHAMPION_ENABLE_AURA;

 Find This

L2JMOD_CHAMP_TITLE = ChampionSettings.getProperty("ChampionTitle", "Champion");

And Paste This

+   L2JMOD_CHAMPION_ENABLE_AURA = Integer.parseInt(ChampionSettings.getProperty("ChampionEnableAura", "0"));
+   if (L2JMOD_CHAMPION_ENABLE_AURA != 0 && L2JMOD_CHAMPION_ENABLE_AURA != 1 && L2JMOD_CHAMPION_ENABLE_AURA != 2) L2JMOD_CHAMPION_ENABLE_AURA = 0;

Now Go head-src/com/l2jfrozen/gameserver/network/serverpackets/NpcInfo.java

Find This And Delete

- writeC(0x00); // C3  team circle 1-blue, 2-red

and Replace This

+  if (Config.L2JMOD_CHAMPION_ENABLE)
+  {
+  writeC(_activeChar.isChampion() ? Config.L2JMOD_CHAMPION_ENABLE_AURA : 0);
+  }
+  else
+  {
+  writeC(0);
+  }

ok its ready build Sorry For My English

  • Like 1
Posted (edited)

what you mean "Champion Aura" any photo, any something to see it? :)

edit: lol just saw the config, what a fail :S

Edited by .Thug
  • 2 weeks later...
Posted

        if (Config.L2JMOD_CHAMPION_ENABLE && _activeChar.getLevel() > 60)
        {
            writeC(_activeChar.isChampion() ? 1 : 0);
        }
        else if(Config.L2JMOD_CHAMPION_ENABLE && _activeChar.getLevel() < 60)
        {
            writeC(_activeChar.isChampion() ? 2 : 0);
        }
        else
        {
        writeC(0);
        }

  • 2 years later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock