Jump to content
  • 0

Help Unsummon a NPC


Question

Recommended Posts

  • 0
Posted

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

  • 0
Posted

yes its possible and already exist in game so find the npc and u will have the code ;)

 

I search for along time about that if you have it plz post it here

 

 

  • 0
Posted

i don't have the code never needed it.... i just remember me one npc... hes in "forge of the gods - lower level" to get the recipes... he change his loc after x min/hours

  • 0
Posted

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 !

  • 0
Posted

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

  • 0
Posted

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);

  • 0
Posted

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

  • 0
Posted

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...

  • 0
Posted

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

  • 0
Posted

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

 

 

Guest
This topic is now closed to further replies.



×
×
  • Create New...