Jump to content
  • 0

Help Unsummon a NPC


alassyr

Question

Recommended Posts

  • 0

i never read any guide about this:/

i dont think that is possible.

 

no i thank that may be done by skill  if you seen a quest NPC there are some quest hide after X seconds in the game

Link to comment
Share on other sites

  • 0

tell us the reason for you want it.

maybe find an other solution

 

let him find it and also let him test if its fit with his idea all is fine else he can ask again.... just let the guys working a bit by there self !

Link to comment
Share on other sites

  • 0

ok thank you i will tell you

 

i think to make a custom NPC like(GM shop,Buffer,Teleport) that can be show when you press an item

 

i success to make it but stay forever I need to hide it after X second

 

anyone Know how to do that

Link to comment
Share on other sites

  • 0

class UnSpawn implements Runnable
{
private final L2Npc npc;

public UnSpawn(final L2Npc npc)
{
	this.npc = npc;
}

@Override
public void run()
{
	if(npc != null)
	{
		SpawnTable.getInstance().deleteSpawn(npc.getLastSpawn(), false);
		npc.deleteMe();
	}
}
}

Where you wanna use it:

 

long delay = YOUR TIME IN SECS * 1000;
L2Npc yourNpc;
ThreadPoolManager.getInstance().scheduleGeneral(new UnSpawn(yourNpc), delay);

Link to comment
Share on other sites

  • 0

class UnSpawn implements Runnable
{
private final L2Npc npc;

public UnSpawn(final L2Npc npc)
{
	this.npc = npc;
}

@Override
public void run()
{
	if(npc != null)
	{
		SpawnTable.getInstance().deleteSpawn(npc.getLastSpawn(), false);
		npc.deleteMe();
	}
}
}

Where you wanna use it:

 

long delay = YOUR TIME IN SECS * 1000;
L2Npc yourNpc;
ThreadPoolManager.getInstance().scheduleGeneral(new UnSpawn(yourNpc), delay);

 

Thx Amazing But i relay noob Plz tell me where i can add it

i use l2jfree gracia final

Link to comment
Share on other sites

  • 0

ahhh well thought u wanted to do somethings else ^^ but this also exist in game too ;)

if i remember me right its a dwarf summon he can also summon his own shop which "unspawn" after x sec/min

 

but u already got the help u wanted...

Link to comment
Share on other sites

  • 0

if the npcs spawn automatically, add it into the site where they are spawned, and basing on npc id, you can schedule the task if needed.

If is spawned manually, create a new admin command which one after spawn the mob, the task is scheduled automatically

Link to comment
Share on other sites

  • 0

thx guys but where i can add schedule time which class i must use help me to run it perfect

 

B1ggBoss i use Item to summon a npc i make it throw "summon_items.xml"By using this

 

<item id="14559">

    <npcId val="40007"/>

    <summonType val="0"/>

<unsummon val="2" />

  </item>

 

I read there are command "<unsummon val="2" />" make it unsummon after 1 minute is that true coz i use it but no result :(

 

sorry about that but cant use above code

 

 

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.



×
×
  • 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