Jump to content
  • 0

Player Info Code


Question

Posted

Καλημερα παιδια, εχω το Παρακατω Κομμάτι code για ενα Npc με δικο του Instance:

 

if (player.getClan() != null)
{
html.replace("%Clan%", player.getClan().getName());
html.replace("%Alliance%", player.getClan().getAllyName());
}
else
{
html.replace("%Clan%", "<font color=FF0000>No</font>");
html.replace("%Alliance%", "<font color=FF0000>No</font>");
}

το πρόβλημα είναι πως αν δεν εισαι σε clan ειναι ολα κομπλε, αν μπεις σε clan Ομως και δεν εισαι σε ally δεν δουλευει το Npc... 

 

μπορει να βοηθησει κάποιος;;;;

 

 

8 answers to this question

Recommended Posts

  • 0
Posted (edited)

 

Δοκίμασε αυτό

if (player.getClan() != null)
{
html.replace("%Clan%", player.getClan().getName());
html.replace("%Alliance%", activeChar.getClan().getAllyId() == 0 ? "<font color=FF0000>No</font>" : activeChar.getClan().getAllyName());
}
else
{
html.replace("%Clan%", "<font color=FF0000>No</font>");
html.replace("%Alliance%", "<font color=FF0000>No</font>");
}

The null check is pointless, do the same style as you did with ally, erm.

html.replace("%Clan%", player.getClan() != null ? player.getClan().getName() : "<font color=FF0000>No</font>");
html.replace("%Alliance%", (player.getClan() != null && player.getClan().getAllyId() > 0) ? player.getClan().getAllyName() : "<font color=FF0000>No</font>");
Edited by SweeTs
  • 0
Posted (edited)

Δοκίμασε αυτό

 

Edit: Δες της SweeTs τον τελευταίο κώδικα

if (player.getClan() != null)
{
html.replace("%Clan%", player.getClan().getName());
html.replace("%Alliance%", activeChar.getClan().getAllyId() == 0 ? "<font color=FF0000>No</font>" : activeChar.getClan().getAllyName());
}
else
{
html.replace("%Clan%", "<font color=FF0000>No</font>");
html.replace("%Alliance%", "<font color=FF0000>No</font>");
}
Edited by ⏇Melron⏇℠Abs
  • 0
Posted (edited)

 

The null check is pointless, do the same style as you did with ally, erm.

html.replace("%Clan%", player.getClan() != null ? player.getClan().getName() : "<font color=FF0000>No</font>");
html.replace("%Alliance%", activeChar.getClan().getAllyId() > 0 ? activeChar.getClan().getAllyName() : "<font color=FF0000>No</font>");

Not exactly...

What about if the char havent clan? :D

npc will not work cause clan ...

Edited by ⏇Melron⏇℠Abs
  • 0
Posted (edited)

Ahh right my bad, now I see what you mean. Edited.

html.replace("%Clan%", player.getClan() != null ? player.getClan().getName() : "<font color=FF0000>No</font>");
html.replace("%Alliance%", (player.getClan() != null && player.getClan().getAllyId() > 0) ? player.getClan().getAllyName() : "<font color=FF0000>No</font>");
Edited by SweeTs
  • 0
Posted (edited)

Ahh right my bad, now I see what you mean. Edited.

:P yea

Edited by ⏇Melron⏇℠Abs
Guest
This topic is now closed to further replies.


  • Posts

    • L2Elixir – Patch 4 Is Live!   We’re working non-stop, day and night, to deliver the best possible quality and bring back what made L2Elixir special. This project is built with passion, not shortcuts — for the old-school players who remember, and the new ones who want to experience it properly. Thank you for being part of the journey. Together, we’re making L2Elixir great again ❤️ The legends never fade.    ⚙️ General Enabled Class Change service (same class type only) ALT + B → Services → Character Development Enabled Shift + Click on Treasure Chests Players can now identify real chests (Adena, scroll drops) and use Key / Unlock Event deaths now cancel only debuffs, All self buffs are preserved, fixes issues with Root and similar effects Bladedancer class can now log in even when Max Clients (2) is reached. Since an active Bladedancer is not available for every damage dealer and some players tried to abuse this via VPN or a second PC, this feature was added to keep things fair. protections applies, requires testing!    🎒 Items Crystallizing enchanted items now gives the correct increased crystal amount (retail-like behavior) Removed Agathion Seal Bracelet: Rudolph from Santa rewards (Gracia Final item) Added Dualsword Craft Stamp into Milestone Exchange list    🧙 Skills Fixed Banish Undead lethal chance Hot Springs Malaria and similar effects now level up faster while being attacked
    • thats new SEO level tricks you know nothing of noob - bottom line: exposed.
    • Warning: This guy is a big scammer, trying to sell everything, advertising for servers etc. That's his mail address evgesha.nrnr@gmail.com , stay away!   @Atom @Celestine
    • Warning: This guy is a big scammer, trying to sell everything, advertising for servers etc. That's his mail address evgesha.nrnr@gmail.com , stay away! @Celestine @Atom
  • 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