Jump to content

Recommended Posts

Posted


DP: L2jfrozen

Revision: 1118

 

 

=========================

Config.java

=========================

public static boolean ANNOUNCE_CASTLE_LORDS;

+ //Announces-PK-Dagger

+ public static boolean ANNOUNCE_PK_LOGIN;

+ //Announces-RANK-Dagger

+ public static boolean ANNOUNCE_PKPBEST_LOGIN;

+ public static boolean ANNOUNCE_PVPBEST_LOGIN;

+ public static boolean ANNOUNCE_PKMASTER_LOGIN;

+ public static boolean ANNOUNCE_PVPMASTER_LOGIN;

+ public static boolean ANNOUNCE_PKKING_LOGIN;

+ public static boolean ANNOUNCE_PVPKING_LOGIN;

+ public static boolean ANNOUNCE_PKGOD_LOGIN;

+ public static boolean ANNOUNCE_PVPKGOD_LOGIN;

+ //Announces-RANK-Dagger

 

 

 

ANNOUNCE_CASTLE_LORDS = Boolean.parseBoolean(otherSettings.getProperty("AnnounceCastleLords", "False"));

+ //Announces-RANK-Dagger

+ ANNOUNCE_PK_LOGIN = Boolean.parseBoolean(otherSettings.getProperty("AnnouncePkLogin", "False"));

+ ANNOUNCE_PKPBEST_LOGIN = Boolean.parseBoolean(otherSettings.getProperty("AnnouncePkBestLogin", "False"));

+ ANNOUNCE_PVPBEST_LOGIN = Boolean.parseBoolean(otherSettings.getProperty("AnnouncePvpBestLogin", "False"));

+ ANNOUNCE_PKMASTER_LOGIN = Boolean.parseBoolean(otherSettings.getProperty("AnnouncePkMasterLogin", "False"));

+ ANNOUNCE_PVPMASTER_LOGIN = Boolean.parseBoolean(otherSettings.getProperty("AnnouncePvpMasterLogin", "False"));

+ ANNOUNCE_PKKING_LOGIN = Boolean.parseBoolean(otherSettings.getProperty("AnnouncePkKingLogin", "False"));

+ ANNOUNCE_PVPKING_LOGIN = Boolean.parseBoolean(otherSettings.getProperty("AnnouncePvpKingLogin", "False"));

+ ANNOUNCE_PKGOD_LOGIN = Boolean.parseBoolean(otherSettings.getProperty("AnnouncePkGodLogin", "False"));

+ ANNOUNCE_PVPGOD_LOGIN = Boolean.parseBoolean(otherSettings.getProperty("AnnouncePvpGodLogin", "False"));

+ //Announces-RANK-Dagger

 

 

=========================

EnterWorld.java

=========================

if (Config.ANNOUNCE_CASTLE_LORDS)

notifyCastleOwner(activeChar);

 

 

 

+ //Announces-PK-Dagger

+ if (Config.ANNOUNCE_PK_LOGIN && activeChar.getKarma()>0)

+ {

+ Announcements.getInstance().gameAnnounceToAll(":Anuncios: El PK "+activeChar.getName()+" Acaba De Loguear!");

+ }

+ //Announces-RANK-PK-PVP-Dagger

+ if (Config.ANNOUNCE_PKPBEST_LOGIN && activeChar.getPkKills()>199)

+ if (Config.ANNOUNCE_PKPBEST_LOGIN && activeChar.getPkKills()<201)

+ {

+ Announcements.getInstance().gameAnnounceToAll(":Anuncios: The Best 200 PK-KILLS "+activeChar.getName()+" Acaba De Loguear!");

+ activeChar.sendMessage(":Anuncios: Ahora eres The Best PK-KILLS a los 400 PKs Evolucionas !!! A The Master PKs");

+ }

+

+ if (Config.ANNOUNCE_PVPBEST_LOGIN && activeChar.getPvpKills()>199)

+ if (Config.ANNOUNCE_PVPBEST_LOGIN && activeChar.getPvpKills()<201)

+ {

+ Announcements.getInstance().gameAnnounceToAll(":Anuncios: The Best 200 PVP-KILLS "+activeChar.getName()+" Acaba De Loguear!");

+ activeChar.sendMessage(":Anuncios: Ahora eres The Best PVP-KILLS a los 400 PVPs Evolucionas !!! A The Master PvPs");

+ }

+

+ if (Config.ANNOUNCE_PKMASTER_LOGIN && activeChar.getPkKills()>399)

+ if (Config.ANNOUNCE_PKMASTER_LOGIN && activeChar.getPkKills()<401)

+ {

+ Announcements.getInstance().gameAnnounceToAll(":Anuncios: The Master 400 PK-KILLS "+activeChar.getName()+" Acaba De Loguear!");

+ activeChar.sendMessage(":Anuncios: Ahora eres The Master PK-KILLS a los 800 PKs Evolucionas !!! A The King Off PKs");

+ }

+ if (Config.ANNOUNCE_PVPMASTER_LOGIN && activeChar.getPvpKills()>399)

+ if (Config.ANNOUNCE_PVPMASTER_LOGIN && activeChar.getPvpKills()<401)

+ {

+ Announcements.getInstance().gameAnnounceToAll(":Anuncios: The Best 400 PVP-KILLS "+activeChar.getName()+" Acaba De Loguear!");

+ activeChar.sendMessage(":Anuncios: Ahora eres The Master PVP-Kills a los 800 PVPs Evolucionas !!! A The King Off PvPs");

+ }

+

+ if (Config.ANNOUNCE_PKKING_LOGIN && activeChar.getPkKills()>799)

+ if (Config.ANNOUNCE_PKKING_LOGIN && activeChar.getPkKills()<801)

+ {

+ Announcements.getInstance().gameAnnounceToAll(":Anuncios: The King 800 PK-KILLS "+activeChar.getName()+" Acaba De Loguear!");

+ activeChar.sendMessage(":Anuncios: A los 1000 PVPs Evolucionas !!! A The God Off PvPs");

+ }

+ if (Config.ANNOUNCE_PVPKING_LOGIN && activeChar.getPvpKills()>799)

+ if (Config.ANNOUNCE_PVPKING_LOGIN && activeChar.getPvpKills()<801)

+ {

+ Announcements.getInstance().gameAnnounceToAll(":Anuncios: The King 800 PVP-KILLS "+activeChar.getName()+" Acaba De Loguear!");

+ activeChar.sendMessage(":Anuncios: A los 1000 PVPs Evolucionas !!! A The God Off PvPs");

+ }

+

+ if (Config.ANNOUNCE_PKGOD_LOGIN && activeChar.getPkKills()>999)

+ if (Config.ANNOUNCE_PKGOD_LOGIN && activeChar.getPkKills()<1001)

+ {

+ Announcements.getInstance().gameAnnounceToAll(":Anuncios: The God 1000 PK-KILLS "+activeChar.getName()+" Acaba De Loguear!");

+ activeChar.sendMessage(":Anuncios: Haz Alcanzado la cima del ranking sigue asi");

+ }

+ if (Config.ANNOUNCE_PVPGOD_LOGIN && activeChar.getPvpKills()>999)

+ if (Config.ANNOUNCE_PVPGOD_LOGIN && activeChar.getPvpKills()<1001)

+ {

+ Announcements.getInstance().gameAnnounceToAll(":Anuncios: The God 1000 PVP-KILLS "+activeChar.getName()+" Acaba De Loguear!");

+ activeChar.sendMessage(":Anuncios: Haz Alcanzado la cima del ranking sigue asi");

+ }

+ //Announces-RANK-PK-PVP-Dagger

 

if (Olympiad.getInstance().playerInStadia(activeChar))

{

 

=========================

gameserver\config\head\other.properties

=========================

 

# Announce castle lords on enter game. default = false

AnnounceCastleLords = True

+#

+# Announce Pk login on enter game. default = false

+AnnouncePkLogin = True

+#//Announces-RANK-Dagger

+AnnouncePkBestLogin = True

+AnnouncePvpBestLogin = True

+AnnouncePkMasterLogin = True

+AnnouncePvpMasterLogin = True

+AnnouncePkKingLogin = True

+AnnouncePvpKingLogin = True

+AnnouncePkGodLogin = True

+AnnouncePvpGodLogin = True

+#//Announces-RANK-Dagger

+#

 

Posted

Poorly coded, to stay kind with you. Do you really think it's necessary to get a config for each rank ? IF AT LEAST the config was the number to reach, but not even... It's an idiot boolean, and you still have to compile to edit the most important values (200, 400, 800, 1000).

if (Config.ANNOUNCE_PK_LOGIN)
{
    final int pkKills = activeChar.getPkKills();
    if (pkKills > Config.ANNOUNCE_GOD_NUMBER) // 1000
    {
         ....
    }
    else if (pkKills > Config.ANNOUNCE_KING_NUMBER) // 800
    {
         ....
    }
    else if (pkKills > Config.ANNOUNCE_MASTER_NUMBER) // 400
    {
         ....
    }
    else if (pkKills > Config.ANNOUNCE_BEST_NUMBER) // 200
    {
         ....
    }
}

That's a very basic form, if you got more cases (more than 10) you can eventually make it evolutive, using a for loop or a XML table.

Posted

Poorly coded, to stay kind with you. Do you really think it's necessary to get a config for each rank ? IF AT LEAST the config was the number to reach, but not even... It's an idiot boolean, and you still have to compile to edit the most important values (200, 400, 800, 1000).

if (Config.ANNOUNCE_PK_LOGIN)
{
    final int pkKills = activeChar.getPkKills();
    if (pkKills > Config.ANNOUNCE_GOD_NUMBER) // 1000
    {
         ....
    }
    else if (pkKills > Config.ANNOUNCE_KING_NUMBER) // 800
    {
         ....
    }
    else if (pkKills > Config.ANNOUNCE_MASTER_NUMBER) // 400
    {
         ....
    }
    else if (pkKills > Config.ANNOUNCE_BEST_NUMBER) // 200
    {
         ....
    }
}

That's a very basic form, if you got more cases (more than 10) you can eventually make it evolutive, using a for loop or a XML table.

 

 

Basic but it works right? thanks and if you want to improve the code you are in libertade to do

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


  • Posts

    • Hi everyone, A while ago, I needed to extract some L2 textures and found that acmi's L2Tool was a good way to do it. There might be other methods out there but I'm not aware of them, so I decided to fork this project and improve it to suit my needs. I built this using BellSoft Liberica JDK 17. Since modern Java versions no longer include JavaFX by default, I've made the app handle it automatically. You don't need any manual setup—just use the  run.bat  and it will automatically extract the required JavaFX modules on the first run. Key features of this fork: UI Overhaul: I've tweaked the interface to give it a cleaner look with Dark Mode and more detailed metadata for each texture. Export Formats: You can now extract textures in WEBP, PNG, and DDS. Individual or Batch Export: Flexible options to export a single selected texture or the entire package at once.     I'm leaving the link here in case it's useful to anyone!   Installation and Execution:     Clone the repository:   https://github.com/Ak4n1/l2tool cd l2tool          2.Build the project:   ./gradlew build              3. Run the application:         ./run.bat      Or simply double-click on run.bat.    
    • Wtb full account or items on l2 warland 
    • https://discord.gg/k53SZ4DM5z   Interlude Client L2Old Pride is a L2 Pride Interlude Based All functional skills (Not archer/mage server)   L2Old Pride Helper (Works like Woundrous Cubic) https://imgur.com/iYqmHQY Farm Zones: Cave of Trials and Elven Ruins (Chaotic) Olympiads: Every 15 days Various Cosmetic Items https://imgur.com/uoeU6Jw https://imgur.com/oCS2Zed PvP Zone: Gludin Village (No-Parties, Disguised) More than 100 new Skills https://imgur.com/6RaPsQV Max Level: 90 https://imgur.com/z4QVJKZ Gaining Xp by PVP https://imgur.com/LRqI31T Purchasable S-grade items +10 or +20 with random chance to enchant +5 Purchasable Custom Items Depends on Tier Mysterious Merchants https://imgur.com/2ZwWyPH Auto Enchant Via PvPing (with low chance) Custom Raid Bosses Siege Every Weekend (Aden, Rune, Giran) Autofarm / Drop Tracker https://imgur.com/Vz3rha6   RATES: • Start Level 80 • Max level 90  • EXP: 5000x • SP: 5000x • ADENA 6000x   ENCHANT: • Maximum enchant S Grade Items: +35. • Maximum enchant Unique/Epic Items: +25. • Maximum enchant Legendary Items: +18. • Maximum enchant Relic Items: +14. •Descriptions for rate at scrolls!   EVENTS: • TEAMS vs TEAMS • CAPTURE THE FLAG • DOMINATION • DEATH MATCH • DICE OF DEATH • CHAOTIC ZONE   OTHERS: Assistance system in pvps. Where support classes are enabled to receive pvp with a low chance, for supporting a party member during pvp. •  /sit to regen HP/MP/CP • Custom Shots Glows https://imgur.com/FLK0DmR • Achievements System • Daily Tasks System • Monthly Tasks System   CUSTOM ARMORS SETS Dread Armor/Titanium Armor Pride Armor Rykros Armor https://imgur.com/SPxoQp1   CUSTOM WEAPONS SETS Unique Weapons Pride Weapons Legendary Weapons Relic Weapons https://imgur.com/kOHNXhS   CUSTOM ACCESSORIES Standard Superior Legendary https://imgur.com/zPqNiiX   CUSTOM JEWELS/TATTOO Legendary Nightmarish https://imgur.com/gcqS28P There are many more features that you will only understand by playing and following. Beta testing server is currently open. Follow us on our discord and join our server to test it.
    • You shouldn't use rev 382, not sure why everyone keep using that.   I don't make changesets for fun, I don't make new revisions for nothing.   Follow the revisions.
  • 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