Jump to content
  • 0

Removing Grand Bosses.


Question

Posted

Hello guys,
I need to remove everything related to grand bosses,is there an easy way to remove them from source?I don't need to delete GrandBoss classes I just need that server doesn't load them.I tried removing GrandBossManager.init(); from GameServer.java,but it doesn't help.
If there isn't an easy way to remove Grand Bosses,can I easily remove Boss Zones?If I remove zones from BossZones.xml file,I get error,for some reason it comes from OlympiadManager,to be more precise,from this line: final Collection<L2OlympiadStadiumZone> zones = ZoneManager.getInstance().getAllZones(L2OlympiadStadiumZone.class);
Shouldn't it get olympiad arenas?
In conclusion,how can I easily remove all grand boss zones?
Thank you!

6 answers to this question

Recommended Posts

  • 0
Posted (edited)

You have to delete the whole manager or at least every external calls to it, otherwise it loads it from the moment it calls a getInstance(). No other choice.

 

If you don't need it, the best move is to cleanup.

Edited by Tryskell
  • 0
Posted

Why you want to do it? Simply deactivate their AI/scripts, and clean the spawnlist. You can also clean bosszone and you should be fine.

  • 0
Posted (edited)

The main reason is,I create my own boss engine and am using Grand boss templates and same zones,so it doesn't let you in zaken zone or others.
Scripts are disabled.I just actually want to get rid of zones.If I remove zones from xml file it throws error.It throws it for this line:ZoneManager.getInstance().getAllZones(L2OlympiadStadiumZone.class);
I guess it can easily be done by changing removePlayersFromBossZone method(or similliar name,can't check now) in L2PcInstance.
I am just interested if there is easy way to disable grand bosses.

Edited by StealthyS4m
Guest
This topic is now closed to further replies.


×
×
  • Create New...