Jump to content

Recommended Posts

Posted (edited)

I have 2 questions.

1. After getting Life cubic from Newbie guide, should Life cubic stay active after player restarts/exits server or should newbie guide Life cubic disappear and player need to rebuff  every time to receive Life Cubic after restart/exit server?

 

2. Do players need to hit Hot Springs mobs to receive Hot Springs debuffs or should Hot Springs mobs give debuffs without player hitting?

 

I would appreciate an accurate response from multiple members as I could not find info anywhere else. Thank You.

Edited by Vision
Posted

Hey @L2RAPTOR

 

1.About the Life cubic, everytime you restart/exit game the Cubic's effects are removed.
2.Hot Springs mobs should hit the player and they have chance to give him those debuffs only when they hit.
You need only to take their aggro by any type of damage or aggro on them.

 

The big head spring effect is only received trough the area affection when you get into the water.

I hope that i've helped. 

  • Downvote 1
Posted
3 hours ago, Odyssey said:

Hey @L2RAPTOR

 

1.About the Life cubic, everytime you restart/exit game the Cubic's effects are removed.
2.Hot Springs mobs should hit the player and they have chance to give him those debuffs only when they hit.
You need only to take their aggro by any type of damage or aggro on them.

 

The big head spring effect is only received trough the area affection when you get into the water.

I hope that i've helped. 

thank you for your response.

1. Life Cubic given from Newbie Guide Buffs is removed on restart/exit ..

This is L2Off feature?, L2j added feature? what is your source for this information?

2. So Hot Springs debuffs are given to player when mob hits player. There is no requirement for player to hit mob.. correct?

This is L2Off feature?, L2j added feature? what is your source for this information?

Posted

GF retail data:

 

1) if my memory serves me right, in order for a skill to be removed on restart it needs abnormal_delete_leaveworld=1, which I do not see it with skill_id = 4338

 

2) Debuffs are applied on attacked (whenever mob gets attacked), clan_attacked (whenever mob's clan gets attacked) and see_spell (basically a healer could get debuffed if he healed a char attacking the mob).

 

set_compiler_opt base_event_type(@NTYPE_NPC_EVENT)

class warrior_casting_enchant_physical_poison : warrior {
parameter:
	int PhysicalSpecial = @s_npc_strike12;
	int Buff1 = @s_might_boss_a_1;
	int Buff2 = @s_haste_boss_a_1;
	int DeBuff1 = @s_spa_disease_a1;
	int DeBuff2 = @s_spa_disease_b1;
	
handler:
	EventHandler CREATED() {
		if (Skill_GetConsumeMP(Buff1) < myself.sm.mp && Skill_GetConsumeHP(Buff1) < myself.sm.hp && Skill_InReuseDelay(Buff1) == 0) {
			AddUseSkillDesire(myself.sm, Buff1, @ST_HEAL, @AMT_MOVE_TO_TARGET, 1000000);
		}

		if (Skill_GetConsumeMP(Buff2) < myself.sm.mp && Skill_GetConsumeHP(Buff2) < myself.sm.hp && Skill_InReuseDelay(Buff2) == 0) {
			AddUseSkillDesire(myself.sm, Buff2, @ST_HEAL, @AMT_MOVE_TO_TARGET, 1000000);
		}

		super;
	}

	EventHandler ATTACKED(attacker, i1, skill_name_id) {
		i1 = 0;

		if (GetAbnormalLevel(myself.sm, Skill_GetAbnormalType(Buff1)) <= 0) {
			if (Skill_GetConsumeMP(Buff1) < myself.sm.mp && Skill_GetConsumeHP(Buff1) < myself.sm.hp && Skill_InReuseDelay(Buff1) == 0) {
				AddUseSkillDesire(myself.sm, Buff1, @ST_HEAL, @AMT_MOVE_TO_TARGET, 1000000);
			}
		}

		if (GetAbnormalLevel(myself.sm, Skill_GetAbnormalType(Buff2)) <= 0) {
			if (Skill_GetConsumeMP(Buff2) < myself.sm.mp && Skill_GetConsumeHP(Buff2) < myself.sm.hp && Skill_InReuseDelay(Buff2) == 0) {
				AddUseSkillDesire(myself.sm, Buff2, @ST_HEAL, @AMT_MOVE_TO_TARGET, 1000000);
			}
		}

		if (Rand(100) < 33) {
			if (Skill_GetConsumeMP(PhysicalSpecial) < myself.sm.mp && Skill_GetConsumeHP(PhysicalSpecial) < myself.sm.hp && Skill_InReuseDelay(PhysicalSpecial) == 0) {
				AddUseSkillDesire(attacker, PhysicalSpecial, @ST_ATTACK, @AMT_MOVE_TO_TARGET, 1000000);
			}
		}

		if (Rand(100) < 10) {
			i1 = GetAbnormalLevel(attacker, Skill_GetAbnormalType(DeBuff1));

			if (i1 == -1) {
				if (Skill_GetConsumeMP(DeBuff1) < myself.sm.mp && Skill_GetConsumeHP(DeBuff1) < myself.sm.hp && Skill_InReuseDelay(DeBuff1) == 0) {
					AddUseSkillDesire(attacker, DeBuff1, @ST_ATTACK, @AMT_MOVE_TO_TARGET, 1000000);
				}
			} else if (i1 == 10) {
			} else {
				i1 = DeBuff1 + i1;

				if (Skill_GetConsumeMP(i1) < myself.sm.mp && Skill_GetConsumeHP(i1) < myself.sm.hp && Skill_InReuseDelay(i1) == 0) {
					AddUseSkillDesire(attacker, i1, @ST_ATTACK, @AMT_MOVE_TO_TARGET, 1000000);
				}
			}
		}

		if (Rand(100) < 10) {
			i1 = GetAbnormalLevel(attacker, Skill_GetAbnormalType(DeBuff2));

			if (i1 == -1) {
				if (Skill_GetConsumeMP(DeBuff2) < myself.sm.mp && Skill_GetConsumeHP(DeBuff2) < myself.sm.hp && Skill_InReuseDelay(DeBuff2) == 0) {
					AddUseSkillDesire(attacker, DeBuff2, @ST_ATTACK, @AMT_MOVE_TO_TARGET, 1000000);
				}
			} else if (i1 == 10) {
			} else {
				i1 = DeBuff2 + i1;

				if (Skill_GetConsumeMP(i1) < myself.sm.mp && Skill_GetConsumeHP(i1) < myself.sm.hp && Skill_InReuseDelay(i1) == 0) {
					AddUseSkillDesire(attacker, i1, @ST_ATTACK, @AMT_MOVE_TO_TARGET, 1000000);
				}
			}
		}

		super;
	}

	EventHandler CLAN_ATTACKED(attacker, i1) {
		i1 = 0;

		if (Rand(100) < 10) {
			i1 = GetAbnormalLevel(attacker, Skill_GetAbnormalType(DeBuff1));

			if (i1 == -1) {
				if (Skill_GetConsumeMP(DeBuff1) < myself.sm.mp && Skill_GetConsumeHP(DeBuff1) < myself.sm.hp && Skill_InReuseDelay(DeBuff1) == 0) {
					AddUseSkillDesire(attacker, DeBuff1, @ST_ATTACK, @AMT_MOVE_TO_TARGET, 1000000);
				}
			} else if (i1 == 10) {
			} else {
				i1 = DeBuff1 + i1;

				if (Skill_GetConsumeMP(i1) < myself.sm.mp && Skill_GetConsumeHP(i1) < myself.sm.hp && Skill_InReuseDelay(i1) == 0) {
					AddUseSkillDesire(attacker, i1, @ST_ATTACK, @AMT_MOVE_TO_TARGET, 1000000);
				}
			}
		}

		if (Rand(100) < 10) {
			i1 = GetAbnormalLevel(attacker, Skill_GetAbnormalType(DeBuff2));

			if (i1 == -1) {
				if (Skill_GetConsumeMP(DeBuff2) < myself.sm.mp && Skill_GetConsumeHP(DeBuff2) < myself.sm.hp && Skill_InReuseDelay(DeBuff2) == 0) {
					AddUseSkillDesire(attacker, DeBuff2, @ST_ATTACK, @AMT_MOVE_TO_TARGET, 1000000);
				}
			} else if (i1 == 10) {
			} else {
				i1 = DeBuff2 + i1;

				if (Skill_GetConsumeMP(i1) < myself.sm.mp && Skill_GetConsumeHP(i1) < myself.sm.hp && Skill_InReuseDelay(i1) == 0) {
					AddUseSkillDesire(attacker, i1, @ST_ATTACK, @AMT_MOVE_TO_TARGET, 1000000);
				}
			}
		}

		super;
	}

	EventHandler SEE_SPELL(speller, i1) {
		i1 = 0;

		if (Rand(100) < 10) {
			i1 = GetAbnormalLevel(speller, Skill_GetAbnormalType(DeBuff1));

			if (i1 == -1) {
				if (Skill_GetConsumeMP(DeBuff1) < myself.sm.mp && Skill_GetConsumeHP(DeBuff1) < myself.sm.hp && Skill_InReuseDelay(DeBuff1) == 0) {
					AddUseSkillDesire(speller, DeBuff1, @ST_ATTACK, @AMT_MOVE_TO_TARGET, 1000000);
				}
			} else if (i1 == 10) {
			} else {
				i1 = DeBuff1 + i1;

				if (Skill_GetConsumeMP(i1) < myself.sm.mp && Skill_GetConsumeHP(i1) < myself.sm.hp && Skill_InReuseDelay(i1) == 0) {
					AddUseSkillDesire(speller, i1, @ST_ATTACK, @AMT_MOVE_TO_TARGET, 1000000);
				}
			}
		}

		if (Rand(100) < 10) {
			i1 = GetAbnormalLevel(speller, Skill_GetAbnormalType(DeBuff2));

			if (i1 == -1) {
				if (Skill_GetConsumeMP(DeBuff2) < myself.sm.mp && Skill_GetConsumeHP(DeBuff2) < myself.sm.hp && Skill_InReuseDelay(DeBuff2) == 0) {
					AddUseSkillDesire(speller, DeBuff2, @ST_ATTACK, @AMT_MOVE_TO_TARGET, 1000000);
				}
			} else if (i1 == 10) {
			} else {
				i1 = DeBuff2 + i1;

				if (Skill_GetConsumeMP(i1) < myself.sm.mp && Skill_GetConsumeHP(i1) < myself.sm.hp && Skill_InReuseDelay(i1) == 0) {
					AddUseSkillDesire(speller, i1, @ST_ATTACK, @AMT_MOVE_TO_TARGET, 1000000);
				}
			}
		}

		super;
	}
}

 

  • Downvote 1

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

    • Hi everyone,   I’m currently playing Lineage 2 on the L2Damage server and I’d like to know the current status of botting tools there. With all the server updates and protections, many tools stop working or get detected pretty fast, so I wanted to ask the community:   Is anyone currently using any bot on L2Damage that still works reliably? Have you had any success with tools like Adrenaline, L2Walker, L2Tower, or similar? Any general experience or feedback about what’s still usable on this server?   I know every server has different protections, so any up-to-date info or personal experience would be appreciated.   Thanks in advance.
    • Hey Dexters! Https://lineage2dex.com SKADI server starting TODAY! ✅ On 18:00 (UTC +2) We allow you to login for create character! To restrict your name and transfer ToDs/Starter packs in game. Make it before start! On start, we can have problems with WEB! It is IMPORTANT to prepare everything for starting the game RIGHT NOW, do not postpone for later, during the opening there may be problems with the web part of the project and you simply can not register. ## [ - REGISTRATION AND FILES](https://lineage2dex.com/en/start) ✨ Get a +15% bonus on all TOD orders! The bonus is active until February 1st, 23:00 and also applies to UNION. ✅ What you need to know at the start: ➡️ All Epic Raid Bosses dead on start. Re-spawn time you can check in game ALT+B Raid tab ➡️ All other RBs (for difficult 1 location) alive on server start (including Sub and Nobl RB) ➡️ Max enchant for items +10, this limits will be change with server time ➡️ Difficulty 1 locations are available ➡️ Locations drop Basic and Advanced tier resources, allowing you to craft B and A grade equivalent gear ➡️ School of Dark Arts — PvP zone with x5 drop. Its intance Zone, to enter it you need make TP from GateKeeper. If you will teleport on it by map, you will go on regular zone, not pvp ➡️ Only B-grade equivalent equipment is available for purchase (common, its dont have durability) ➡️ Tier 1 talents are available to learn ➡️ Talent Point Shop is available [ - Roadmap](https://wiki.lineage2dex.com/road-map/en) [ - Basic server description](https://wiki.lineage2dex.com/general-description-skadi-x100/en) Thank you for participating in the beta! All players who spent more than 1 hour on the beta server will receive useful items for autofarming and equipment repair. The rewards will be granted to the first character on the same account that participated in the beta. All items will be placed in the Quest Inventory. Good luck everyone! And have a fun on new Skadi server!
    • ## [1.5.1] - 2026-01-30   ### 🐛 Bug Fixes - **Top Voters**: Top voters list now loads correctly for inactive servers (previously showed "Server not found"). - **View Counter**: Server info page view count now records correctly for inactive servers.   ### 🔄 Improvements - **My Servers – Hide/Active**: The hide/active toggle now works correctly and is only shown when the server is approved (active) by an admin. Owner hide/show is separate from admin status. Toggling no longer causes a full page refresh. - **Accessibility**: Form fields across the site now have proper labels and IDs for screen readers and autofill — server info edit form, add server form, My Servers edit, Admin Panel (Email, Vote System, pricing, filters, logs), and related inputs. ## [1.5.2] - 2026-01-30   ### ✨ New Features - **Server Type**: Replaced the old "Server Options" checkboxes with a single-choice **Server Type** selection: Normal, MultiSkill, GvE, Olympiad, PvP, and Stacksub. Choose one type that best describes your server. - **Server Type in Edit Forms**: You can now change the server type when editing a server — in **My Servers → Edit** and in **Admin Panel → Servers → Edit Server**.   ### 🔄 Improvements - **Sidebar Filters**: Server type filters (MultiSkill, GvE, Olympiad, PvP, Stacksub) are now single-choice — selecting one clears the previous selection. Order updated to: VIP L2 Servers, Low Rate, then the server type options. VIP L2 Servers and Low Rate remain independent toggles. - **Rate Display**: Server rows now show full rate values (e.g. x50000) without truncation. - **My Servers – Edit Modal**: Edit form layout restored with slightly tighter spacing so it fits better on screen.   ### 🗑️ Removed - **International Option**: Removed from the Add Server form; server type options are now simplified.
  • 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..