If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number: last
L2JDP Revision Number: last
hello, when you spawn a rb with dragon vortex you can spawn another one while the first one is up too. That should be happening anyone knows a way to fix this?
Dragon Vortex problem
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
- Zoey76
- L2j Inner Circle
- Posts: 7008
- Joined: Tue Aug 11, 2009 3:36 am
Re: Dragon Vortex problem
I think same party can't, but another party can spawn another raid boss.Maylorian wrote:If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number: last
L2JDP Revision Number: last
hello, when you spawn a rb with dragon vortex you can spawn another one while the first one is up too. That should be happening anyone knows a way to fix this?
Powered by Eclipse 4.34
| Eclipse Temurin 21
| MariaDB 11.3.2
| L2J Server 2.6.3.0 - High Five 
Join our Discord! 

- Gladicek
- Posts: 634
- Joined: Wed Jan 19, 2011 6:25 pm
- Location: Czech Republic
Re: Dragon Vortex problem
On retail you can spawn another boss when some boss is already spawned.

L2J retired
- UnAfraid
- L2j Veteran
- Posts: 4199
- Joined: Mon Jul 23, 2007 4:25 pm
- Location: Bulgaria
- Contact:
Re: Dragon Vortex problem
yupGladicek wrote:On retail you can spawn another boss when some boss is already spawned.
- St3eT
- Posts: 961
- Joined: Sun Mar 07, 2010 6:50 pm
Re: Dragon Vortex problem
Is retail but if u want change it add boolean isspawned = false, when u spawn boss give it true and onkill false, but idk what unspawn, after only check when player try summon rb if is isspawned = false
maybe UnAfraid can help you how to set false when RB unspawn
maybe UnAfraid can help you how to set false when RB unspawn

-
- Posts: 23
- Joined: Sun Sep 09, 2012 11:01 am
Re: Dragon Vortex problem
well if this is true its ok with me.Gladicek wrote:On retail you can spawn another boss when some boss is already spawned.
on that one tho i tried but in OnKill it wont let me return a boolean isspawned but it will let me if i try return the boolean isPet which is used in almost all of the raidboss scripts.St3eT wrote:Is retail but if u want change it add boolean isspawned = false, when u spawn boss give it true and onkill false, but idk what unspawn, after only check when player try summon rb if is isspawned = false
maybe UnAfraid can help you how to set false when RB unspawn
also i was wandering if the:\
Code: Select all
L2RaidBossInstance boss1 = _bosses.get(bossid1);if (boss1.getRaidStatus().equals(StatusEnum.ALIVE))return "alreadyspawned.html";
Code: Select all
protected static Map<Integer, L2RaidBossInstance> _bosses;_bosses = new FastMap<Integer, L2RaidBossInstance>();