Jump to content

Question

Posted

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 !

Recommended Posts

  • 0
Posted (edited)

Yea, no work for me, thx all for attentions. everything i do, no work. I have lv 80 and item for destroy, Delevel Manager has telling me i no have lv 801.....

Edited by 0flee
  • 0
Posted (edited)

Try this 

player.removeExpAndSp(ExperienceData.getInstance().getExpForLevel(55), 0);
player.broadcastUserInfo();

Do you want it reduced to 55 or 30 levels?

Edited by TGSLineage2
  • 0
Posted (edited)
13 minutes ago, 0flee said:

I want after level 80 ( till level 85) player downlevel to 55.

assuming the method you are using is void type, you should ask at the beginning.
           

if (player.getLevel() <= 80) {
            player.sendMessage("You don't have the level necessary to perform this action")
            return;
            }

 

Edited by TGSLineage2
  • 0
Posted

I try this before, unsuccessfully. Btw, i find a voice command to do that except npc. But it is in Greek and it is for interlude, and i try to adapt L2j-Sunrise , but idk if i can.

Spoiler

 

 

  • 0
Posted

try this one

if (player.getLevel >= 80 && player.getLevel <= 85) // Only 80 .. 85 levels 
	if (player.destroyItemByItemId("delevel", 57, 1000, null, true)) // Check the destroy item
		{
			player.removeExpAndSp(player.getExp() - ExperienceData.getInstance().getExpForLevel(55), 0); //remove the xp
			player.addItem("delevel-reward", 7575, 1, null, true); // reward
		}

 

Note: If this will not work, then you should look before this code if something doesn't allow the conditions

  • 0
Posted (edited)

Yea, i did it on voice command. Now i must find that way to do delevel after lv 80. I try 

if (player.getLevel >= 80 && player.getLevel <= 85) // Only 80 .. 85 levels

and chat still sau i no have requirements to do delevel.

Edited by 0flee
  • 0
Posted
21 minutes ago, 0flee said:

Yea, i did it on voice command. Now i must find that way to do delevel after lv 80. I try 


if (player.getLevel >= 80 && player.getLevel <= 85) // Only 80 .. 85 levels

and chat still sau i no have requirements to do delevel.

maybe you should post exactly what message you are receiving. also, post the whole code here in code tags

  • 0
Posted (edited)

Ok, i have level 80 and i can;t do delevel. just on level 85. I will post here code.

 

http://dfrhtcF.png

 

Spoiler

public class DelevelCmd implements IVoicedCommandHandler
{
    private static final String[] VOICED_COMMANDS =
    {
        "delevel"
    };
    
    public static final int ZONE_PEACE = 2;
    
    /*
     * (non-Javadoc)
     * @see l2r.gameserver.handler.IVoicedCommandHandler#useVoicedCommand(String, l2r.gameserver.model.L2PcInstance), String)
     */
    @Override
    public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target)
    {
        if (command.startsWith("delevel"))
        {
            requestDelevel(activeChar);
        }
        return true;
    }
    
    public boolean requestDelevel(L2PcInstance activeChar)
    {
        Siege siege = SiegeManager.getInstance().getSiege(activeChar);
        
        // Check the activeChar's level.
        if (activeChar.getLevel() <= 80)
        {
            activeChar.sendMessage("You do not meet the level requirement for Delevel!");
            return false;
        }
        // Check activeChar if have SubClass
        else if (activeChar.isSubClassActive())
        {
            activeChar.sendMessage("Please switch to your Main Class before attempting Delevel.");
            return false;
        }
        // Check activeChar if in Peace Zone
        else if (!activeChar.isInsideZone(ZoneIdType.PEACE))
        {
            activeChar.sendMessage("You can only Delevel in peace zone.");
            return false;
        }
        // Check activeChar is death/fake death and movement disable
        else if (activeChar.isMovementDisabled() || activeChar.isAlikeDead())
        {
            activeChar.sendMessage("You can't Delevel on death mode");
            return false;
        }
        // Check if activeChar is in Siege
        else if ((siege != null) && siege.isInProgress())
        {
            activeChar.sendMessage("You are in siege, you can't Delevel.");
            return false;
        }
        // Check if activeChar is a Cursed Weapon owner
        else if (activeChar.isCursedWeaponEquipped())
        {
            activeChar.sendMessage("You can't Delevel! You are currently holding a cursed weapon.");
            return false;
        }
        // Check if activeChar is in Duel
        else if (activeChar.isInDuel())
        {
            activeChar.sendMessage("You can't Delevel You are in a duel!");
            return false;
        }
        // Check is in DimensionsRift
        else if (activeChar.isInParty() && activeChar.getParty().isInDimensionalRift())
        {
            activeChar.sendMessage("You can't Delevel! You are in the dimensional rift.");
            return false;
        }
        // Check to see if the activeChar is in an event
        else if (activeChar.isOnEvent())
        {
            activeChar.sendMessage("You can't Delevel! You are in event now.");
            return false;
        }
        // Check activeChar is in Olympiade
        else if (activeChar.isInOlympiadMode() || (activeChar.getOlympiadGameId() != -1))
        {
            activeChar.sendMessage("You can't Delevel! Your are fighting in Olympiad!");
            return false;
        }
        // Check activeChar is in observer mode
        else if (activeChar.inObserverMode())
        {
            activeChar.sendMessage("You can't Delevel in Observer mode!");
            return false;
        }
        // Check activeChar have karma/pk/pvp status
        if ((activeChar.getKarma() > 0) || (activeChar.getPvpFlag() > 0))
        {
            activeChar.sendMessage("player in PVP or with Karma can't use the Delevel command!");
            return false;
        }
        // Check if activeChar have no one in target
        else if (activeChar.getTarget() == null)
        {
            activeChar.sendMessage("You can't have any one in your target when Delevel only your self.");
            return false;
        }
        // If activeChar have not any of theis can delevel
        delevelstart(activeChar);
        return true;
    }
    
    public boolean delevelstart(L2PcInstance activeChar)
    {
        try
        {
            if (activeChar.destroyItemByItemId("Delevel", 3470, 10, null, true))
            {
                activeChar.sendMessage("You don't have enough Gold Bar.");
            }
            {
                activeChar.addItem("delevel-reward", 7575, 1, null, true);
                activeChar.sendMessage("Congratulation)" + activeChar.getName() + (" you are on level 55."));
            }
            activeChar.getCurrentHp();
            activeChar.getCurrentCp();
            int max_level = ExperienceData.getInstance().getMaxLevel();
            // Protections
            Integer returnToLevel = 55;
            if (returnToLevel < 1)
            {
                returnToLevel = 1;
            }
            if (returnToLevel > max_level)
            {
                returnToLevel = max_level;
            }
            // Resets character to first class.
            activeChar.broadcastUserInfo();
            final byte lvl = Byte.parseByte(returnToLevel + "");
            final long pXp = activeChar.getStat().getExp();
            final long tXp = ExperienceData.getInstance().getExpForLevel(lvl);
            if (pXp > tXp)
            {
                activeChar.getStat().removeExpAndSp(pXp - tXp, 0);
            }
            else if (pXp < tXp)
            {
                activeChar.getStat().addExpAndSp(tXp - pXp, 0);
            }
            
            // restore Hp-Mp-Cp
            activeChar.setCurrentCp(activeChar.getMaxRecoverableCp());
            activeChar.setCurrentMp(activeChar.getMaxRecoverableMp());
            activeChar.setCurrentHp(activeChar.getMaxRecoverableMp());
            activeChar.broadcastStatusUpdate();
            // Updates the activeChar's information in the Character Database.
            activeChar.store();
            // Update skill list
            activeChar.sendSkillList();
        }
        catch (Exception e)
        {
            e.printStackTrace();
        }
        return true;
    }
    
    @Override
    public String[] getVoicedCommandList()
    {
        return VOICED_COMMANDS;
    }
    
}

 

Edited by 0flee
  • 0
Posted (edited)

OK guys, i solve it. the problem was "=" from <=80. Now i leave it < 80 and it's working. thx again. Now i want to know how i can count them. it is player.getCountDelevel()?

Edited by 0flee

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

    • SOCNET SMM - is a new solution among all existing SMM panels. Our panel offers more than 6100+ promotion services in social networks such as Instagram, TikTok, Telegram, VKontakte, Reddit, YouTube, Twitter (X.com), Snapchat, Spotify and many, many others services + increasing the traffic of your website in search results. Our service cooperates with high-quality and proven service providers for promoting your profiles, posts, videos, publications and others on various social networks and your website in the search engine, as well as an additional way to earn income from your referrals.   Available payment methods: via PayPal, any cryptocurrency (+Binance Pay), Telegram Stars, Cash App, or any bank card.   ⭐ Our SMM-Panel for social media promotion ⭐ SOCNET.PRO ⭐ Our online store⭐  SOCNET.STORE ⭐ Our Telegram Stars bot ⭐ SOCNET.CC ⭐ Telegram store ⭐ SOCNET.SHOP ⭐ News: ⭐ ➡ Telegram channel ➡ WhatsApp channel ➡ Discord server ⭐ Contacts and support: ⭐ ➡ Telegram support ➡ WhatsApp support ➡ Discord support: socnet_support ➡ Email support: solomonbog@socnet.store     We have been operating for a long time and have gathered a huge list of reviews about our work! Our large list of positive and honest reviews is presented on our website!   ㅤㅤINSTAGRAM SERVICES   Instagram - Followers ~ Real ~ Refill  30D ~ 20k-100k/days  | Start From $5.324 per 1000 Instagram - Likes ~ 300k ~ 100k/days ~ Asian/Russian  | Start from $0.051 per 1000 Instagram - Views ( All Videos ) ~ 500k-1M/days ~ Instant | Start From $0.003  per 1000 Instagram - Comment ~ Custom ~ 1M ~ Refill  30D ~ 1k/Days ~ Asian/Turkish | Start from $4.875 per 1000 Instagram - Instagram - Story Views ~ All Stories ~ 150k ~ Refill  30D ~ 5k/days | Start from $0.148  per 1000 Instagram - Mentions ~ Custom List ~ 100K/Days ~ 0-12hrs  | Start from $2.763 per 1000   ㅤㅤTELEGRAM SERVICES   Telegram - Members ~ Max 100k ~ 100-1k/days ~ 0-1hrs | Start from $0.604 per 1000 Telegram - Premium Members + Views: From search l 7 day Premium l 7 day No Drop | Start from $7.216  per 1000 Telegram Bot Start - Instant - Speed : 10K/D - NoRefill  | Start from $0.297 per 1000 Telegram - Channel/Group Members ~ USA~ Max 70k ~ Refill 10D ~ 5k/days ~ Instant | Start from $1.788 per 1000 Telegram - Views ~ 1 POST ~ Instant  | Start from $0.005 per 1000 Telegram - Reactions | Start from $1.306 per 1000   ㅤㅤTWITTER (x.com) SERVICES   Twitter (x.com) - Likes ~ 200k ~ 10k/days ~ Asian | Start from $1.187 per 1000 Twitter (x.com) - Retweets ~ 200k ~ 10k/days ~ Asian | Start from $0.894 per 1000 Twitter (x.com) - Followers | Non-Drop | 30 Days Refill | Auto Refill Every 1 Hours | Start from $19.50 per 1000 Twitter (x.com) - Likes ~ 350k ~ 2k-10k/days ~ Mixed ~ | Start from $1.727 per 1000 Twitter (x.com) - Tweet Views ~ Max 100M ~ Refill 30D ~ 10M/days ~ Instant | Start from $0.032 per 1000 Twitter (x.com) - Tweet Impression ~ Max 1M ~ 1M/days ~ Instant | Start from $0.114 per 1000   ㅤㅤTHREADS   Threads - Likes ~ No Refill ~ 1k-10k/days ~ 0-1hrs  | Start from $1.045 per 1000 Threads - Followers ~ 500-1k/days ~ No Refill ~ Instant | Start from $2.438 per 1000 Threads - Reshare ~ 1k-5k/days ~ Refill 30D ~ 0-2hrs  | Start from $8.125  per 1000   ㅤㅤLIKEE   Likee - Follower ~ Max 30k ~ Real ~ Instant | Start from $10.112 per 1000 Likee - Likes ~ Max 30k ~ Real ~ Instant | Start from $3.787 per 1000 Likee - Shares ~ Max 30k ~ Real ~ Instant | Start from $2.649 per 1000 Likee - Comments ~ Max 30k ~ Real ~ Instant | Start from $11.473 per 1000 Likee - Views ~ Max 1m ~ Real ~ Instant | Start from $3.787 per 1000   ㅤㅤTIKTOK SERVICES   TikTok - Views ~ 10k-100k/days | Start from $0.033 per 1000 TikTok - Likes + Views ~ 30D ~ 3k-5k/days | Start from $0.203 per 1000 TikTok - Followers ~ 30D ~ 5k/days | Start from $2.474 per 1000 TikTok - Shares ~ 30D ~ 1M/days | Start from $0.163 per 1000 TikTok - Save ~ 30D ~ 3k-5k/days | Start from $0.163  per 1000   ㅤㅤFACEBOOK SERVICES   Facebook - Video Views ~ 5k-100k/days | Start from $0.11 per 1000 Facebook - Post Likes ~ 5k/days | Start from $2.548 per 1000 Facebook - Page Likes + Followers ~ 1k-10k/days ~ Instant | Start from $0.85 per 1000 Facebook - Share ~ 30D ~ 1k-5k/days | Start from $1.451 per 1000 Facebook - Post/Photo likes ~ 20k ~ LifeTime ~ 1k-50k/days ~ Instant | Start from 0.66$ per 1000 Facebook - Emoticons Post Likes ~ 1k-5k/Days ~ INSTANT | Start from $0.943 per 1000 Facebook Live Stream [ Watch 15 Minute ] | Start from $1.338 per 1000 Facebook - Video/Reels Views ~ 3 Sec ~ 500k-1m/days | Start from $0.11 per 1000   ㅤㅤREDDIT SERVICES   Reddit Channel Subscribers [Refill 30 Days] [Max: 100M] [Start Time: 0 -1 Hour] [Speed: 5M/Day] | Start from $2.08 per 1000 Reddit Shares | 500M | Refill: Lifetime | ULTRAFAST | 0-10 Min | 100M/Day | Start from $0.371 per 1000 Reddit Views | 500M | Refill: Lifetime | ULTRAFAST | 0-10 Min | 100M/Day | Start from $0.371 per 1000 Reddit View + Shares | 500M | Refill: Lifetime | ULTRAFAST | 0-10 Min | 100M/Day | Start from $0.741 per 1000 Reddit Link Shares | 500M | Refill: Lifetime | ULTRAFAST | 0-10 Min | 100M/Day | Start from $0.371 per 1000   ㅤㅤDISCORD SERVICES   Discord Offline Members | READ THE DESCRIPTION | ADD BOT | HQ | MAX 5K | Start from $1.58 per 1000 Discord Global Online Server Members | +2 Month Online | Max 15K | Start from $108.986 per 1000 Discord Server Boosts | For 1/3/6/12 Months | 1x-14x boosts | Start from 2.23$ per 1 boost Discord | Only Reactions | UHQ | Instant Start | Start from $5.695 per 1000   ㅤㅤLINKEDIN SERVICES   LinkedIn - Profile Followers ~ Max 1k ~ Refill 30D ~ 500-1k/days ~ 0-1Hrs | Start from $21.97 per 1000 LinkedIn - Page Followers ~ Max 1k ~ Refill 30D ~ 500-1k/days ~ 0-1Hrs | Start from $21.97 per 1000 Linkedin - Post Likes [+ Impressions ] ~ Refill 30D ~ 500/days ~ Instant | Start from $16.90 per 1000 Linkedin - Comments [ Random ] ~ Max 1k ~ No Refill ~ 30-50/days ~ 1-6hrs | Start from $28.73 per 1000 LinkedIn - Connection ~ Refill 30D ~ 500/days ~ Instant | Start from $28.73  per 1000   ㅤㅤYOUTUBE SERVICES   YouTube - Views ~ LifeTime ~ 500k-1M/Days | Start from $1.488 per 1000 YouTube - Likes ~ No Refill ~ 1k-5k/days ~ Instant  | Start from $0.13 per 1000 Youtube - Subscribers | MQ 5K | 250-500 Per Day R30 | Start from $78.00 per 1000 YouTube - Comments ~ Random ~ 100k ~ No Refill ~ 1k-5k/days ~ 0-3Hrs | Start from $19.013 per 1000 YouTube - Shorts Likes ~ 50k-60k/days ~ Refill 30D - Instant | Start from $1.30 per 1000 YouTube - Live Stream Reaction ~ Help Small Boosting Live ~ Instant  | Start from $0.192 per 1000     ㅤㅤWHATSAPP SERVICES   WhatsApp Channel Members [ Global-Real ] [ Speed: 500/day ] [ Start: 0-1hrs ] | Start from $15.647 per 1000 WhatsApp Group Members [ Mix Country ] [ Real Quality ] | Start from $30.893 per 1000 WhatsApp Channel Members [ Mix Country ] [ Real Quality ] | Start from $28.179 per 1000 Whatsapp Channel Emoji Reactions | Start from $6.797 per 1000 Whatsapp Channel Post Emoji Reactions | Random Mix |  Start from $3.861 per 1000   ㅤㅤTWITCH/KICK/TROVO SERVICES   Twitch - Followers ~ Max 1k ~ 1k/Days ~ Instant | Start from $0.183 per 1000 Twitch - Video Views ~ Max 20k ~ No Refill ~ 5k/days ~ 0-1Hrs  | Start from $1.073 per 1000 Twitch - Clip Views ~ Max 20k ~ No Refill ~ 5k/days ~ 0-1Hrs | Start from $0.163 per 1000 Twitch Live Views | 10 Minutes | Start from $0.597 per 1000 Trovo Live Followers [Max: 5K] [Offers] [1-2/Hour] [30 Day Refill]  | Start from $18.688 per 1000 Kick - Followers ~ 1.2k ~ No Refill ~ 1k/Days ~ INSTANT | Start from $4.55 per 1000 Kick - Live Viewers - Stable viewers HQ ~ Duration: 60 min | Start from $40.30 per 1000   ㅤㅤSOUNDCLOUD SERVICES   Soundcloud - Followers ~ 2.5k ~ Refill 30D ~ 100-500/days ~ Instant | Start from $7.132 per 1000 Soundcloud - Likes ~ 2.5k ~ Refill 30D ~ 100-500/days ~ Instant | Start from $7.132 per 1000 Soundcloud - Reposts ~ 2.5k ~ Refill 30D ~ 100-500/days ~ Instant | Start from $7.132 per 1000   ㅤㅤSPOTIFY SERVICES   Spotify - Followers ~ 292k ~ 20k/days | Start from $4.225 per 1000 Spotify - Saves ~ 400k ~ 20k/days | Start from $0.488 per 1000 Spotify - Monthly Listeners ~ LifeTime ~ 5k-20k/days | Start from $1.788  per 1000   ㅤㅤQUORA SERVICES   Quora.com - Upvote ~ Max 10k ~ Refill 30D  | Start from $8.125 per 1000 Quora.com - Shares ~ Max 10k ~ Refill 30D  | Start from $8.125 per 1000 Quora.com - Followers ~ Max 10k ~ Refill 30D  | Start from $8.45 per 1000   ㅤㅤWEBSITE TRAFFIC Worldwide / GEO Target - Custom Referral Traffic | Start from $1.284 per 1000 visits WorldWide Traffic from Google.com [Organic] [Custom Keywords] | Start from $0.244 per 1000 visits WorldWide Traffic from Google.com | Start from $0.244 per 1000 visits WorldWide Traffic from Facebook  | Start from $0.244 per 1000 visits WorldWide Traffic from Instagram | Start from $0.244 per 1000 visits WorldWide Traffic from Quora | Start from $0.244 per 1000 visits WorldWide Traffic from Reddit | Start from $0.244 per 1000 visits WorldWide Traffic from YouTube | Start from $0.244 per 1000 visits WorldWide Traffic from Twitter | Start from $0.244 per 1000 visits Attention: this text block does not represent our full product range; for more details, please visit the relevant links below!   If you have any questions, our support team is always ready to help!   Available payment methods: via PayPal, any cryptocurrency (+Binance Pay), Telegram Stars, Cash App, or any bank card.   ⭐ Our SMM-Panel for social media promotion ⭐ SOCNET.PRO ⭐ Our online store⭐  SOCNET.STORE ⭐ Our Telegram Stars bot ⭐ SOCNET.CC ⭐ Telegram store ⭐ SOCNET.SHOP   ⭐ News: ⭐ ➡ Telegram channel ➡ WhatsApp channel ➡ Discord server ⭐ Contacts and support: ⭐ ➡ Telegram support ➡ WhatsApp support ➡ Discord support: socnet_support ➡ Email support: solomonbog@socnet.store We have been operating for a long time and have gathered a huge list of reviews about our work! Our large list of positive and honest reviews is presented on our website! ⭐ Get a $1 bonus for your first test run ⭐ Just submit a support ticket with the subject “Get Trial Bonus” on our website. Go to SMM Panel (clickable) or contact our bot support ⭐ We invite you to COOPERATE and EARN with us ⭐   Want to sell your product or service in our stores and earn money?   Become our partner or propose mutually beneficial cooperation?   You can contact us via the CONTACTS provided in this topic.   FAQ and Refund Policy If you have any questions or issues, our fast support service is ready to respond to your requests! A refund for a service that does not fully meet the requirements or fails to meet the stated quality will only be issued if the product description specified a warranty and the period of good faith warranty. In other cases, a refund for the service will not be fully processed and will not be issued! By purchasing such a service, you automatically agree to our refund rules for undelivered services! We currently accept CRYPTOMUS, Payeer, NotPayments, Perfect Money, Russian and Ukrainian bank cards, AliPay, BinancePay, CryptoBot, credit bank cards, and PayPal. The $1 registration bonus can only be used for purchases and only once after the user's first registration in any of the socnet projects. We value every customer and provide replacements for invalid accounts via our contacts! p.s: The purchase bonus can be used in any SOCNET projects: online store or Telegram bots.
    • SOCNET SMM - is a new solution among all existing SMM panels. Our panel offers more than 6100+ promotion services in social networks such as Instagram, TikTok, Telegram, VKontakte, Reddit, YouTube, Twitter (X.com), Snapchat, Spotify and many, many others services + increasing the traffic of your website in search results. Our service cooperates with high-quality and proven service providers for promoting your profiles, posts, videos, publications and others on various social networks and your website in the search engine, as well as an additional way to earn income from your referrals.   Available payment methods: via PayPal, any cryptocurrency (+Binance Pay), Telegram Stars, Cash App, or any bank card.   ⭐ Our SMM-Panel for social media promotion ⭐ SOCNET.PRO ⭐ Our online store⭐  SOCNET.STORE ⭐ Our Telegram Stars bot ⭐ SOCNET.CC ⭐ Telegram store ⭐ SOCNET.SHOP ⭐ News: ⭐ ➡ Telegram channel ➡ WhatsApp channel ➡ Discord server ⭐ Contacts and support: ⭐ ➡ Telegram support ➡ WhatsApp support ➡ Discord support: socnet_support ➡ Email support: solomonbog@socnet.store     We have been operating for a long time and have gathered a huge list of reviews about our work! Our large list of positive and honest reviews is presented on our website!   ㅤㅤINSTAGRAM SERVICES   Instagram - Followers ~ Real ~ Refill  30D ~ 20k-100k/days  | Start From $5.324 per 1000 Instagram - Likes ~ 300k ~ 100k/days ~ Asian/Russian  | Start from $0.051 per 1000 Instagram - Views ( All Videos ) ~ 500k-1M/days ~ Instant | Start From $0.003  per 1000 Instagram - Comment ~ Custom ~ 1M ~ Refill  30D ~ 1k/Days ~ Asian/Turkish | Start from $4.875 per 1000 Instagram - Instagram - Story Views ~ All Stories ~ 150k ~ Refill  30D ~ 5k/days | Start from $0.148  per 1000 Instagram - Mentions ~ Custom List ~ 100K/Days ~ 0-12hrs  | Start from $2.763 per 1000   ㅤㅤTELEGRAM SERVICES   Telegram - Members ~ Max 100k ~ 100-1k/days ~ 0-1hrs | Start from $0.604 per 1000 Telegram - Premium Members + Views: From search l 7 day Premium l 7 day No Drop | Start from $7.216  per 1000 Telegram Bot Start - Instant - Speed : 10K/D - NoRefill  | Start from $0.297 per 1000 Telegram - Channel/Group Members ~ USA~ Max 70k ~ Refill 10D ~ 5k/days ~ Instant | Start from $1.788 per 1000 Telegram - Views ~ 1 POST ~ Instant  | Start from $0.005 per 1000 Telegram - Reactions | Start from $1.306 per 1000   ㅤㅤTWITTER (x.com) SERVICES   Twitter (x.com) - Likes ~ 200k ~ 10k/days ~ Asian | Start from $1.187 per 1000 Twitter (x.com) - Retweets ~ 200k ~ 10k/days ~ Asian | Start from $0.894 per 1000 Twitter (x.com) - Followers | Non-Drop | 30 Days Refill | Auto Refill Every 1 Hours | Start from $19.50 per 1000 Twitter (x.com) - Likes ~ 350k ~ 2k-10k/days ~ Mixed ~ | Start from $1.727 per 1000 Twitter (x.com) - Tweet Views ~ Max 100M ~ Refill 30D ~ 10M/days ~ Instant | Start from $0.032 per 1000 Twitter (x.com) - Tweet Impression ~ Max 1M ~ 1M/days ~ Instant | Start from $0.114 per 1000   ㅤㅤTHREADS   Threads - Likes ~ No Refill ~ 1k-10k/days ~ 0-1hrs  | Start from $1.045 per 1000 Threads - Followers ~ 500-1k/days ~ No Refill ~ Instant | Start from $2.438 per 1000 Threads - Reshare ~ 1k-5k/days ~ Refill 30D ~ 0-2hrs  | Start from $8.125  per 1000   ㅤㅤLIKEE   Likee - Follower ~ Max 30k ~ Real ~ Instant | Start from $10.112 per 1000 Likee - Likes ~ Max 30k ~ Real ~ Instant | Start from $3.787 per 1000 Likee - Shares ~ Max 30k ~ Real ~ Instant | Start from $2.649 per 1000 Likee - Comments ~ Max 30k ~ Real ~ Instant | Start from $11.473 per 1000 Likee - Views ~ Max 1m ~ Real ~ Instant | Start from $3.787 per 1000   ㅤㅤTIKTOK SERVICES   TikTok - Views ~ 10k-100k/days | Start from $0.033 per 1000 TikTok - Likes + Views ~ 30D ~ 3k-5k/days | Start from $0.203 per 1000 TikTok - Followers ~ 30D ~ 5k/days | Start from $2.474 per 1000 TikTok - Shares ~ 30D ~ 1M/days | Start from $0.163 per 1000 TikTok - Save ~ 30D ~ 3k-5k/days | Start from $0.163  per 1000   ㅤㅤFACEBOOK SERVICES   Facebook - Video Views ~ 5k-100k/days | Start from $0.11 per 1000 Facebook - Post Likes ~ 5k/days | Start from $2.548 per 1000 Facebook - Page Likes + Followers ~ 1k-10k/days ~ Instant | Start from $0.85 per 1000 Facebook - Share ~ 30D ~ 1k-5k/days | Start from $1.451 per 1000 Facebook - Post/Photo likes ~ 20k ~ LifeTime ~ 1k-50k/days ~ Instant | Start from 0.66$ per 1000 Facebook - Emoticons Post Likes ~ 1k-5k/Days ~ INSTANT | Start from $0.943 per 1000 Facebook Live Stream [ Watch 15 Minute ] | Start from $1.338 per 1000 Facebook - Video/Reels Views ~ 3 Sec ~ 500k-1m/days | Start from $0.11 per 1000   ㅤㅤREDDIT SERVICES   Reddit Channel Subscribers [Refill 30 Days] [Max: 100M] [Start Time: 0 -1 Hour] [Speed: 5M/Day] | Start from $2.08 per 1000 Reddit Shares | 500M | Refill: Lifetime | ULTRAFAST | 0-10 Min | 100M/Day | Start from $0.371 per 1000 Reddit Views | 500M | Refill: Lifetime | ULTRAFAST | 0-10 Min | 100M/Day | Start from $0.371 per 1000 Reddit View + Shares | 500M | Refill: Lifetime | ULTRAFAST | 0-10 Min | 100M/Day | Start from $0.741 per 1000 Reddit Link Shares | 500M | Refill: Lifetime | ULTRAFAST | 0-10 Min | 100M/Day | Start from $0.371 per 1000   ㅤㅤDISCORD SERVICES   Discord Offline Members | READ THE DESCRIPTION | ADD BOT | HQ | MAX 5K | Start from $1.58 per 1000 Discord Global Online Server Members | +2 Month Online | Max 15K | Start from $108.986 per 1000 Discord Server Boosts | For 1/3/6/12 Months | 1x-14x boosts | Start from 2.23$ per 1 boost Discord | Only Reactions | UHQ | Instant Start | Start from $5.695 per 1000   ㅤㅤLINKEDIN SERVICES   LinkedIn - Profile Followers ~ Max 1k ~ Refill 30D ~ 500-1k/days ~ 0-1Hrs | Start from $21.97 per 1000 LinkedIn - Page Followers ~ Max 1k ~ Refill 30D ~ 500-1k/days ~ 0-1Hrs | Start from $21.97 per 1000 Linkedin - Post Likes [+ Impressions ] ~ Refill 30D ~ 500/days ~ Instant | Start from $16.90 per 1000 Linkedin - Comments [ Random ] ~ Max 1k ~ No Refill ~ 30-50/days ~ 1-6hrs | Start from $28.73 per 1000 LinkedIn - Connection ~ Refill 30D ~ 500/days ~ Instant | Start from $28.73  per 1000   ㅤㅤYOUTUBE SERVICES   YouTube - Views ~ LifeTime ~ 500k-1M/Days | Start from $1.488 per 1000 YouTube - Likes ~ No Refill ~ 1k-5k/days ~ Instant  | Start from $0.13 per 1000 Youtube - Subscribers | MQ 5K | 250-500 Per Day R30 | Start from $78.00 per 1000 YouTube - Comments ~ Random ~ 100k ~ No Refill ~ 1k-5k/days ~ 0-3Hrs | Start from $19.013 per 1000 YouTube - Shorts Likes ~ 50k-60k/days ~ Refill 30D - Instant | Start from $1.30 per 1000 YouTube - Live Stream Reaction ~ Help Small Boosting Live ~ Instant  | Start from $0.192 per 1000     ㅤㅤWHATSAPP SERVICES   WhatsApp Channel Members [ Global-Real ] [ Speed: 500/day ] [ Start: 0-1hrs ] | Start from $15.647 per 1000 WhatsApp Group Members [ Mix Country ] [ Real Quality ] | Start from $30.893 per 1000 WhatsApp Channel Members [ Mix Country ] [ Real Quality ] | Start from $28.179 per 1000 Whatsapp Channel Emoji Reactions | Start from $6.797 per 1000 Whatsapp Channel Post Emoji Reactions | Random Mix |  Start from $3.861 per 1000   ㅤㅤTWITCH/KICK/TROVO SERVICES   Twitch - Followers ~ Max 1k ~ 1k/Days ~ Instant | Start from $0.183 per 1000 Twitch - Video Views ~ Max 20k ~ No Refill ~ 5k/days ~ 0-1Hrs  | Start from $1.073 per 1000 Twitch - Clip Views ~ Max 20k ~ No Refill ~ 5k/days ~ 0-1Hrs | Start from $0.163 per 1000 Twitch Live Views | 10 Minutes | Start from $0.597 per 1000 Trovo Live Followers [Max: 5K] [Offers] [1-2/Hour] [30 Day Refill]  | Start from $18.688 per 1000 Kick - Followers ~ 1.2k ~ No Refill ~ 1k/Days ~ INSTANT | Start from $4.55 per 1000 Kick - Live Viewers - Stable viewers HQ ~ Duration: 60 min | Start from $40.30 per 1000   ㅤㅤSOUNDCLOUD SERVICES   Soundcloud - Followers ~ 2.5k ~ Refill 30D ~ 100-500/days ~ Instant | Start from $7.132 per 1000 Soundcloud - Likes ~ 2.5k ~ Refill 30D ~ 100-500/days ~ Instant | Start from $7.132 per 1000 Soundcloud - Reposts ~ 2.5k ~ Refill 30D ~ 100-500/days ~ Instant | Start from $7.132 per 1000   ㅤㅤSPOTIFY SERVICES   Spotify - Followers ~ 292k ~ 20k/days | Start from $4.225 per 1000 Spotify - Saves ~ 400k ~ 20k/days | Start from $0.488 per 1000 Spotify - Monthly Listeners ~ LifeTime ~ 5k-20k/days | Start from $1.788  per 1000   ㅤㅤQUORA SERVICES   Quora.com - Upvote ~ Max 10k ~ Refill 30D  | Start from $8.125 per 1000 Quora.com - Shares ~ Max 10k ~ Refill 30D  | Start from $8.125 per 1000 Quora.com - Followers ~ Max 10k ~ Refill 30D  | Start from $8.45 per 1000   ㅤㅤWEBSITE TRAFFIC Worldwide / GEO Target - Custom Referral Traffic | Start from $1.284 per 1000 visits WorldWide Traffic from Google.com [Organic] [Custom Keywords] | Start from $0.244 per 1000 visits WorldWide Traffic from Google.com | Start from $0.244 per 1000 visits WorldWide Traffic from Facebook  | Start from $0.244 per 1000 visits WorldWide Traffic from Instagram | Start from $0.244 per 1000 visits WorldWide Traffic from Quora | Start from $0.244 per 1000 visits WorldWide Traffic from Reddit | Start from $0.244 per 1000 visits WorldWide Traffic from YouTube | Start from $0.244 per 1000 visits WorldWide Traffic from Twitter | Start from $0.244 per 1000 visits Attention: this text block does not represent our full product range; for more details, please visit the relevant links below!   If you have any questions, our support team is always ready to help!   Available payment methods: via PayPal, any cryptocurrency (+Binance Pay), Telegram Stars, Cash App, or any bank card.   ⭐ Our SMM-Panel for social media promotion ⭐ SOCNET.PRO ⭐ Our online store⭐  SOCNET.STORE ⭐ Our Telegram Stars bot ⭐ SOCNET.CC ⭐ Telegram store ⭐ SOCNET.SHOP   ⭐ News: ⭐ ➡ Telegram channel ➡ WhatsApp channel ➡ Discord server ⭐ Contacts and support: ⭐ ➡ Telegram support ➡ WhatsApp support ➡ Discord support: socnet_support ➡ Email support: solomonbog@socnet.store We have been operating for a long time and have gathered a huge list of reviews about our work! Our large list of positive and honest reviews is presented on our website! ⭐ Get a $1 bonus for your first test run ⭐ Just submit a support ticket with the subject “Get Trial Bonus” on our website. Go to SMM Panel (clickable) or contact our bot support ⭐ We invite you to COOPERATE and EARN with us ⭐   Want to sell your product or service in our stores and earn money?   Become our partner or propose mutually beneficial cooperation?   You can contact us via the CONTACTS provided in this topic.   FAQ and Refund Policy If you have any questions or issues, our fast support service is ready to respond to your requests! A refund for a service that does not fully meet the requirements or fails to meet the stated quality will only be issued if the product description specified a warranty and the period of good faith warranty. In other cases, a refund for the service will not be fully processed and will not be issued! By purchasing such a service, you automatically agree to our refund rules for undelivered services! We currently accept CRYPTOMUS, Payeer, NotPayments, Perfect Money, Russian and Ukrainian bank cards, AliPay, BinancePay, CryptoBot, credit bank cards, and PayPal. The $1 registration bonus can only be used for purchases and only once after the user's first registration in any of the socnet projects. We value every customer and provide replacements for invalid accounts via our contacts! p.s: The purchase bonus can be used in any SOCNET projects: online store or Telegram bots.
    • if is pvp server change type to raidboss 🙂 and check stats from xml
    • Hello community, I’d like to share an improved version of the L2smr editor for StaticMeshes, focused on solving some workflow issues I found in the original tool. CreditsThis project is based on the original acmi/L2smr repository https://github.com/acmi/L2smr , created by acmi, and I updated it to Java 17 with some additional features. Issues in the original L2smr Too many windows: each StaticMesh opened in a new one → cluttered desktop. No search: navigating through hundreds of StaticMeshActors was slow and tedious. Added improvements Flexible views Single Window Mode: reuse one window instead of opening new ones. Multiple Window Mode: still available for those who prefer having several views open simultaneously. Real-time Search Field Instant filtering as you type. Case-insensitive search. “Reset” button to quickly clear the search.     Installation and Execution: Clone the repository: git clone https://github.com/Jeep12/l2smr.git cd l2smr        2.Build the project:   ./gradlew build        3. Run the application:     ./run.bat      Or simply double-click on run.bat.     The run.bat script automatically extracts JavaFX from the included javafx-17.0.2.zip file in the javafx/ directory, sets up the required libraries, and launches the application. You don’t    need to install JavaFX separately.      Repository: https://github.com/Jeep12/l2smr     Maybe these features already existed in another version or fork, and they might not be very big changes, but since I didn’t know about them and found them necessary, I decided to          implement them myself and wanted to share them.      
    • no....Mobius L2Clientdat and L2FileEditor can do that...but still cant works with TaiWanese Grand Crusade ,especially Armorgrp.dat and Armorgrp-Classic.dat
  • 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