Hi all, I added this code to my project and even if player is lvl 1 and without sub he is getting nobless status. Could anyone help me? I want to give nobless status only for players who have active subclass and is level 75+ and send a message to let them know if they are under lvl 75 and dont have sub. Any help is welcome.
Edit: this code is inside l2raidbossinstance
if (player.isInParty())
{
if (getNpcId() == 25325) // barakielId = 25325;
{
for(L2PcInstance newNoble : player.getParty().getPartyMembers())
{
if (!player.isSubClassActive() || player.getLevel() >= 75 || player.isNoble())
{
newNoble.setNoble(true, true);
newNoble.sendMessage("You Are Now a Noble, You Are Granted With Noblesse Status, And Noblesse Skills.");
}
}
}
else
{
if (!player.isSubClassActive() || player.getLevel() < 75);
player.sendMessage("You don't have subclass level 75 or you are already nobless");
}
Use Navicat to import it as "backup". It will create the tables for you automatically, and you can then export the SQL structure and/or data if present.
this by far takes the prize for one of the dumbest max cheaters posts in history but thanks for the good laugh once agen proving "people" who use crypto have moar coins than brain LOL
with all due respect, to spend 7300usd in a totally closed system depending on them. you could have hired a programmer to develop a kernel driver signed and with all your requirements, I think it would have been much more economical and meet all your expectations.
there are clients of mine that use active anticheat, it is good, but you always depend on them that way.
Good luck.
@ERROR501, I’ve been waiting for the “big update” since last October, and at this point, it’s starting to feel like an empty promise.
You’re better off implementing your own minimum detection server-side instead of relying on AAC to fix their issues; despite what their website claims about blocking everything, it clearly falls short.
Question
ton3
Hi all, I added this code to my project and even if player is lvl 1 and without sub he is getting nobless status. Could anyone help me? I want to give nobless status only for players who have active subclass and is level 75+ and send a message to let them know if they are under lvl 75 and dont have sub. Any help is welcome.
Edit: this code is inside l2raidbossinstance
Edited by ton324 answers to this question
Recommended Posts