Jump to content
  • 0

Modify Relax Skill Id 226


Question

Posted (edited)

Hi,

 

I would like to modify Relax Skill ID226 to regenerate MP as well as HP. I did the XML part but need to modify handler for that skill

 

It turns off when HP is full but I need the same for MP. So stop the effect when MP and HP is full

 

Furthermore, I would like that skill to work out-of-combat only. I can't find a condition for XML side so I guess it must be done inside the handler itself.

 

This is for L2J High Five. Thanks

/*
 * Copyright (C) 2004-2013 L2J DataPack
 * 
 * This file is part of L2J DataPack.
 * 
 * L2J DataPack is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * L2J DataPack is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
package handlers.effecthandlers;

import l2r.gameserver.enums.CtrlIntention;
import l2r.gameserver.model.effects.EffectFlag;
import l2r.gameserver.model.effects.EffectTemplate;
import l2r.gameserver.model.effects.L2Effect;
import l2r.gameserver.model.effects.L2EffectType;
import l2r.gameserver.model.stats.Env;
import l2r.gameserver.network.SystemMessageId;

public class Relax extends L2Effect
{
	public Relax(Env env, EffectTemplate template)
	{
		super(env, template);
	}
	
	@Override
	public L2EffectType getEffectType()
	{
		return L2EffectType.RELAXING;
	}
	
	@Override
	public boolean onStart()
	{
		if (getEffected().isPlayer())
		{
			getEffected().getActingPlayer().sitDown(false);
		}
		else
		{
			getEffected().getAI().setIntention(CtrlIntention.AI_INTENTION_REST);
		}
		return super.onStart();
	}
	
	@Override
	public boolean onActionTime()
	{
		if (getEffected().isDead())
		{
			return false;
		}
		
		if (getEffected().isPlayer())
		{
			if (!getEffected().getActingPlayer().isSitting())
			{
				return false;
			}
		}
		
		if ((getEffected().getCurrentHp() + 1) > getEffected().getMaxRecoverableHp())
		{
			if (getSkill().isToggle())
			{
				getEffected().sendPacket(SystemMessageId.SKILL_DEACTIVATED_HP_FULL);
				return false;
			}
		}
		
		double manaDam = calc();
		
		if (manaDam > getEffected().getCurrentMp())
		{
			if (getSkill().isToggle())
			{
				getEffected().sendPacket(SystemMessageId.SKILL_REMOVED_DUE_LACK_MP);
				return false;
			}
		}
		
		getEffected().reduceCurrentMp(manaDam);
		return true;
	}
	
	@Override
	public int getEffectFlags()
	{
		return EffectFlag.RELAXING.getMask();
	}
}

Edited by Sybar

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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

    • Our website: MobileProxy.Space Telegram channel: Mobileproxy.space - mobile proxies Promo code for a 20% discount: fur-1AB-zyE-4ur
    • If you’re scraping SERPs, running rank trackers, or managing multiple ad accounts, a reliable residential proxy isn’t optional—it’s essential. After testing 7 providers for 3 months, here’s the honest breakdown for SEO/SEM: 🥇 BrightData – Best overall. Massive pool (72M+ IPs), pay-as-you-go, and integrates with Scrapy/Selenium. Expensive, but zero blocks on Google. 🥈 MoMoProxy – Best emerging contender. 50M+ real residential IPs covering 150+ countries. Excellent success rate on Google, Bing, and Yahoo. Clean IP reputation, low CAPTCHA rates, and surprisingly competitive pricing. Great for rank tracking and ad verification. 🥉 IPRoyal – Best value. Genuine P2P residential IPs at nearly half the cost. Low failure rate on Bing Ads & Google Maps. Oxylabs – Enterprise choice. Ideal for large-scale SEM (ad verification, auction insights). Overkill for solo SEOs. Smartproxy is solid for local rank tracking. Soax excels at CAPTCHA-heavy sites. Pro tip: Avoid “unlimited bandwidth” deals. Start with a small test balance.   For most SEOs, MoMoProxy (price-to-performance) + BrightData (unmatched scale) is the new winning combo.
    • Looking for high-performance proxies without breaking the bank? 💸 Stop overpaying for your proxy traffic! Welcome to Novproxy.com, your ultimate solution for premium, unbanable, and ultra-fast residential proxies! Whether you are doing web scraping, multi-accounting, gaming, or SEO monitoring, Novproxy provides the highest quality IPs at the market's lowest price. 👉 Get Started Now: https://novproxy.com?kwd=tt-max ⚡ Why Choose Novproxy? 💰 Unbeatable Pricing: Starting from just 0.5$/GB ! No hidden fees. 🌍 Global Coverage: Access to over 80,000,000+ active residential pools across 190+ countries & cities. ⚡ Lightning Fast & Stable: 99.9% Up-time with rotating or sticky sessions (custom times available). 🔒 100% Anonymous & Secure: Pure ISP residential IPs that look like real users. Easily bypass advanced anti-bot systems. 🛠️ User-Friendly Dashboard: Generate proxy lists in seconds (supports User:Pass or IP Whitelist). 🎯 Perfect For All Tasks: Game Botting & Multi-boxing (Lineage 2, WoW, etc.) Social Media & Account Management Web Scraping & Data Extraction Sneaker Coping & E-commerce No complicated KYC, instant setup after purchase! 🚀 Boost your connection speed and secure your privacy today! 🔗 Official Website: https://novproxy.com?kwd=tt-max
    • base on server resources and how many active players, should increase DB max connection (default MariaDB max connection is 151) and open files limit.
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..