Jump to content

Recommended Posts

Posted

Bassicaly this patch, removes the "silent move" from the player.. so.. every NPC can see him.. for example monsters or guards :)... but... he still thinks that he is invisible to npcs(like pk-killer) because the abnormal effect is still exist.. so... here we are :)

Index: C:/Users/George/Desktop/eclipse-SDK-3.5.2-win32/eclipse/workspace/L2_GameServer/java/com/l2jserver/gameserver/skills/effects/EffectSilentMove.java
===================================================================
--- C:/Users/George/Desktop/eclipse-SDK-3.5.2-win32/eclipse/workspace/L2_GameServer/java/com/l2jserver/gameserver/skills/effects/EffectSilentMove.java	(revision 4420)
+++ C:/Users/George/Desktop/eclipse-SDK-3.5.2-win32/eclipse/workspace/L2_GameServer/java/com/l2jserver/gameserver/skills/effects/EffectSilentMove.java	(working copy)
@@ -46,9 +46,9 @@
	{
		super.onStart();

-		L2Character effected = getEffected();
-		if (effected instanceof L2Playable)
-			((L2Playable) effected).setSilentMoving(true);
+		//L2Character effected = getEffected();
+		//if (effected instanceof L2Playable)
+			//((L2Playable) effected).setSilentMoving(true);
		return true;
	}

 

It is for last rev Freya l2jserver pack but you can easily adapt it to epilogue or something... :)

Posted

Bassicaly this patch, removes the "silent move" from the player.. so.. every NPC can see him.. for example monsters or guards :)... but... he still thinks that he is invisible to npcs(like pk-killer) because the abnormal effect is still exist.. so... here we are :)

Index: C:/Users/George/Desktop/eclipse-SDK-3.5.2-win32/eclipse/workspace/L2_GameServer/java/com/l2jserver/gameserver/skills/effects/EffectSilentMove.java
===================================================================
--- C:/Users/George/Desktop/eclipse-SDK-3.5.2-win32/eclipse/workspace/L2_GameServer/java/com/l2jserver/gameserver/skills/effects/EffectSilentMove.java	(revision 4420)
+++ C:/Users/George/Desktop/eclipse-SDK-3.5.2-win32/eclipse/workspace/L2_GameServer/java/com/l2jserver/gameserver/skills/effects/EffectSilentMove.java	(working copy)
@@ -46,9 +46,9 @@
	{
		super.onStart();

-		L2Character effected = getEffected();
-		if (effected instanceof L2Playable)
-			((L2Playable) effected).setSilentMoving(true);
+		//L2Character effected = getEffected();
+		//if (effected instanceof L2Playable)
+			//((L2Playable) effected).setSilentMoving(true);
		return true;
	}

 

It is for last rev Freya l2jserver pack but you can easily adapt it to epilogue or something... :)

 

You just made the effect useless dude.

Posted

You just made the effect useless dude.

 

yep.. what do u think? it is better to a pvp server to just keep it and all dagger chars kill the other newbies? i think it is better way to make the effect useless...

Posted

yep.. what do u think? it is better to a pvp server to just keep it and all dagger chars kill the other newbies? i think it is better way to make the effect useless...

Or you can expand your java knowledge and find out how to make guards see silent moved players.

 

L2AttackableAI

private boolean autoAttackCondition(L2Character target)
{
	if (target == null || !(_actor instanceof L2Attackable))
		return false;
	L2Attackable me = (L2Attackable) _actor;

	// Check if the target isn't invulnerable
	if (target.isInvul())
	{
		// However EffectInvincible requires to check GMs specially
		if (target instanceof L2PcInstance && ((L2PcInstance) target).isGM())
			return false;
		if (target instanceof L2Summon && ((L2Summon) target).getOwner().isGM())
			return false;
	}

	// Check if the target isn't a Folk or a Door
	if (target instanceof L2FolkInstance || target instanceof L2DoorInstance)
		return false;

	// Check if the target isn't dead, is in the Aggro range and is at the same height
	if (target.isAlikeDead() || !me.isInsideRadius(target, me.getAggroRange(), false, false) || Math.abs(_actor.getZ() - target.getZ()) > 300)
		return false;

	if (_selfAnalysis.cannotMoveOnLand && !target.isInsideZone(L2Character.ZONE_WATER))
		return false;

	// Check if the target is a L2PlayableInstance
	if (target instanceof L2PlayableInstance)
	{
		// Check if the AI isn't a Raid Boss and the target isn't in silent move mode
--			if (!(me instanceof L2RaidBossInstance) && ((L2PlayableInstance) target).isSilentMoving())
+                       if (!(meinstanceof L2RaidBossInstance) && !(me instanceof L2GuardInstance) && ((L2PlayableInstance)target).isSilentMoving())
			return false;
	}

Posted

Or you can expand your java knowledge and find out how to make guards see silent moved players.

 

L2AttackableAI

private boolean autoAttackCondition(L2Character target)
{
	if (target == null || !(_actor instanceof L2Attackable))
		return false;
	L2Attackable me = (L2Attackable) _actor;

	// Check if the target isn't invulnerable
	if (target.isInvul())
	{
		// However EffectInvincible requires to check GMs specially
		if (target instanceof L2PcInstance && ((L2PcInstance) target).isGM())
			return false;
		if (target instanceof L2Summon && ((L2Summon) target).getOwner().isGM())
			return false;
	}

	// Check if the target isn't a Folk or a Door
	if (target instanceof L2FolkInstance || target instanceof L2DoorInstance)
		return false;

	// Check if the target isn't dead, is in the Aggro range and is at the same height
	if (target.isAlikeDead() || !me.isInsideRadius(target, me.getAggroRange(), false, false) || Math.abs(_actor.getZ() - target.getZ()) > 300)
		return false;

	if (_selfAnalysis.cannotMoveOnLand && !target.isInsideZone(L2Character.ZONE_WATER))
		return false;

	// Check if the target is a L2PlayableInstance
	if (target instanceof L2PlayableInstance)
	{
		// Check if the AI isn't a Raid Boss and the target isn't in silent move mode
--			if (!(me instanceof L2RaidBossInstance) && ((L2PlayableInstance) target).isSilentMoving())
+                       if (!(meinstanceof L2RaidBossInstance) && !(me instanceof L2GuardInstance) && ((L2PlayableInstance)target).isSilentMoving())
			return false;
	}

 

Yep, there is an other better way at all.... but both works...

Posted

Doh, you are not serious, disabling a whole effect? Why do you even share that?

 

Locked.

Guest
This topic is now closed to further replies.


  • Posts

    • 在9月1日之前在哪里买到低价的 Telegram Stars?最好的解决方案是 SocNet Stars Telegram 机器人! 帕维尔·杜罗夫宣布新的礼物已经临近!它们可能会在九月初推出。 和我们的 SocNet Stars Telegram 机器人一起保持准备!低价、最佳质量、快速发货! 在下一次 SOLD OUT 之前你将只有很短的时间。快速赚钱并在 Telegram 中获得有价值的官方 NFT 礼物的机会已经很近了。 快速、安全且实惠地购买 Telegram Stars - https://t.me/socnetstarsbot 多种支付方式! 我们项目的最新链接: Telegram Stars 购买机器人:进入 数字商品商店:进入 Telegram 商店机器人:进入 SMM 面板:进入 我们正在积极寻找以下商品的供应商: — Snapchat 旧号和新号 | 带分数 (snapscores) | 地区:欧洲/美国 | 邮箱/手机号完全访问 — Reddit 旧号,发帖和评论业力从 100 到 100,000+ | 邮箱完全访问 — LinkedIn 旧号,拥有真实连接 (connections) | 地区:欧洲/美国 | 邮箱完全访问 + 活跃的 2FA 密码 — Instagram 旧号 (2010-2023 年) | 邮箱完全访问 (可能还连接有 2FA 密码) — Facebook 旧号 (2010-2023 年) | 邮箱完全访问 (可能还连接有 2FA 密码) | 有好友或无好友 | 地区:欧洲/美国/亚洲 — Threads 账号 | 邮箱完全访问 (可能还连接有 2FA 密码) — TikTok/Facebook/Google ADS 代理广告账号 请通过以下联系方式联系我们 — 我们将讨论条件! 我们也始终对其他合作提案保持开放。 联系方式与支持: Telegram: https://t.me/socnet_support Telegram 频道: https://t.me/accsforyou_shop WhatsApp: https://wa.me/79051904467 WhatsApp 频道: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n Discord: socnet_support Discord 服务器: https://discord.gg/y9AStFFsrh 邮箱: solomonbog@socnet.store SocNet — 数字商品和高级订阅商店
    • 在9月1日之前在哪里买到低价的 Telegram Stars?最好的解决方案是 SocNet Stars Telegram 机器人! 帕维尔·杜罗夫宣布新的礼物已经临近!它们可能会在九月初推出。 和我们的 SocNet Stars Telegram 机器人一起保持准备!低价、最佳质量、快速发货! 在下一次 SOLD OUT 之前你将只有很短的时间。快速赚钱并在 Telegram 中获得有价值的官方 NFT 礼物的机会已经很近了。 快速、安全且实惠地购买 Telegram Stars - https://t.me/socnetstarsbot 多种支付方式! 我们项目的最新链接: Telegram Stars 购买机器人:进入 数字商品商店:进入 Telegram 商店机器人:进入 SMM 面板:进入 我们正在积极寻找以下商品的供应商: — Snapchat 旧号和新号 | 带分数 (snapscores) | 地区:欧洲/美国 | 邮箱/手机号完全访问 — Reddit 旧号,发帖和评论业力从 100 到 100,000+ | 邮箱完全访问 — LinkedIn 旧号,拥有真实连接 (connections) | 地区:欧洲/美国 | 邮箱完全访问 + 活跃的 2FA 密码 — Instagram 旧号 (2010-2023 年) | 邮箱完全访问 (可能还连接有 2FA 密码) — Facebook 旧号 (2010-2023 年) | 邮箱完全访问 (可能还连接有 2FA 密码) | 有好友或无好友 | 地区:欧洲/美国/亚洲 — Threads 账号 | 邮箱完全访问 (可能还连接有 2FA 密码) — TikTok/Facebook/Google ADS 代理广告账号 请通过以下联系方式联系我们 — 我们将讨论条件! 我们也始终对其他合作提案保持开放。 联系方式与支持: Telegram: https://t.me/socnet_support Telegram 频道: https://t.me/accsforyou_shop WhatsApp: https://wa.me/79051904467 WhatsApp 频道: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n Discord: socnet_support Discord 服务器: https://discord.gg/y9AStFFsrh 邮箱: solomonbog@socnet.store SocNet — 数字商品和高级订阅商店
    • 在9月1日之前在哪里买到低价的 Telegram Stars?最好的解决方案是 SocNet Stars Telegram 机器人! 帕维尔·杜罗夫宣布新的礼物已经临近!它们可能会在九月初推出。 和我们的 SocNet Stars Telegram 机器人一起保持准备!低价、最佳质量、快速发货! 在下一次 SOLD OUT 之前你将只有很短的时间。快速赚钱并在 Telegram 中获得有价值的官方 NFT 礼物的机会已经很近了。 快速、安全且实惠地购买 Telegram Stars - https://t.me/socnetstarsbot 多种支付方式! 我们项目的最新链接: Telegram Stars 购买机器人:进入 数字商品商店:进入 Telegram 商店机器人:进入 SMM 面板:进入 我们正在积极寻找以下商品的供应商: — Snapchat 旧号和新号 | 带分数 (snapscores) | 地区:欧洲/美国 | 邮箱/手机号完全访问 — Reddit 旧号,发帖和评论业力从 100 到 100,000+ | 邮箱完全访问 — LinkedIn 旧号,拥有真实连接 (connections) | 地区:欧洲/美国 | 邮箱完全访问 + 活跃的 2FA 密码 — Instagram 旧号 (2010-2023 年) | 邮箱完全访问 (可能还连接有 2FA 密码) — Facebook 旧号 (2010-2023 年) | 邮箱完全访问 (可能还连接有 2FA 密码) | 有好友或无好友 | 地区:欧洲/美国/亚洲 — Threads 账号 | 邮箱完全访问 (可能还连接有 2FA 密码) — TikTok/Facebook/Google ADS 代理广告账号 请通过以下联系方式联系我们 — 我们将讨论条件! 我们也始终对其他合作提案保持开放。 联系方式与支持: Telegram: https://t.me/socnet_support Telegram 频道: https://t.me/accsforyou_shop WhatsApp: https://wa.me/79051904467 WhatsApp 频道: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n Discord: socnet_support Discord 服务器: https://discord.gg/y9AStFFsrh 邮箱: solomonbog@socnet.store SocNet — 数字商品和高级订阅商店
    • 在9月1日之前在哪里买到低价的 Telegram Stars?最好的解决方案是 SocNet Stars Telegram 机器人! 帕维尔·杜罗夫宣布新的礼物已经临近!它们可能会在九月初推出。 和我们的 SocNet Stars Telegram 机器人一起保持准备!低价、最佳质量、快速发货! 在下一次 SOLD OUT 之前你将只有很短的时间。快速赚钱并在 Telegram 中获得有价值的官方 NFT 礼物的机会已经很近了。 快速、安全且实惠地购买 Telegram Stars - https://t.me/socnetstarsbot 多种支付方式! 我们项目的最新链接: Telegram Stars 购买机器人:进入 数字商品商店:进入 Telegram 商店机器人:进入 SMM 面板:进入 我们正在积极寻找以下商品的供应商: — Snapchat 旧号和新号 | 带分数 (snapscores) | 地区:欧洲/美国 | 邮箱/手机号完全访问 — Reddit 旧号,发帖和评论业力从 100 到 100,000+ | 邮箱完全访问 — LinkedIn 旧号,拥有真实连接 (connections) | 地区:欧洲/美国 | 邮箱完全访问 + 活跃的 2FA 密码 — Instagram 旧号 (2010-2023 年) | 邮箱完全访问 (可能还连接有 2FA 密码) — Facebook 旧号 (2010-2023 年) | 邮箱完全访问 (可能还连接有 2FA 密码) | 有好友或无好友 | 地区:欧洲/美国/亚洲 — Threads 账号 | 邮箱完全访问 (可能还连接有 2FA 密码) — TikTok/Facebook/Google ADS 代理广告账号 请通过以下联系方式联系我们 — 我们将讨论条件! 我们也始终对其他合作提案保持开放。 联系方式与支持: Telegram: https://t.me/socnet_support Telegram 频道: https://t.me/accsforyou_shop WhatsApp: https://wa.me/79051904467 WhatsApp 频道: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n Discord: socnet_support Discord 服务器: https://discord.gg/y9AStFFsrh 邮箱: solomonbog@socnet.store SocNet — 数字商品和高级订阅商店
    • Please read all carefully! - - Website: https://rinulikes.com/ - -Youtube Subscribers: 100 - 3$ Likes: 100-3$ Dislikes: 50 - 2$ Random/custom comments: 10 - 2$ Comments likes/dislikes: 100 - 2$ Shares(fb/tw/pt/g+/etc.): 100 - 1$ Views: 1000 - 3$ -Facebook Page Likes: 100 - 2$ Photo/Post Likes: 100 - 2$ Photo/Post Reaction(Love/Funny/Wow/Sad/Angry): 100 - 1$ Video views: 1000 - 1$ Custom comments: 5 - 1$ Event interested/going: 100 - 2$ Profile followers: 100 - 2$ -Twitter Followers: 100 - 2$ Retweets: 100 - 2$ Likes: 100 - 2$ -Instagram Followers: 100 - 1$ Likes/Autolikes: 1000 - 3$ Comments custom/random/emoji: 10 - 1$ Video views: 1000 - 1$ -Soundcloud Plays: 1000 - 1$ Followers: 100 - 1$ Likes: 100 - 1$ Reposts: 100 - 1$ Comments: 10 - 1$ -Twitch Followers: 1000 - 5$ Views: 1000 - 3$ -Spotify Followers: 1000 - 5$ Plays: 1000 - 3$ -Tiktok Followers: 100 - 3$ Likes: 100 - 3$ -Telegram Members: 1000 - 5$ -Website Traffic Website traffic: 1000 - 1$ - Discount for higher amount on website. For other services/social sites (pinterest, tiktok, linkedin, etc.) contact me. Payment - Paypal, BTC/ETH/LTC, Perfect Money, Credit/Debit Card, Paysafecard, Skrill. Refund/refill available! 30 days warranty on all services! Start time will vary from a few hours and in rare cases up to 48-72 hours. Delivery can take from a few hours up to several days depending on service or quantity. Worldwide services, speed varies and increases based on quantity. All services are 100% safe and best quality on the market. *Services/prices may change anytime so make sure to check the site for latest rates. For a faster transaction, order via website or contact me via pm with your url + amount wanted.
  • 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