Jump to content
  • 0

Npc spanw debuff


Question

Posted

Hi all.

 

I ve been all day looking for the way to do it but I could not, cans give me a suggestion on how to do it?

 

I want an NPC that when spawn, the zone becomes debuff and when the NPC is death, the debuff disappears.

 

L2jServer HF

3 answers to this question

Recommended Posts

  • 0
Posted

Create a new zone type (if none fits your needs) -> create a new zone based on the npc's coordinates on spawn -> add the zone to the manager -> remove the zone from the manager when the npc get killed.

  • 0
Posted (edited)

DamageZone type can be enabled/disabled, it's your best go.

  • Create a DamageZone, disable it by default.
  • Create a script, put your npcId on addKillId / addSpawnId, and on onSpawn / onKill, affect the given zoneId (exemple with onSpawn, onKill owuld be simply false)
Quote

final DamageZone zone = ZoneManager.getInstance().getZoneById(110000, DamageZone.class);
if (zone != null)
    zone.setEnabled(true);

 

For a debuff, use EffectZone instead. You can affect enable/disable statut with editStatus.

Edited by Tryskell

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 account

Sign in

Already have an account? Sign in here.

Sign In Now


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