Jump to content

Question

Posted

I've got a custom boss engine and whenever boss dies it uses this method:
 

    public void delete()
    {
        if (_lastSpawn == null)
        {
            return;
        }
        
        _lastSpawn.getLastSpawn().deleteMe();
        _lastSpawn.stopRespawn();
        SpawnTable.getInstance().deleteSpawn(_lastSpawn, false);
        
        _lastSpawn = null;
        setStatus(0);
        setRespawnTime((System.currentTimeMillis()/1000)+((getMinutes()*60) + (randInt(0, (int)getDelay()*60))));
        updateDbResp(getNpcId(), getRespawnTime()+(System.currentTimeMillis()/1000) , getStatus());
        
        ThreadPoolManager.getInstance().scheduleGeneral(new Runnable()
        {
            @Override
            public void run()
            {
                doSpawn();
            }
        }, getRespawnTime()*1000);
        
        Announcements.announceToAll("Mighty Boss "+getName()+" has been killed!");
    }

but it doesn't drop anything,what do I have to change so it starts dropping items?I've watched other instances,but it requires instance and I just want to drop items on the ground and everyone can pick them up.

11 answers to this question

Recommended Posts

  • 0
Posted

if you do edit the mob from server?

add there the items you want to drop.

sorry if i'm wrong.. i can't understand very good the english.

  • 0
Posted

Uhm..I am sorry I didn't understand you completely,but this is my npc file:
 

	<npc id="50017" idTemplate="25437" name="Jaryl" title="">
		<set name="level" val="80"/>
		<set name="radius" val="24"/>
		<set name="height" val="52"/>
		<set name="rHand" val="145"/>
		<set name="lHand" val="0"/>
		<set name="type" val="L2Monster"/>
		<set name="exp" val="2179535"/>
		<set name="sp" val="140740"/>
		<set name="hp" val="96596"/>
		<set name="mp" val="300.8"/>
		<set name="hpRegen" val="208"/>
		<set name="mpRegen" val="2.1"/>
		<set name="pAtk" val="505"/>
		<set name="pDef" val="1252"/>
		<set name="mAtk" val="8"/>
		<set name="mDef" val="529"/>
		<set name="crit" val="4"/>
		<set name="atkSpd" val="383"/>
		<set name="str" val="60"/>
		<set name="int" val="76"/>
		<set name="dex" val="73"/>
		<set name="wit" val="70"/>
		<set name="con" val="57"/>
		<set name="men" val="80"/>
		<set name="corpseTime" val="300"/>
		<set name="walkSpd" val="80"/>
		<set name="runSpd" val="230"/>
		<set name="dropHerbGroup" val="0"/>
		<set name="attackRange" val="40"/>
		<ai type="default" ssCount="0" ssRate="0" spsCount="0" spsRate="0" aggro="0" canMove="true" seedable="false"/>
		<skills>
		</skills>
		<drops>
			<category id="1"><drop itemid="6661" min="1" max="1" chance="300000"/></category>
			<category id="2"><drop itemid="3485" min="40" max="40" chance="1000000"/></category>
			<category id="3"><drop itemid="3485" min="40" max="40" chance="1000000"/></category>
			<category id="4"><drop itemid="3485" min="40" max="40" chance="1000000"/></category>
			<category id="5"><drop itemid="3485" min="40" max="40" chance="1000000"/></category>
			<category id="6"><drop itemid="3485" min="40" max="40" chance="1000000"/></category>
			<category id="7"><drop itemid="6577" min="1" max="1" chance="1000000"/></category>
			<category id="7"><drop itemid="6578" min="1" max="1" chance="1000000"/></category>			
			<category id="8"><drop itemid="6577" min="1" max="1" chance="1000000"/></category>
			<category id="8"><drop itemid="6578" min="1" max="1" chance="1000000"/></category>
			<category id="9"><drop itemid="8762" min="1" max="1" chance="1000000"/></category>
		</drops>
	</npc>
  • 0
Posted

Oh,yeah when I click on droplist it shows all the items.
I believe that droplist show drops that are in npc's xml and drops are managed on java side.
I think the method is called rewardPlayer() or calculateReward() or something like that,but it requires player instance,but I just want items to drop on the ground.

  • 0
Posted

it is not necessary to make everything so difficult..

If you want to drop items when a player kill this mob/boss, then edit the droplist from the game and change the chances. Make it to drop every time when mob die.

from there you can change the items that you want to dropped.

  • 0
Posted (edited)

I believe I have done what you are telling me. ^_^
I included a photo of my droplist: http://imgur.com/bFvNWkn
Could it have to do anything with scripts?Because most of the scripts are disabled.
I am using this engine(a bit modified): http://www.maxcheaters.com/topic/180781-easy-boss-engine/

Edited by StealthyS4m
  • 0
Posted (edited)

Does your custom rb are considered as L2Attackable ? Do your custom boss "dies", and simply not dissapear ? The drop part is lead by L2Attackable, notably doDie(L2Character killer) and calculateRewards(L2Character lastAttacker) methods, which call doItemDrop(L2Character mainDamageDealer).

 

Basically said, your system shouldn't care about despawning, delete or kill the npc if it's a L2Attackable, as all is already handled.

Edited by Tryskell
  • 0
Posted

Yeah,I was thinking the same,but my custom bosses are set as L2Monsters:

<set name="type" val="L2Monster"/>

this is the L2MonsterInstance.java doDie() method:

	public boolean doDie(L2Character killer)
	{
        if (isCustomBoss())
        {
            CustomBossManager.getInstance().getCustomBoss(getNpcId()).delete();
        }
		
		if (!super.doDie(killer))
			return false;
		
		if (_master != null)
			_master.getMinionList().onMinionDie(this, _master.getSpawn().getRespawnDelay() / 2);
		
		return true;
	}

and CustomBoss delete() method:

    public void delete()
    {
        if (_lastSpawn == null)
        {
            return;
        }
        _lastSpawn.getLastSpawn().deleteMe();
        _lastSpawn.stopRespawn();
        SpawnTable.getInstance().deleteSpawn(_lastSpawn, false);
        
        _lastSpawn = null;
        setStatus(0);
        setRespawnTime((System.currentTimeMillis()/1000)+((getMinutes()*60) + (randInt(0, (int)getDelay()*60))));
        updateDbResp(getNpcId(), getRespawnTime()+(System.currentTimeMillis()/1000) , getStatus());
        
        ThreadPoolManager.getInstance().scheduleGeneral(new Runnable()
        {
            @Override
            public void run()
            {
                doSpawn();
            }
        }, getRespawnTime()*1000);
        
        Announcements.announceToAll("Mighty Boss "+getName()+" has been killed!");
    }
  • 0
Posted

What can I tell you guys?That proggramming is weird as fuck,you would never guess when I did think of solution.

.........
When I was chopping down some trees in forest. ^_^
Just changed L2MonsterInstance method like this:

    public boolean doDie(L2Character killer)
    {
if (isCustomBoss())
{
CustomBossManager.getInstance().getCustomBoss(getNpcId()).delete();
}
        
        if (!super.doDie(killer))
            return false;
        
        if (_master != null)
            _master.getMinionList().onMinionDie(this, _master.getSpawn().getRespawnDelay() / 2);
        
        return true;
    }

But still ,Tryskell, I need your explanation how this shit works.
This is L2Character doDie method,where all shit is happening:
 

	public boolean doDie(L2Character killer)
	{
		// killing is only possible one time
		synchronized (this)
		{
			if (isDead())
				return false;
			
			// now reset currentHp to zero
			setCurrentHp(0);
			
			setIsDead(true);
		}
		
		// Set target to null and cancel Attack or Cast
		setTarget(null);
		
		// Stop movement
		stopMove(null);
		
		// Stop Regeneration task, and removes all current effects
		getStatus().stopHpMpRegeneration();
		stopAllEffectsExceptThoseThatLastThroughDeath();
		
		calculateRewards(killer);
		
		// Send the Server->Client packet StatusUpdate with current HP and MP to all other L2PcInstance to inform
		broadcastStatusUpdate();
		
		// Notify L2Character AI
		if (hasAI())
			getAI().notifyEvent(CtrlEvent.EVT_DEAD, null);
		
		if (getWorldRegion() != null)
			getWorldRegion().onDeath(this);
		
		getAttackByList().clear();
		
		return true;
	}

and this is Mister who does everything method calculator:
 

	protected void calculateRewards(L2Character killer)
	{
	}

so how?
Is L2Character method calculateRewards is only like abstract method and L2MonsterInstance is using the first calculateRewards() it finds in its path,so in this example it uses CalculateRewards of L2Attackable?
I am so sorry for asking so much questions,but I want to understand everything better.

Guest
This topic is now closed to further replies.


  • Posts

    • I'm using Myext64 HF and recently tried to replicate the "br_xmas09_event" Raising Rudolph Event. Detailed event information can be found at https://legacy-lineage2.com/news/_rudolf_the_red.html After configuring .eventdata.xml and starting the server, t  server log shows: 12/02/2025 15:39:01.809, [NO_ERROR] SpawnEx2 [br_xmas2009_invisible][schuttgart20_npc2213_xs03m1] [1][0][0][0][0][346796390] 12/02/2025 15:39:02.057, DummyPacket received from L2Server 12/02/2025 15:39:02.058, server socket close 312ac(f0820224) error(997) 12/02/2025 15:39:02.058, [CallStack][tid:0][tick:2][0] Begin 12/02/2025 15:39:02.058, [CallStack][tid:0][tick:2][1][0] void __cdecl IOThreadCallback::IOThread_common(void) 12/02/2025 15:39:02.059, [CallStack][tid:0][tick:2][2][1] void IOThread_common 1 12/02/2025 15:39:02.059, [CallStack][tid:0][tick:2][3][2] void __cdecl CIOSocketEx<class CIOBufferEx<16384> >::Close(void) 12/02/2025 15:39:02.059, [CallStack][tid:0][tick:2][4][3] void __cdecl CServerSocket::OnClose(void) 12/02/2025 15:39:02.059, [CallStack][tid:0][tick:2][5] End l2server log: 12/02/2025 15:39:02.112, npc server closed(127.0.0.1) error: 64 read buffer size: (server:0 npc:0) 12/02/2025 15:39:02.112, [NO_ERROR] L2Server is under protection mode!!! 12/02/2025 15:39:02.112, [NO_ERROR] L2Server is under protection mode!!! 12/02/2025 15:39:02.112, [NO_ERROR] L2Server is under protection mode!!! 12/02/2025 15:39:02.131, dwTime[0] < 80 !!!!!!! 12/02/2025 15:39:02.131, [CallStack][tid:7][tick:1][0] Begin 12/02/2025 15:39:02.132, [CallStack][tid:7][tick:1][1][0] void __cdecl IOThreadCallback::IOThread_common(void) 12/02/2025 15:39:02.132, [CallStack][tid:7][tick:1][2][1] void IOThread_common 1 12/02/2025 15:39:02.132, [CallStack][tid:7][tick:1][4][3] void __cdecl NpcSocket::OnClose(void) 12/02/2025 15:39:02.132, [CallStack][tid:7][tick:1][3][2] void __cdecl CIOSocketEx<class CIOBufferEx<16384> >::Close(void) 12/02/2025 15:39:02.132, [CallStack][tid:7][tick:1][5] End 12/02/2025 15:39:31.767, server closed(127.0.0.1) Error: 64 Read buffer size: (server:0 npc:0) 12/02/2025 15:39:31.768, [NO_ERROR] Logout All Characters : 1   The NPC server sent a packet to the L2 server while generating the br_xmas2009_invisible game NPC server, and the NPC server subsequently crashed.     After some digging, I found a clue in a very old MXC post, but the fix was for the GF version. The whole problem is in l2server side support for NPC function CreateOnePrivateNearUser. It sends CreatePacket but Koreans made some changes in it (added instance ID) so it got broken. As Santa event is the only AI that uses this function, they probably don't know about it    So is there a way to fix this problem, specifically for Myext64 HF? I'd be happy to buy him coffee.
    • Offtopic, personal attacks, probably too old to use that much memes and what's YOUR actual contribution to L2J, in order I laugh aswell ?   The main poster quotes my pack so I answer accordingly, while you advertise L2JFrozen in both of your posts - discontinued since 2014 (? 1132 rev), with none taking back the open source lead while anyone could.   If you're somewhat affiliated to hopzone, you probably packed way more money than me. Packs don't make any type of money (barely 100e/month) and if you would follow me, you would know there are ways to handle it or even getting paid.   Hope I was short enough, 🧂🤡.
    • Hi guys, this is a CMS im sharing for lineage 2 servers, im tired of the crap i see on new release servers. Dont let me start on the IA developed ones lmao.   📋 Description Free and open source template to create landing pages for Lineage 2 private servers. Designed with a dark fantasy theme and modern animations. ✨ Current Features This FREE version includes: Complete Landing Page - Professional design ready to use Multi-language Support - Spanish, English, Portuguese Dark Fantasy Theme - With animated UI elements Server Information - Rates, features, and rules Olympiad Ranking - Rankings display Download Section - For game client Skins and Animations Gallery Streaming Widget - Twitch/Kick integration Fully Customizable - Via configuration files ❌ Not Included in Free Version ❌ User Registration System ❌ Online Players Counter ❌ Donation Panel 💎 Premium Integrations IntegrationPrice Registration System $50 USD Online Players Counter $50 USD Donation Panel $50 USD   📧 Contact: https://gh0tstudio.com 🛠️ Tech Stack Technology    Version    Description React              19.2.0       UI Library TypeScript       5.8.2        Static typing Vite                 6.2.0         Build tool TailwindCSS   CDNCSS    Framework Lucide React   0.554.0         Icons i18next           23.16.0       Internationalization react-i18next   15.1.0        React bindings for i18n All documentation provided for AI AGENTS to make changes on the ui texts and so on. u can have a look on the cms fully working with donation panel, online count and register via: https://crmlineage2.vercel.app/ https://github.com/6h0T/CRM-LINEAGE2-FREE If u are in the lookings to develop a unique website for ur projects, u can dm me or contact me throw my socials on my profile. all code has encrypted references so any type of rebranding, copying or selling without authorization will result in take downs
    • Hello dude, i can help u out, i reached to u via DM, my studio is https://gh0tstudio.com i have worked with almost 40 brands on developing Private Lineage and Mu online servers, dashboard for vote pages and more. I sent u some examples too
    • L2 TARTARUS - HTML DESIGN       L2 KOMBAT - ANIMATED BORDER   L2 SERENITY - ANIMATED LOGO   L2 ARCANE - COMMUNITY BOARD     L2 AMERIKA - ADVERTISING BANNER   L2 ZERON - ADVERTISING BANNER  
  • 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