Page 1 of 1

Dragon Vortex problem

Posted: Thu Sep 27, 2012 8:05 pm
by Maylorian
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?

Re: Dragon Vortex problem

Posted: Fri Sep 28, 2012 12:39 am
by Zoey76
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?
I think same party can't, but another party can spawn another raid boss.

Re: Dragon Vortex problem

Posted: Fri Sep 28, 2012 12:59 am
by Gladicek
On retail you can spawn another boss when some boss is already spawned.

Re: Dragon Vortex problem

Posted: Fri Sep 28, 2012 5:21 am
by UnAfraid
Gladicek wrote:On retail you can spawn another boss when some boss is already spawned.
yup

Re: Dragon Vortex problem

Posted: Fri Sep 28, 2012 7:17 am
by St3eT
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 :P

Re: Dragon Vortex problem

Posted: Fri Sep 28, 2012 7:40 am
by Maylorian
Gladicek wrote:On retail you can spawn another boss when some boss is already spawned.
well if this is true its ok with me.
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 :P
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.

also i was wandering if the:\

Code: Select all

 L2RaidBossInstance boss1 = _bosses.get(bossid1);if (boss1.getRaidStatus().equals(StatusEnum.ALIVE))return "alreadyspawned.html";
would work on this case.

Code: Select all

protected static Map<Integer, L2RaidBossInstance> _bosses;_bosses = new FastMap<Integer, L2RaidBossInstance>();
those are the vars i inputed. need your opinion on that thought