Jump to content
  • 0

Kill All monster in map except specific label or ID


zeusc137

Question


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.01
  • Content Count:  105
  • Reputation:   7
  • Joined:  04/11/22
  • Last Seen:  

Hello everyone!

I would like to kill all the slaves from a MVP, like when Baphomet summons its Baphomet Jrs, in this case I would like to kill the slaves and leave my Baphomet alive.

	getunitdata(getnpcid(0), 'd);
	
	// Invoca o MVP configurado = 2100 Baphomet in this example:
	monster 'map$,'d[UNPC_X],'d[UNPC_Y],"MVP Test",2100,1,instance_npcname("MVP Invoker#1")+"::OnMyMobDead";

Can I use "getunitdata" to retrieve the slaves from this MVP and kill only those? 
I also have the MVP ID so it would work if I could kill like this: 

killallexcept <MOB_ID_TO_AVOID>;

Thanks for your time! Have a good one!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

  • Group:  Forum Moderator
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  1282
  • Reputation:   393
  • Joined:  02/03/12
  • Last Seen:  

3 hours ago, zeusc137 said:

Hello everyone!

I would like to kill all the slaves from a MVP, like when Baphomet summons its Baphomet Jrs, in this case I would like to kill the slaves and leave my Baphomet alive.

	getunitdata(getnpcid(0), 'd);
	
	// Invoca o MVP configurado = 2100 Baphomet in this example:
	monster 'map$,'d[UNPC_X],'d[UNPC_Y],"MVP Test",2100,1,instance_npcname("MVP Invoker#1")+"::OnMyMobDead";

Can I use "getunitdata" to retrieve the slaves from this MVP and kill only those? 
I also have the MVP ID so it would work if I could kill like this: 

killallexcept <MOB_ID_TO_AVOID>;

Thanks for your time! Have a good one!

The problem with this approach is what's stopping the A.I. from summoning more slaves? Wouldn't recommend having a loop.

I like the command idea, but I think this is the wrong application for it.

What would be better is my previous suggestion of a completely different duplicate mob that doesn't spawn slaves. This is pretty simple to achieve with mob_avail.

You can also look into adding a new mapflag that prevents summoning slaves on a map: `mf_monster_noslaves`
Honestly summoning slaves might be a skill that mobs use so maybe you could use the restricted map flag. I'm not entirely sure if that applies to mobs though.

  • Like 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  2
  • Reputation:   1
  • Joined:  11/01/24
  • Last Seen:  

5 hours ago, zeusc137 said:

Hello everyone!

I would like to kill all the slaves from a MVP, like when Baphomet summons its Baphomet Jrs, in this case I would like to kill the slaves and leave my Baphomet alive.

	getunitdata(getnpcid(0), 'd);
	
	// Invoca o MVP configurado = 2100 Baphomet in this example:
	monster 'map$,'d[UNPC_X],'d[UNPC_Y],"MVP Test",2100,1,instance_npcname("MVP Invoker#1")+"::OnMyMobDead";

Can I use "getunitdata" to retrieve the slaves from this MVP and kill only those? 
I also have the MVP ID so it would work if I could kill like this: 

killallexcept <MOB_ID_TO_AVOID>;

Thanks for your time! Have a good one!


 

I also would like to know how to do this... Do you think we need to create such a command?

Edited by BenyDouglas
  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...