Jump to content
  • 0

Delevel


0flee

Question

How i can make Delevel Manager With request item for delevel + reward for delevel?

Was something with L2ItemInstance, but i don;t know how.  

I want to take from players 1 kk adena and give 1 apiga. Thank you !

Link to comment
Share on other sites

Recommended Posts

  • 0

Do you want do it as command or npc?

You want the level to go down by 1 or more than 1 or the player to specify how much he wants to go down

Edited by TGSLineage2
Link to comment
Share on other sites

  • 0

I guess it would be something like that:

if(activeChar.getInventory().getAdena() >= 1000000){
                    activeChar.getInventory().destroyItemByItemId("Delevel manager", 57, 1000000, activeChar, activeChar);
                    activeChar.getInventory().addItem("Delevel manager", itemApigaId, itemApigaAmount, activeChar, activeChar);
                    activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.EARNED_S2_S1_S).addItemName(itemApigaId).addInt(itemApigaAmount));
                    activeChar.sendPacket(new ItemList(activeChar, true));
                }else{
                    activeChar.sendMessage("You dont have enough Adena");
                }

 

That you must put in the method where you make the delevel and include the code of the delevel inside the condition adena> 1kk

Edited by TGSLineage2
Link to comment
Share on other sites

  • 0

                    *UPDATE*

 

No work, i don;t know how to fix this:

- Player when have lv 85 to perform delevel;

- Item request for delevel;

- Item reward after delevel;

- Exp from level 85 - 55 decrease;

L2j-Sunrise. Thank you

 

Link to comment
Share on other sites

  • 0
4 minutes ago, 0flee said:

                    *UPDATE*

 

No work, i don;t know how to fix this:

- Player when have lv 85 to perform delevel;

- Item request for delevel;

- Item reward after delevel;

- Exp from level 85 - 55 decrease;

L2j-Sunrise. Thank you

 

I have a question, did it work or did it not work?

Link to comment
Share on other sites

  • 0

Also, i have a code, but i don;t want to be this and i want to edit. 

Spoiler

package ai.sunriseNpc.DelevelManager;

import l2r.gameserver.data.xml.impl.ExperienceData;
import l2r.gameserver.data.xml.impl.ItemData;
import l2r.gameserver.model.actor.L2Npc;
import l2r.gameserver.model.actor.instance.L2PcInstance;
import l2r.gameserver.network.SystemMessageId;
import l2r.gameserver.network.serverpackets.NpcHtmlMessage;

import gr.sr.configsEngine.configs.impl.CustomNpcsConfigs;

import ai.npc.AbstractNpcAI;

/**
 * @author L2jSunrise Team
 * @Website www.l2jsunrise.com
 */
public class DelevelManager extends AbstractNpcAI
{
    private static final int NPC = CustomNpcsConfigs.DELEVEL_NPC_ID;
    private static final int ITEM_ID = CustomNpcsConfigs.DELEVEL_ITEM_ID;
    private static final int ITEM_COUNT_PER_LEVEL = CustomNpcsConfigs.DELEVEL_ITEM_AMOUNT;
    private static final boolean DYNAMIC_PRICES = CustomNpcsConfigs.DELEVEL_DYNAMIC_PRICE;
    private static final int MINLVL = CustomNpcsConfigs.DELEVEL_REQUIRED_LEVEL;
    
    private int getDelevelPrice(final L2PcInstance player)
    {
        return DYNAMIC_PRICES ? ITEM_COUNT_PER_LEVEL * player.getLevel() : ITEM_COUNT_PER_LEVEL;
    }
    
    public DelevelManager()
    {
        super(DelevelManager.class.getSimpleName(), "ai/sunriseNpc");
        addStartNpc(NPC);
        addFirstTalkId(NPC);
        addTalkId(NPC);
    }
    
    @Override
    public String onAdvEvent(final String event, final L2Npc npc, final L2PcInstance player)
    {
        if (!CustomNpcsConfigs.ENABLE_DELEVEL_MANAGER)
        {
            player.sendMessage("Delevel manager npc is disabled by admin");
            sendMainHtmlWindow(player, npc);
            return "";
        }
        
        if (event.equalsIgnoreCase("level"))
        {
            if (player.getLevel() <= MINLVL)
            {
                player.sendMessage("Your level is too low to use this function, you must be at least " + MINLVL + 1 + " level.");
                sendMainHtmlWindow(player, npc);
                return "";
            }
            
            if (player.isInCombat())
            {
                player.sendMessage("Cannot use while in combat.");
                sendMainHtmlWindow(player, npc);
                return "";
            }
            
            if (player.getKarma() > 0)
            {
                player.sendMessage("Cannot use while hava karma.");
                sendMainHtmlWindow(player, npc);
                return "";
            }
            
            if (player.isEnchanting())
            {
                player.sendMessage("Cannot use while Enchanting.");
                sendMainHtmlWindow(player, npc);
                return "";
            }
            
            if (player.isAlikeDead())
            {
                player.sendMessage("Cannot use while Dead or Fake Death.");
                sendMainHtmlWindow(player, npc);
                return "";
            }
            
            if (player.destroyItemByItemId("Delevel", ITEM_ID, getDelevelPrice(player), player, true))
            {
                player.setExp(player.getStat().getExpForLevel(player.getLevel()));
                // sets exp to 0%, if you don't like people abusing this by
                // deleveling at 99% exp, comment the previous line
                player.removeExpAndSp(player.getExp() - ExperienceData.getInstance().getExpForLevel(player.getLevel() - 1), 0);
                player.rewardSkills();
                player.sendMessage("Your level has been decreased.");
            }
            else
            {
                player.sendPacket(SystemMessageId.INCORRECT_ITEM_COUNT);
            }
            
            sendMainHtmlWindow(player, npc);
            return "";
        }
        return "";
    }
    
    @Override
    public String onFirstTalk(final L2Npc npc, final L2PcInstance player)
    {
        sendMainHtmlWindow(player, npc);
        return "";
    }
    
    private void sendMainHtmlWindow(L2PcInstance player, L2Npc npc)
    {
        final NpcHtmlMessage html = getHtmlPacket(player, npc, "main.htm");
        html.replace("%MINLVL%", String.valueOf(MINLVL + 1));
        html.replace("%PLAYER%", player.getName());
        html.replace("%DELEVEL_PRICE%", String.valueOf(getDelevelPrice(player)));
        html.replace("%ITEM_NAME%", ItemData.getInstance().getTemplate(ITEM_ID).getName());
        
        player.sendPacket(html);
    }
    
    private NpcHtmlMessage getHtmlPacket(L2PcInstance player, L2Npc npc, String htmlFile)
    {
        final NpcHtmlMessage packet = new NpcHtmlMessage(npc.getObjectId());
        packet.setHtml(getHtm(player.getHtmlPrefix(), htmlFile));
        return packet;
    }
}
 

 

Link to comment
Share on other sites

  • 0
if (activeChar.getInventory().getAdena() >= 1000000) {
            activeChar.getInventory().destroyItemByItemId("Delevel manager", 57, 1000000, activeChar, activeChar);
            activeChar.getInventory().addItem ("Delevel manager", itemApigaId, itemApigaAmount, activeChar, activeChar);
            activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.EARNED_S2_S1_S).addItemName(itemApigaId).addInt(itemApigaAmount));
            activeChar.sendPacket(new ItemList(activeChar, true));
        } else {
            activeChar.sendMessage("You don't have enought Adena");
        }

Just as this does not give me errors in the acis, I would only have to replace itemApigaId by the identification of that item and itemApigaAmount by the quantity.

Edited by TGSLineage2
Link to comment
Share on other sites

  • 0

The answer is on the question.

Since i dont have your sources and i cant know the name of your methods, try to follow the next steps

 

First of all, get the line where the admin set level in a player instance and see how the delevel works

for example

player.removeExpAndSp(xp,sp);

then , if your destroyitem method returns boolean, check it without even check the item count. 

for example

player.destoryItemByItemId("delevel",57,1000,null,true)

the boolean 'true' should inform the player if the item couldn't be destroyed. By doing that, you dont even need to send new message to that player about incorrect item count.

 

then, add your reward

for example

player.addItem("delevel-reward",7575,1,null,true)

 

finally, a complete code should be like that:

if (player.destroyItemByItemId("delevel",57,1000,null,true)
{
	player.removeExpAndSp(xp,sp);
	player.addItem("delevel-reward",7575,1,null,true);
}

 

Edited by melron
Link to comment
Share on other sites

  • 0
12 minutes ago, melron said:

The answer is on the question.

Since i dont have your sources and i cant know the name of your methods, try to follow the next steps

 

First of all, get the line where the admin set level in a player instance and see how the delevel works

for example


player.removeExpAndSp(xp,sp);

then , if your destroyitem method returns boolean, check it without even check the item count. 

for example


player.destoryItemByItemId("delevel",57,1000,null,true)

the boolean 'true' should inform the player if the item couldn't be destroyed. By doing that, you dont even need to send new message to that player about incorrect item count.

 

then, add your reward

for example


player.addItem("delevel-reward",7575,1,null,true)

 

finally, a complete code should be like that:


if (player.destroyItemByItemId("delevel",57,1000,null,true)
{
	player.removeExpAndSp(xp,sp);
	player.addItem("delevel-reward",7575,1,null,true);
}

 

Well, thank you @melron for your effort to write here.

btu is a bit hard to understand (for me) how it;s work that xp, sp to decrease. Cuz i want just XP to decrease, not sp. i don;t know numbers for level 55.

Link to comment
Share on other sites

  • 0
14 minutes ago, melron said:

The answer is on the question.

Since i dont have your sources and i cant know the name of your methods, try to follow the next steps

 

First of all, get the line where the admin set level in a player instance and see how the delevel works

for example


player.removeExpAndSp(xp,sp);

then , if your destroyitem method returns boolean, check it without even check the item count. 

for example


player.destoryItemByItemId("delevel",57,1000,null,true)

the boolean 'true' should inform the player if the item couldn't be destroyed. By doing that, you dont even need to send new message to that player about incorrect item count.

 

then, add your reward

for example


player.addItem("delevel-reward",7575,1,null,true)

 

finally, a complete code should be like that:


if (player.destroyItemByItemId("delevel",57,1000,null,true)
{
	player.removeExpAndSp(xp,sp);
	player.addItem("delevel-reward",7575,1,null,true);
}

 

Well it seems that if it is better coded.

Link to comment
Share on other sites

  • 0

I have complete with my code and this is final code, idk if it's works cuz i compile again and replace core.

Spoiler

if (player.destroyItemByItemId("delevel", 57, 1000, null, true))
            {
                player.removeExpAndSp(player.getExp() - ExperienceData.getInstance().getExpForLevel(player.getLevel() - 1), 0);
                player.addItem("delevel-reward", 7575, 1, null, true);
            }

Also, i do not understand to explain this line and what he do exactly

 

 

ExperienceData.getInstance().getExpForLevel(player.getLevel() - 1), 0);

Edited by 0flee
Link to comment
Share on other sites

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
Answer this question...

×   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

    • Welcome to my store :  https://topestore.mysellix.io/fr/ 2015-2022 Aged Discord Account 2015 Discord Account : 50.99 $ 2016 Discord Account : 10$ 2017 Discord Account :3.99 $ 2018 Discord Account : 3.50$ 2019 Discord Account : 2.70 $ 2020 Discord Account :1.50$ 2021 Discord Account :0.99$ 2022 Discord Account :0.70$ Warranty :Lifetime Payment Methods : Crypto/ PayPal Contact Me On Discord Or Telegram Discord : @ultrasstore11 Telegram : https://t.me/ultrastore1 Welcome to my store :  https://topestore.mysellix.io/fr/ 2015-2022 Aged Discord Account 2015 Discord Account : 50.99 $ 2016 Discord Account : 10$ 2017 Discord Account :3.99 $ 2018 Discord Account : 3.50$ 2019 Discord Account : 2.70 $ 2020 Discord Account :1.50$ 2021 Discord Account :0.99$ 2022 Discord Account :0.70$ Warranty :Lifetime Payment Methods : Crypto/ PayPal Contact Me On Discord Or Telegram Discord : @ultrasstore11
    • L2 ArenaWar: Low Rate PvP Server with Free Buffs & Autofarm [PVP]⚔️ [Free]🆓 Classic Interlude with  3x XP rates! Free starter pack(no grade) to kickstart your adventure! Autofarm for convenient grinding! Free buffs to keep you fighting fit! (2 job buffs) No experience loss on death! (Except with Karma) Clear Karma system to keep things fair! ⚖️ Active community of 800-1k players! Join our Discord to learn more! >> Discord <<     Server website: https://l2arenawar.com/en/    
    • This is dedication! 2 years working on a problem. Congratulations!
    • You indeed have to save player position over Enterworld to properly clean it up later (if you don't, even trying to delete packet content would eventually keep it up), that's what we do with debug packet (which is a reusable Map of ExServerPrimitive packets) on aCis.   It doesn't solve the FPS stuttering - more you draw/delete lines, more your client becomes laggy. It's like if client wasn't deleting drawn points/lines properly, but instead simply hide them and redrawn content above.   If you got a solution, I would happy to integrate it.   You should check aCis#Player _debug packet integration, it allows very big amount of lines/points to be drawn, it is also reusable.   https://gitlab.com/Tryskell/acis_public/-/blob/master/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/Player.java?ref_type=heads https://gitlab.com/Tryskell/acis_public/-/blob/master/aCis_gameserver/java/net/sf/l2j/gameserver/network/clientpackets/EnterWorld.java?ref_type=heads  
    • we sell website templates, make websites to order. Great selection at very good prices. My contacts discord : advert1231 telegram : https://t.me/ggwpins  
  • Topics

×
×
  • Create New...