Jump to content

Recommended Posts

Posted (edited)

Hello,

 

I can make 5 free codes for Maxcheater community, just say it, codes need to be easy, because I don't have any good skills, but if you have idea and want it to your server, say here, I will try to make for FREE.

 

I'm using L2J_Server core, it is High Five client, but I can try to create for aCis/L2JFrozen.
 

Topic with done requests: http://www.maxcheaters.com/topic/188225-free-code-requests-done-anonymous-zone-other-stuff/

Edited by numl0ckas
Posted (edited)

I want just a think from you...

How i can to work this check?

(I want to put something in a item).

 

if (activeChar.isSagittarius())

{
 activeChar.sendPacket(SystemMessageId.bla_bla_bla);
return;
}

 

This check is just for example. What i must to put on L2PcInstance and on ClassId.java?

 

Thank a lot...

 

(if i open this question on help section, nobody will talk).

Edited by 'Baggos'
Posted (edited)

Hello, could make a mod to limit the territory wards? type, something that we can put to Aden Castle pick up the max 3 wards of another castle, and so on ... is very unbalance with 9 wards in a castle ...

 

 

Another tip is to make an area that the estrar your nickname change for letters and numbers, so no one would know who is who and all kill each other ...

Edited by kaiserxd
Posted

I want just a think from you...

How i can to work this check?

(I want to put something in a item).

 

if (activeChar.isSagittarius())

{

 activeChar.sendPacket(SystemMessageId.bla_bla_bla);

return;

}

 

This check is just for example. What i must to put on L2PcInstance and on ClassId.java?

 

Thank a lot...

 

(if i open this question on help section, nobody will talk).

final ClassId Sagi =ClassId.sagittarius;

if(player.getClassId().equals(Sagi))

 

then your code or item or anything you want

Posted (edited)

final ClassId Sagi =ClassId.sagittarius;

if(player.getClassId().equals(Sagi))

 

then your code or item or anything you want

Thank you very mutch for your answer..

But tell me... is this?

 

            final ClassId Sagi =ClassId.sagittarius;

 

            if(activeChar.getClassId().equals(Sagi))

            {

                activeChar.sendMessage("blablabla.");

            }

 

With if(player.getClassId().equals(Sagi)) i get error...

 

Edit: or need and this?

 

    public void useItem(final L2PlayableInstance playable, final L2ItemInstance item, L2PcInstance player)

 

 

 

public void useItem(final L2PlayableInstance playable, final L2ItemInstance item, L2PcInstance player)
    {
        if (Config.CUSTOM_ITEMS)
        {
            if (!(playable instanceof L2PcInstance))
                return;
            
            L2PcInstance activeChar = (L2PcInstance) playable;
            
            final ClassId Sagi =ClassId.sagittarius;

            if(player.getClassId().equals(Sagi))
            {
                activeChar.sendMessage("blablabls.");
            }

 

What is right?

Edited by 'Baggos'
Posted

Thank you very mutch for your answer..

But tell me... is this?

 

            final ClassId Sagi =ClassId.sagittarius;

 

            if(activeChar.getClassId().equals(Sagi))

            {

                activeChar.sendMessage("blablabla.");

            }

 

With if(player.getClassId().equals(Sagi)) i get error...

 

Edit: or need and this?

 

    public void useItem(final L2PlayableInstance playable, final L2ItemInstance item, L2PcInstance player)

 

public void useItem(final L2PlayableInstance playable, final L2ItemInstance item, L2PcInstance player)
    {
        if (Config.CUSTOM_ITEMS)
        {
            if (!(playable instanceof L2PcInstance))
                return;
            
            L2PcInstance activeChar = (L2PcInstance) playable;
            
            final ClassId Sagi =ClassId.sagittarius;

            if(player.getClassId().equals(Sagi))
            {
                activeChar.sendMessage("blablabls.");
            }

What is right?

lol make the player  activeChar and no errors. if(activeChar.getClassId().equals(Sagi)). i did not understand what you wanna do. maybe a check for sagi items for dagger? or something like this? 

Posted (edited)

what pack are you using?

 

lol make the player  activeChar and no errors. if(activeChar.getClassId().equals(Sagi)). i did not understand what you wanna do. maybe a check for sagi items for dagger? or something like this?

No no.. i don't change the player with activeChar.. Is graphic wrong.. I type the words, i do not do copy. :P

 

aCis... but i have give a try and on L2J Frozen... It's work only like that:

+ public void useItem(final L2PlayableInstance playable, final L2ItemInstance item, L2PcInstance player)
    {
        if (Config.CUSTOM_ITEMS)
        {
            if (!(playable instanceof L2PcInstance))
                return;
            
            L2PcInstance activeChar = (L2PcInstance) playable;
            
+            final ClassId Sagi =ClassId.sagittarius;

+            if(player.getClassId().equals(Sagi))
            {
                activeChar.sendMessage("blablabls.");
            }
Edited by 'Baggos'
Posted (edited)

i use it on acis

 

final ClassId Sagi =ClassId.sagittarius;

if(activeChar.getClassId().equals(Sagi))
{
 
} and no errors :S wtf? :S did you add the imports? :S
Edited by AbSoLuTePoWeR
Posted (edited)

@Baggos, use this:

		if(activeChar.getClassId() == ClassId.scavenger)
		{
			activeChar.sendMessage("blablabls.");
		}

@AbsolutePower, why does he need this ?
It's the same thing.

final ClassId Sagi =ClassId.sagittarius;
 

Make one Community Board for Interlude like PM Fun and with top clan/pvp/pk/online...

Already exists for higher chronicles , addapt it . :)

Edited by `iAndre
Posted

 

i use it on acis

 

final ClassId Sagi =ClassId.sagittarius;

if(activeChar.getClassId().equals(Sagi))
{
 
} and no errors :S wtf? :S did you add the imports? :S

 

hahahaa... i say, i don't have error. I fix it.

I only ask if will be work like that :P

 

i7KcBOr.png

Posted

 

@Baggos, use this:

		if(activeChar.getClassId() == ClassId.scavenger)
		{
			activeChar.sendMessage("blablabls.");
		}

@AbsolutePower, why does he need this ?

It's the same thing.

final ClassId Sagi =ClassId.sagittarius;
 

Already exists for higher chronicles , addapt it . :)

 

final ClassId Sagi =ClassId.sagittarius;

if(activeChar.getClassId().equals(Sagi))
{
 
}
he can put it as he want.  if(activeChar.getClassId().equals(Sagi)) or if(activeChar.getClassId() == Sagi) same shit in any case. or  if(activeChar.getClassId() == ClassId.sagittarius) same shit man.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




  • Posts

    • A New Chapter Begins We're Rebuilding – Join Our Staff Team After many years of activity, growth, and challenges, it’s finally time for our community to restructure and move forward. We’re ready to turn a new page and evolve into something greater — but we can’t do it without the help of passionate and committed people. That’s why we’re now opening up staff applications for those who want to actively shape the future of our community. If you have the motivation, time, and patience to contribute to something meaningful, this is your chance to step in and make a real impact. What We're Looking For We’re building a fresh and dedicated team of individuals who are ready to support and grow this project. Open roles include: Moderators – to keep the forum clean, safe, and organized Gaming Moderators – to help manage gaming boards (e.g., Lineage, GTA FiveM) Content Creators – to post updates, guides, and articles Community Managers – to engage users and drive activity Technical Staff – for development, backend, and server work We’re not focusing only on Lineage anymore. Our vision is expanding to new areas — including GTA FiveM and other multiplayer games you might have expertise in. If you have a good idea, a server plan, or something new to suggest — we’re open to it. Now’s the time to bring it forward. Requirements We’re looking for individuals who have: A history of activity on the forum (preferred) Available time to contribute consistently A sense of teamwork and responsibility A genuine interest in gaming and community building If you're interested, just send a private message to me or Celestine. (or just reply here) Tell us a few things about yourself and how you’d like to contribute. Let’s bring this community back to life. Let’s rebuild something great — together.   M M G A 
    • Lineage2Network - Interlude Reimagined   Embark on a revitalized journey through the classic Interlude era with Lineage2.Network. Our server is meticulously crafted by veteran players to deliver a seamless and engaging experience, blending the nostalgia of the Chaotic Chronicle with modern enhancements.     Server details   Chronicle: Interlude + Classic Rates: EXP x30 | Adena x10 | Drop x10 | Spoil x10     Server features   Daily Missions - complete special tasks for daily rewards Attendance Rewards - get rewards for online time Custom Events - TVT, DM, CTF NPC buffer duration - 2 hours   Mana Potions - restores 1000 MP, 10s cooldown Ring of Core additional stats: +1 STR Earring of Orfen additional stats: +1 INT Shadow Earring of Zaken - 7 days Shadow Ring of Queen Ant - 7 days   Max buff count - 24 (20 + 4 with Divine Inspiration) Noblesse, Heroic Valor, Flames of Invincibility and Celestial Shield don't take buff slot Reworked Cancel, Mage and Warrior Banes – removed buffs reappear after 30s Block Buffs - block all incoming buffs except from self/party Sweeper Festival added to Spoiler class   Subclass – retail or purchasable Noblesse – retail or purchasable up to Barakiel; collect 8 fragments for full staff 1st & 2nd class free, 3rd needs 700 Halisha Marks or is purchasable New Olympiad System: new stadiums with NPC buffer,  1 week period.     Key dates     Beta Launch: April 14, 2025 Official Launch: May 9, 2025     Check out full server details in our website And visit our discord   Join us and be part of community where classic gameplay meets innovative updates. Whether you're a solo adventurer or part of a formidable clan, Lineage2.Network offers a dynamic and balanced environment for all.  
  • Topics

×
×
  • Create New...