Hello guys , is this code going to work for the latest L2j hi5 files?
Index: L2J_Server/com/l2jserver/gameserver/model/actor/instance
===================================================================
---L2J_Server/com/l2jserver/gameserver/model/actor/instance/L2MonsterInstance.java
+++ L2J_Server/com/l2jserver/gameserver/model/actor/instance/L2MonsterInstance.java
@@ 159 , 23 162 , 24 @@
@Override
public boolean doDie(L2Character killer)
{
if (!super.doDie(killer))
return false;
if (_maintenanceTask != null)
{
_maintenanceTask.cancel(false); // doesn't do it?
_maintenanceTask = null;
}
+ if (getNpcId() == YourMobId) //Set here which mob ID you want to "drop" fame on die.
+ {
+ L2PcInstance kil = (L2PcInstance) killer;
+ //kil.setFame(kil.getFame() + Fame_Points); // set here how many fame points you want to add in character
+ kil.getClan().addReputationScore(Clan_points, true) //set on clan_points number of points you want to give
+ }
return true;
}
Telegram Bot TOP Search Promotion | SEO Optimization for Bots |
SMMTG.PRO
We promote Telegram bots to the TOP of search results — by keywords, topics, and countries.
What’s included:
• Promotion to the TOP of Telegram search
• Bot optimization for Telegram algorithms
• Competitor analysis and keyword selection
• Testing and securing stable ranking
Delivery time:
2–3 days per bot
Pricing:
Starts from $40 per bot
(final cost depends on competition level and target country)
We work with 50+ countries:
Russia • Ukraine • USA • Israel • Uzbekistan • Turkey • China • Thailand • Europe • India
Training is also available:
Telegram bot SEO optimization
Techniques & insights for reaching TOP search positions
Real-world cases and recommendations
Contact:
Telegram — t.me/smmtg_link
Our SMM panel: SMMTG.PRO
Question
Justice7
Hello guys , is this code going to work for the latest L2j hi5 files?
Index: L2J_Server/com/l2jserver/gameserver/model/actor/instance =================================================================== ---L2J_Server/com/l2jserver/gameserver/model/actor/instance/L2MonsterInstance.java +++ L2J_Server/com/l2jserver/gameserver/model/actor/instance/L2MonsterInstance.java @@ 159 , 23 162 , 24 @@ @Override public boolean doDie(L2Character killer) { if (!super.doDie(killer)) return false; if (_maintenanceTask != null) { _maintenanceTask.cancel(false); // doesn't do it? _maintenanceTask = null; } + if (getNpcId() == YourMobId) //Set here which mob ID you want to "drop" fame on die. + { + L2PcInstance kil = (L2PcInstance) killer; + //kil.setFame(kil.getFame() + Fame_Points); // set here how many fame points you want to add in character + kil.getClan().addReputationScore(Clan_points, true) //set on clan_points number of points you want to give + } return true; }1 answer to this question
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now