Jump to content
  • 0

Question

Posted

Hi there,

 

i have a question. is it possible to make flying-transformations avaible everywhere in the world of l2, not just in the area of gracia? i'm sorry but i'm a web designer and i have no plan about java. wanna try to learn java when my final exam is done (i'm still in apprenticeship)

 

sorry 4 my bad englisch and thx 4 you answears <3

Recommended Posts

  • 0
Posted

Hi there,

 

i have a question. is it possible to make flying-transformations avaible everywhere in the world of l2, not just in the area of gracia? i'm sorry but i'm a web designer and i have no plan about java. wanna try to learn java when my final exam is done (i'm still in apprenticeship)

 

sorry 4 my bad englisch and thx 4 you answears <3

you can remove the checks for zones... i believe that there will be exist some checks for the zones... just delete the checks and here we are done :)
  • 0
Posted

hi there and thx 4 your answer...

where can I find the checks pls? thx

maybe is it->  check for the xml of the skill, for example 00800-00899 for Aura Bird - Falcon

                      and remove it:

<cond msgId="2721">
              <player landingZone="True" />
</cond>

 

  • 0
Posted

Well, since i don't really player interlude+ servers, could you explain exactly how does this work?

 

@AbsolutePower

I don't think it will be some checks, since you need to add coords where it will fly(from x,y,z to x,y,z to x,y,z etc).

  • 0
Posted

@An4rchy

It's about a the 2 transformation-skills aurabird owl and aurabird falcon. you can get one of the skills via quest on gracia continent (you can choose one). while your character is on gracia continent, you can use the skill and charakter transforms into a bird, that can fly around like wyverns do. but you can't use the skill, while your charakter is somewhere else then gracia area

  • 0
Posted

Hi there again.

maybe is it->  check for the xml of the skill, for example 00800-00899 for Aura Bird - Falcon

                      and remove it:

<cond msgId="2721">
              <player landingZone="True" />
</cond>

 

 

tried this out and now characters can transform into aurbirds everywhere. but there is still a hook: characters can transform but they can't fly. by clicking on the sky or using E and Q for moving down/up the character keeps down on the ground, just moving around there like he would walk...

 

any idea why or how to make flying possible? found a "landing_zones.xml" in zones directory. maybe it's possible to change the size of one of this zones, so that it covers the whole continent gracia and another covers the whole continent aden (or even create a new zone in there that does?)

but where can i look up the values i would have to set?

  • 0
Posted

since you know that you can fly without problems with a wyvern i would start there

L2PcInstance:

public boolean setmount(int npcId, int npcLevel, int -beep-tType)
{
	switch(-beep-tType)
	{
		case 0:
			setIsFlying(false);
			/* not used any more
			setIsRidingFenrirWolf(false);
			setIsRidingWFenrirWolf(false);
			setIsRidingGreatSnowWolf(false);*/
			setIsRidingStrider(false);
			break; //Dis-beep-ted
		case 1:
			setIsRidingStrider(true);
			if(isNoble())
			{
				L2Skill striderAssaultSkill = SkillTable.FrequentSkill.STRIDER_SIEGE_ASSAULT.getSkill();
				addSkill(striderAssaultSkill, false); // not saved to DB
			}
			break;
		case 2:
			setIsFlying(true);
			break; //Flying Wyvern
		case 3:
			/* not used any more
			switch (npcId)
			{
				case 16041:
					setIsRidingFenrirWolf(true);
					break;
				case 16042:
					setIsRidingWFenrirWolf(true);
					break;
				case 16037:
					setIsRidingGreatSnowWolf(true);
					break;
			}*/
			break;
	}

	_-beep-tType = -beep-tType;
	_-beep-tNpcId = npcId;
	_-beep-tLevel = npcLevel;

	return true;
}

so, check what will do

setIsFlying(true);

i dont have the l2j svn here so i cant make a search, but u just need to take a look what will that make, u can even try to put that in any script of transformation (datapack) at see what it does

 

EDIT: mountType is  m o u n t Type

  • 0
Posted

hi there.

still didn't solve the problem...but i found this in L2world.java

So could i just expand the value for "the east"? which value is it and which count do it have to be? or can I simply delete this part?

 

public final class L2World

{

private static Logger _log = Logger.getLogger(L2World.class.getName());

 

/**

* Gracia border

* Flying objects not allowed to the east of it.

*/

public static final int GRACIA_MAX_X = -166168;

public static final int GRACIA_MAX_Z = 6105;

public static final int GRACIA_MIN_Z = -895;

 

  • 0
Posted

hi there.

still didn't solve the problem...but i found this in L2world.java

So could i just expand the value for "the east"? which value is it and which count do it have to be? or can I simply delete this part?

 

public final class L2World

{

private static Logger _log = Logger.getLogger(L2World.class.getName());

 

/**

* Gracia border

* Flying objects not allowed to the east of it.

*/

public static final int GRACIA_MAX_X = -166168;

public static final int GRACIA_MAX_Z = 6105;

public static final int GRACIA_MIN_Z = -895;

 

This could work too.

I will check the skill id, if there's a special skill handler for it or something.

  • 0
Posted

Someone Said, that wouldn't work, 'cause it is used for other things, too. so I still have the same problem - how could I make flying possible everywhere? any idea?

  • 0
Posted

Don't touch L2World values...

 

About your problem, if you get a system message as refusal when you try to do the action, I would check here.

 

And so far, Falcon/etc are considered as transformation, not as mou.nt.

  • 0
Posted

And so far, Falcon/etc are considered as transformation, not as mou.nt.

More or less

@Override
public void onTransform()
{
	if ((getPlayer().getTransformationId() != 8) || getPlayer().isCursedWeaponEquipped())
	{
		return;
	}
	getPlayer().setIsFlyingMou.nted(true);

	transformedSkills();
}

 

public void setIsFlyingMou.nted(boolean val)
{
	_isFlyingMounted = val;
	setIsFlying(val);
}

So both, wyvern and falcon are isFlying

try to attack (or falcons only could use skills?) some1 that is flying with a wyvern, maybe its move packets problem

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

    • Hello guys, gh0t from gh0tstudio here. This time we are putting to sale this beafitul landing page for your next server. Lineage 2 Server Landing Page Template u can check it here LINEAGE 2 DEMO SITE   Technology Stack - React 18 with TypeScript - Tailwind CSS for styling - Framer Motion for animations - Vite for fast development and builds - Multi-language support (i18n ready) Responsive Design The template is fully responsive and optimized for all screen sizes. Desktop, tablet, and mobile layouts have been carefully crafted to provide the best user experience on any device. The mobile version includes a unique notch-style hero design with custom clip paths. What is Included - Complete landing page source code - Hero section with parallax scroll effect - Server information section with animated cards - Character classes showcase with interactive gallery - Registration form (frontend only, styled and validated) - Donation packages display section - Download section for game client - Sticky navigation with transparency effects - Footer with social links - Multi-language system (Spanish/English ready) - All animations and transitions - Clean, documented code structure - Easy to customize colors and content   What is Not Included - Backend server or API - User registration panel/dashboard - Payment processing system for donations - Database integration - Connection to L2 game server - Online player counter module - Account management system - Hosting or domain   The template provides the complete frontend experience.  Price: $150 USD     Contact For purchase inquiries or questions about the template, please reach out directly.
    • 流量套利 + SMM 面板 — 强大的增长组合. 通过社交信号加强推广活动,提高信任度和转化率,加速扩张。 为套利专员和 SMM 提供的所有工具 — 在一个地方. 有效链接: SMM 面板: 前往 – 推广您的社交媒体账户。 其他服务和产品: 数字商品商店(网站): 前往 商店 Telegram 机器人: 前往 – 通过 Telegram 信使方便访问商店。 虚拟号码服务: 前往 用于购买 Telegram Stars 的 Telegram 机器人: 前往 – 在 Telegram 中快速且优惠地购买 Stars。 SMM 面板: 前往 – 推广您的社交媒体账户。 我们想向您展示当前促销和特别优惠列表,用于购买我们服务的产品和服务: 1. 您可以在首次购买时使用促销代码:SOCNET(15% 折扣) 2. 获取 $1 商店余额或 10–20% 折扣——只需在我们网站注册后按以下模板填写您的用户名:"SEND ME BONUS, MY USERNAME IS..." ——您需要在我们的论坛主题中发布! 3. SMM 面板首次试用可获得 $1:只需在我们的网站(Support)提交主题为 “Get Trial Bonus” 的工单。 4. 我们的 Telegram 频道和 Stars 购买机器人中每周都会赠送 Telegram Stars! 新闻: ➡ Telegram 频道: https://t.me/accsforyou_shop ➡ WhatsApp 频道: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord 服务器: https://discord.gg/y9AStFFsrh 联系方式和支持: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • 流量套利 + SMM 面板 — 强大的增长组合. 通过社交信号加强推广活动,提高信任度和转化率,加速扩张。 为套利专员和 SMM 提供的所有工具 — 在一个地方. 有效链接: SMM 面板: 前往 – 推广您的社交媒体账户。 其他服务和产品: 数字商品商店(网站): 前往 商店 Telegram 机器人: 前往 – 通过 Telegram 信使方便访问商店。 虚拟号码服务: 前往 用于购买 Telegram Stars 的 Telegram 机器人: 前往 – 在 Telegram 中快速且优惠地购买 Stars。 SMM 面板: 前往 – 推广您的社交媒体账户。 我们想向您展示当前促销和特别优惠列表,用于购买我们服务的产品和服务: 1. 您可以在首次购买时使用促销代码:SOCNET(15% 折扣) 2. 获取 $1 商店余额或 10–20% 折扣——只需在我们网站注册后按以下模板填写您的用户名:"SEND ME BONUS, MY USERNAME IS..." ——您需要在我们的论坛主题中发布! 3. SMM 面板首次试用可获得 $1:只需在我们的网站(Support)提交主题为 “Get Trial Bonus” 的工单。 4. 我们的 Telegram 频道和 Stars 购买机器人中每周都会赠送 Telegram Stars! 新闻: ➡ Telegram 频道: https://t.me/accsforyou_shop ➡ WhatsApp 频道: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord 服务器: https://discord.gg/y9AStFFsrh 联系方式和支持: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • Traffic arbitrage + SMM panel — a powerful combination for growth. Strengthen campaigns with social signals, increase trust and conversion, scale faster. All tools for arbitrage specialists and SMM — in one place. Active links: SMM Panel: Go to – promotion of your social media accounts. Other services and products: Digital goods store (Website): Go to Store Telegram bot: Go to – convenient access to the store via the Telegram messenger. Virtual numbers service: Go to Telegram bot for purchasing Telegram Stars: Go to – fast and profitable purchase of Stars in Telegram. SMM Panel: Go to – promotion of your social media accounts. We want to present to you the current list of promotions and special offers for purchasing products and services of our service: 1. You can use a promo code for your first purchase: SOCNET (15% discount) 2. Get $1 on your store balance or a 10–20% discount — just write your username after registering on our website using the following template: "SEND ME BONUS, MY USERNAME IS..." – you need to post this in our forum thread! 3. Get $1 for the first trial launch of the SMM Panel: just open a ticket with the subject “Get Trial Bonus” on our website (Support). 4. Weekly Telegram Stars giveaways in our Telegram channel and in our bot for purchasing stars! News: ➡ Telegram channel: https://t.me/accsforyou_shop ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord server: https://discord.gg/y9AStFFsrh Contacts and support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
  • 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