Jump to content
  • 0

Champion Aura


Question

Recommended Posts

  • 0
Posted

I did something and it's wrong. I can't see npc title anymore. What's wrong?

Config.Java

public static int L2JMOD_CHAMPION_ENABLE_AURA;


L2JMOD_CHAMPION_ENABLE_AURA = L2JModSettings.getInt("ChampionEnableAura", 0);
			if ((L2JMOD_CHAMPION_ENABLE_AURA != 0) && (L2JMOD_CHAMPION_ENABLE_AURA != 1) && (L2JMOD_CHAMPION_ENABLE_AURA != 2))
			{
				L2JMOD_CHAMPION_ENABLE_AURA = 0;
			}
			

AbstractNpcInfo.Java

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

Who can tell me what's wrong?

  • 0
Posted (edited)
On 9/30/2018 at 11:51 PM, InFocus said:

Lol :) Thank for this nice answer :) and what i can do? I get this `good` code from google :)

L2JMOD_CHAMPION_ENABLE_AURA = L2JModSettings.getInt("ChampionEnableAura", 0);

if ((L2JMOD_CHAMPION_ENABLE_AURA != 0) && (L2JMOD_CHAMPION_ENABLE_AURA != 1) && (L2JMOD_CHAMPION_ENABLE_AURA != 2))
{
	L2JMOD_CHAMPION_ENABLE_AURA = 0;
}

Where did you find this ? It's like SweetS wrote this code.

 

First of all why this variable is Integer and not boolean. 

Second why the !=0 and the !=1 and the !=2 since it only work as True or False. Why it has 3 stages?

 

All you need is a boolean variable like this:

 

public static boolean L2JMOD_CHAMPION_ENABLE_AURA;

L2JMOD_CHAMPION_ENABLE_AURA = L2JModSettings.getBoolean("ChampionEnableAura", false);

 

 

 

 

Edited by Kara`
  • 0
Posted (edited)
				writeC(_npc.isChampion() && Config.L2JMOD_CHAMPION_ENABLE && _npc.getLevel() >= 5 && _npc.getLevel() <= 61 ? 0x01 : _npc.isChampion() && Config.L2JMOD_CHAMPION_ENABLE && _npc.getLevel() >=62 && _npc.getLevel() <= 85 ? 0x02 : 0); // team circle around feet 1= Blue, 2 = red

this is like if mob is champion & is enable config & is lvl 5 + & 61 lvl - have blue aura

for 62lvl + 85 lvl - is red aura i dont know if you like this..

Edited by tazerman2
  • 0
Posted
3 hours ago, Kara` said:

L2JMOD_CHAMPION_ENABLE_AURA = L2JModSettings.getInt("ChampionEnableAura", 0);

if ((L2JMOD_CHAMPION_ENABLE_AURA != 0) && (L2JMOD_CHAMPION_ENABLE_AURA != 1) && (L2JMOD_CHAMPION_ENABLE_AURA != 2))
{
	L2JMOD_CHAMPION_ENABLE_AURA = 0;
}

Where did you find this ? It's like SweetS wrote this code.

 

First of all why this variable is Integer and not boolean. 

Second why the !=0 and the !=1 and the !=2 since it only work as True or False. Why it has 3 stages?

 

All you need is a boolean variable like this:

 


private final boolean L2JMOD_CHAMPION_ENABLE_AURA;

L2JMOD_CHAMPION_ENABLE_AURA = L2JModSettings.getBoolean("ChampionEnableAura", false);

 

 

 

 

http://1IVi67H.jpg

i can't leave it private final boolean

  • 0
Posted (edited)

You need 1 config for that. Not Boolean at all. You can turn integer into Boolean by checking for zero value.

Value 1 is the red

Value 2 is the blue.

Value 0 is false. 

 

The variable mustn't be final.

Must be public too to have access.

So public static int ...

Edited by melron
  • 0
Posted
12 hours ago, InFocus said:

http://1IVi67H.jpg

i can't leave it private final boolean

 

As far i read by others writeC(); can accept more than 2 and no just 0 - 1 so boolean cannot be used. In that case you need use a int.  Still the check you did is useless, use it like this:

 

public static int CHAMPION_AURA_TYPE;

CHAMPION_AURA_TYPE = npcs.getProperty("ChampionAuraType", 0);

and in writeC simply add your config.

 

 

  • 0
Posted
11 minutes ago, InFocus said:

Really? And for final what i can set? 

What? Config can't be final if that's what you mean. You have bunch of configs, look how they are done and do the same. Kara gave you ready code. God.

If you want only one color aka blue or red, boolean (true, false) config is ok.

  • 0
Posted

No replyes now? and i did this in writeC(); 

 

 

writeC(Config.CHAMPION_AURA_TYPE);
            {
                writeC(_npc.isChampion() && (_npc.getLevel() >= 5) && (_npc.getLevel() <= 61) ? 0x01 : _npc.isChampion() && (_npc.getLevel() >= 62) && (_npc.getLevel() <= 85) ? 0x02 : 0); // team circle around feet 1= Blue,
                                                                                                                                                                                            // 2 = red
            }
            

  • 0
Posted

We are not here 24/7 for you. It's not our fault your logic, deduction is equal to 0.

Dont you fcking see you are under L2JModSettings and not under npcs? That's why you have an error. Open your eyes and use your brain.

Its like, you have a ready good proper method, lines and you should copy paste them, yet you do something other and you wonder why you have an error. God.

 

And why there is a bracket after that line? You are facking things up by your own stupidity sorry to say that. Everything is correct, you add your 1 line code and you break everything... 

 

You should think what you are doing and think why things are not working, why it show error rather than spamming with silly mistakes. I see that you are not learning after all this time and you can't think logically. 

  • 0
Posted (edited)
24 minutes ago, SweeTs said:

We are not here 24/7 for you. It's not our fault your logic, deduction is equal to 0.

Dont you fcking see you are under L2JModSettings and not under npcs? That's why you have an error. Open your eyes and use your brain.

Its like, you have a ready good proper method, lines and you should copy paste them, yet you do something other and you wonder why you have an error. God.

 

And why there is a bracket after that line? You are facking things up by your own stupidity sorry to say that. Everything is correct, you add your 1 line code and you break everything... 

 

You should think what you are doing and think why things are not working, why it show error rather than spamming with silly mistakes. I see that you are not learning after all this time and you can't think logically. 

You are not far from me, With all these injuries. Whatever, i accept all this. Not for help in L2. Simply that i am. Well, I put that line 

here

http://BjxY9yD.jpgMaybe i must set NPC and no npcs.getProperty?

Edited by InFocus
Guest
This topic is now closed to further replies.



  • Posts

    • 📺 YouTube Boosting — for Streams, Videos & Channel Growth Reliable, fast, and with a huge variety. Perfect for bloggers, marketers, streamers, and content platforms!   We offer:  🔹 Views for videos (Worldwide, Social, Native Ads)  🔹 Livestream views (Reaction, Concurrent, Stable)  🔹 Shorts Views & Auto Views  🔹 Subscribers, Likes, Auto Likes, Comments  🔹 Shares by GEO (Worldwide, with referrer)  🔹 Comments & Comment Likes  🔹 Combo Packs: Likes + Views (60–90%)  🔹 SEO Boost (US Only, No refill) 📌 Ideal for promoting new videos, livestreams, Shorts, and building trust. 🎁 Get $1 bonus for your first test order:  Just submit a ticket with subject "Get Trial Bonus" on our website (Support)  ➡️ Open SMM Panel (clickable) or via Telegram bot support 🎁   How to order:  ➡️ SMM Panel: Click ✅  ➡️ SMM Panel inside our Telegram Bot: Click ✅ (Menu ➡️ SMM Panel)   Our digital goods store:  ➡️ Online Store: Click ✅  ➡️ Telegram Bot: Click ✅   Regular buyers get extra discounts and promo codes!   Support:  ➡️ Telegram: https://t.me/solomon_bog ✅  ➡️ Discord: https://discord.gg/y9AStFFsrh ✅  ➡️ WhatsApp: https://wa.me/79051904467 ✅  ➡️ ✉️ Email: solomonbog@socnet.store ✅   ➡️ Telegram Channel: https://t.me/accsforyou_shop ✅   You can also contact us to:  — Discuss wholesale purchases  — Propose partnerships (current partners: https://socnet.bgng.io/partners)  — Become a supplier 🧩 SocNet — Digital Goods & Premium Subscriptions Store ✅
    • Yes, but it also includes extra features like autofarm, autofarm interface button, dressme, many bug fixes from rusacis and premium geodata aswell.
    • discord mass dm service, discord bulk dm, discord dm service, discord mass messaging, discord dm bot, discord dm tool, discord mass dm bot, discord dm automation, discord bulk messaging, discord dm blast, discord mass dm tool, discord dm campaign, discord direct message service, discord dm software, discord mass dm advertising, discord dm marketing, discord bulk dm service, discord dm spammer, discord mass dm script, discord dm sender, discord automated dm, discord dm outreach, discord mass messaging service, discord dm promotion, discord bulk dm bot, discord dm advertising service, discord mass dm platform, discord dm marketing tool, discord bulk messaging bot, discord dm automation tool, discord mass dm sender, discord dm blast service, discord bulk dm tool, discord dm marketing service, discord mass dm system, discord dm advertising bot, discord bulk messaging service, discord dm promotion service, discord mass dm automation, discord dm outreach tool, discord bulk dm automation, discord dm marketing platform, discord mass dm software, discord dm advertising tool, discord bulk messaging platform, discord dm campaign service, discord mass dm marketing, discord dm blast tool, discord bulk dm marketing, discord dm automation service   discord mass dm service, discord bulk dm, discord dm service, discord mass messaging, discord dm bot, discord dm tool, discord mass dm bot, discord dm automation, discord bulk messaging, discord dm blast, discord mass dm tool, discord dm campaign, discord direct message service, discord dm software, discord mass dm advertising, discord dm marketing, discord bulk dm service, discord dm spammer, discord mass dm script, discord dm sender, discord automated dm, discord dm outreach, discord mass messaging service, discord dm promotion, discord bulk dm bot, discord dm advertising service, discord mass dm platform, discord dm marketing tool, discord bulk messaging bot, discord dm automation tool, discord mass dm sender, discord dm blast service, discord bulk dm tool, discord dm marketing service, discord mass dm system, discord dm advertising bot, discord bulk messaging service, discord dm promotion service, discord mass dm automation, discord dm outreach tool, discord bulk dm automation, discord dm marketing platform, discord mass dm software, discord dm advertising tool, discord bulk messaging platform, discord dm campaign service, discord mass dm marketing, discord dm blast tool, discord bulk dm marketing, discord dm automation service  
    • buy discord accounts, discord accounts for sale, buy discord accounts bulk, cheap discord accounts, aged discord accounts, discord account marketplace, buy aged discord accounts, discord accounts cheap, wholesale discord accounts, buy bulk discord accounts, discord account shop, verified discord accounts, discord pva accounts, discord accounts online, phone verified discord accounts, email verified discord accounts, discord account vendor, discord accounts wholesale, buy old discord accounts, discord account supplier, fresh discord accounts, discord account store, discord account service, buy discord account online, discord accounts bulk buy, discord account seller, discord accounts package, discord account bundle, premium discord accounts, discord account provider, discord accounts instant delivery, discord accounts fast delivery, discord account generator, discord account creator, multiple discord accounts, discord accounts ready, discord accounts quality, discord account dealer, buy discord tokens, discord early supporter accounts, discord nitro accounts for sale, discord 2015 accounts, discord 2016 accounts, discord accounts with badges, discord server accounts, buy discord accounts secure, discord accounts reliable, discord account trading, discord accounts inventory, discord account collection, discord accounts stock  
    • Buying & Selling WOW Gold
  • Topics

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