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

    • 新品上线! 快来抢购最优质的 GMAIL 账号,享受 超低价格,注册年份范围从 2005–2022! 老版 Gmail.com 账号(已启用 2FA 双重验证) | 使用 MIX IP 注册 | 年份:2005 至 2022(可自行选择) | 账号可能包含邮件 | 格式:email:password:submail | 无需短信验证 | 已启用 IMAP | 附带 Submail | 价格起步:$0.9 我们还提供 Outlook、Firstmail、Rambler、Onet、Gazeta.pl、GMX、Yahoo、Proton、Web.de 等邮箱账号。 立即通过我们的网站或机器人购买! 活跃链接: 数字商品商店(网站):进入 商店 Telegram 机器人:进入 – 通过 Telegram 方便快捷地访问商店。 其他服务: Telegram Stars 购买机器人:进入 – 快速又实惠地购买 Telegram Stars。 SMM 面板:进入 – 推广您的社交媒体账号。 我们为您呈现当前 促销活动 与 特别优惠,适用于购买我们的商品和服务: 1. 优惠码 OCTOBER2025(8% 折扣)适用于九月在我们的商店(网站、机器人)购物!首次购买还可使用优惠码 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 ➡ ✉ 邮箱:solomonbog@socnet.store
    • 新品上线! 快来抢购最优质的 GMAIL 账号,享受 超低价格,注册年份范围从 2005–2022! 老版 Gmail.com 账号(已启用 2FA 双重验证) | 使用 MIX IP 注册 | 年份:2005 至 2022(可自行选择) | 账号可能包含邮件 | 格式:email:password:submail | 无需短信验证 | 已启用 IMAP | 附带 Submail | 价格起步:$0.9 我们还提供 Outlook、Firstmail、Rambler、Onet、Gazeta.pl、GMX、Yahoo、Proton、Web.de 等邮箱账号。 立即通过我们的网站或机器人购买! 活跃链接: 数字商品商店(网站):进入 商店 Telegram 机器人:进入 – 通过 Telegram 方便快捷地访问商店。 其他服务: Telegram Stars 购买机器人:进入 – 快速又实惠地购买 Telegram Stars。 SMM 面板:进入 – 推广您的社交媒体账号。 我们为您呈现当前 促销活动 与 特别优惠,适用于购买我们的商品和服务: 1. 优惠码 OCTOBER2025(8% 折扣)适用于九月在我们的商店(网站、机器人)购物!首次购买还可使用优惠码 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 ➡ ✉ 邮箱:solomonbog@socnet.store
    • New Products! Hurry up and grab the best GMAIL accounts at low prices with creation years from 2005–2022! Old Gmail.com accounts (with 2FA enabled) | Registered with MIX IP | Age: from 2005 to 2022 (choose the year you prefer) | Accounts may contain messages | Format: email:password:submail | No SMS verification required | IMAP enabled | Submail included | Price from: $0.9 We also offer email accounts for Outlook, Firstmail, Rambler, Onet, Gazeta.pl, GMX, Yahoo, Proton, and Web.de. Buy now in our store via website or bot! Active Links: Digital Goods Store (Website): Go Store Telegram Bot: Go – convenient access to the store directly through Telegram messenger. Other Services: Telegram Bot for purchasing Telegram Stars: Go – fast and profitable way to buy Telegram Stars. SMM Panel: Go – promote your social media accounts. We would like to present you the current list of promotions and special offers for purchasing our products and services: 1. Promo code OCTOBER2025 (8% discount) for purchases in our store (Website, Bot) during September! You can also use the first-time promo code: SOCNET (15% discount). 2. Get $1 to your store balance or a 10–20% discount — simply post your username after registration on our website using the following format "SEND ME BONUS, MY USERNAME IS..." – post it in our forum thread! 3. Get $1 for your first SMM Panel trial — just open a ticket titled “Get Trial Bonus” on our website (Support). 4. Weekly Telegram Stars giveaways in our Telegram channel and in our Stars purchasing bot! 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 & Support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • New Products! Hurry up and grab the best GMAIL accounts at low prices with creation years from 2005–2022! Old Gmail.com accounts (with 2FA enabled) | Registered with MIX IP | Age: from 2005 to 2022 (choose the year you prefer) | Accounts may contain messages | Format: email:password:submail | No SMS verification required | IMAP enabled | Submail included | Price from: $0.9 We also offer email accounts for Outlook, Firstmail, Rambler, Onet, Gazeta.pl, GMX, Yahoo, Proton, and Web.de. Buy now in our store via website or bot! Active Links: Digital Goods Store (Website): Go Store Telegram Bot: Go – convenient access to the store directly through Telegram messenger. Other Services: Telegram Bot for purchasing Telegram Stars: Go – fast and profitable way to buy Telegram Stars. SMM Panel: Go – promote your social media accounts. We would like to present you the current list of promotions and special offers for purchasing our products and services: 1. Promo code OCTOBER2025 (8% discount) for purchases in our store (Website, Bot) during September! You can also use the first-time promo code: SOCNET (15% discount). 2. Get $1 to your store balance or a 10–20% discount — simply post your username after registration on our website using the following format "SEND ME BONUS, MY USERNAME IS..." – post it in our forum thread! 3. Get $1 for your first SMM Panel trial — just open a ticket titled “Get Trial Bonus” on our website (Support). 4. Weekly Telegram Stars giveaways in our Telegram channel and in our Stars purchasing bot! 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 & 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