Problem with raidbosses

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
hiroshima
Posts: 107
Joined: Tue Nov 03, 2009 1:28 pm

Problem with raidbosses

Post by hiroshima »

If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number: Latest freya
L2JDP Revision Number:Latest freya

well, i have problem:
when someone fights with Baium on my server, on the end of raid there's appearing another one... u cant target real one and fake too then.... we also had some problems with core... what should i do?
Pangea
Posts: 6
Joined: Fri Jul 30, 2010 12:09 pm

Re: Problem with raidbosses

Post by Pangea »

I have the same problem and the HP have also problem.Player kill the raid boss and they have it 20%- the hp and than the hp goin again to 100% full from alone.

Have someone the same problem?
If yes would be really great if you can give us a tip how to fix it.

Thanks in advance and sorry for my bad english.
NoobSchooler
Posts: 2
Joined: Sun Jun 14, 2009 7:35 am

Re: Problem with raidbosses

Post by NoobSchooler »

i also have the same prob seeing multi Baiums during raids ive seenup to 3 walking around seem the other 2 are just kinda walking around and players acan still target the real one and get the job done.

but one other prob im haveing with him is say i spawn baium in coliseum for raid event when players try to attack they drop dead like he reflected the damage or something but no system messaeg u just die when u hit him.

but when u go to his lair u dont die when u hit him any help on that would be great

ps im using latest rev 4473 and latest datapack updated server last night
User avatar
pinkcore
Posts: 247
Joined: Fri Jul 24, 2009 3:04 am
Location: Czech Republic

Re: Problem with raidbosses

Post by pinkcore »

I have the same problem.

You can fight baium easily. But than, when Baium gets HP under 50%, will appear another one, but this is only the image, no real target, and they walking from 1 point to current baium's point. Second Baium (imagination) will disapear after Baium is dead.
I'm not here only for food!
martin86
Posts: 41
Joined: Wed Dec 29, 2010 8:46 am

Re: Problem with raidbosses

Post by martin86 »

I puted 3 new raidbosses in to raidboss_spawnlist.
I changed their type in npc table to L2RaidBoss.
I started the server and everything looking good, raidbosses are spawned and if i killed them their status was fixed to respawn in some time.

But whith several server restart i start to gething this in server console:
RaidBossSpawnManager: Could not load raidboss #29040 from DB
RaidBossSpawnManager: Could not load raidboss #29099 from DB
RaidBossSpawnManager: Could not load raidboss #29118 from DB

What did i forgot ? Its adding a raid boss in to table raidboss_spawnlist not enaff ?
User avatar
pinkcore
Posts: 247
Joined: Fri Jul 24, 2009 3:04 am
Location: Czech Republic

Re: Problem with raidbosses

Post by pinkcore »

martin86 wrote:I puted 3 new raidbosses in to raidboss_spawnlist.
I changed their type in npc table to L2RaidBoss.
I started the server and everything looking good, raidbosses are spawned and if i killed them their status was fixed to respawn in some time.

But whith several server restart i start to gething this in server console:
RaidBossSpawnManager: Could not load raidboss #29040 from DB
RaidBossSpawnManager: Could not load raidboss #29099 from DB
RaidBossSpawnManager: Could not load raidboss #29118 from DB

What did i forgot ? Its adding a raid boss in to table raidboss_spawnlist not enaff ?
You forgot to create new NPC
I'm not here only for food!
martin86
Posts: 41
Joined: Wed Dec 29, 2010 8:46 am

Re: Problem with raidbosses

Post by martin86 »

pinkcore wrote: You forgot to create new NPC
I dont understand complitly what are you trying to say. What NPC do i need to make ?
I cant put in NPC table the same ID of raidbos twice whith type="L2NPC" and type="L2RaidBoss"
User avatar
tukune
Posts: 533
Joined: Sun Mar 29, 2009 2:35 pm
Location: Japan

Re: Problem with raidbosses

Post by tukune »

You should probably post the .sql code
martin86
Posts: 41
Joined: Wed Dec 29, 2010 8:46 am

Re: Problem with raidbosses

Post by martin86 »

I was editing only this two tables:

In NPC table

Code: Select all

 (29040,29040,'Wings_of_Flame_Ixion',0,'Gatekeeper_of_Valakas',0,'LineageMonster2.inferno_drake_20_bi','29.00','42.00',84,'male','L2Monster',40,'218742.00000','1697.00000','349.46000','10.10000',60,57,73,76,70,80,2535975,1356048,'9759.00000','6057.00000','1181.00000','1842.00000',230,4,0,3819,0,0,0,57,200,1,1,0,1),(29099,29099,'Baylor',0,'Warden',0,'LineageMonster4.Barler','54.00','77.50',85,'male','L2GrandBoss',40,'1078413.00000','90984.00000','100.86274','1000.00000',60,57,73,76,70,80,3190205,2191683,'6579.00000','2435.00000','2467.00000','1620.00000',230,4,600,3819,0,0,0,34,180,1,1,0,1),(29118,29118,'Beleth',0,'',0,'LineageMonster4.bereth_key','15.00','30.00',85,'male','L2GrandBoss',40,'700000.00000','909836.00000','200.00000','1000.00000',40,43,30,21,20,20,16447437,1362651,'6816.00000','2015.00000','3958.00000','1016.00000',290,4,0,253,0,0,0,60,160,1,1,0,1), 
In raidboss_spawnlist table

Code: Select all

 DELETE FROM spawnlist WHERE npc_templateid=29040; -- Wings of FlameDELETE FROM spawnlist WHERE npc_templateid=29099; -- BaylorDELETE FROM spawnlist WHERE npc_templateid=29118; -- BelethUPDATE npc SET type='L2RaidBoss' WHERE id=29040; -- Wings of FlameUPDATE npc SET type='L2RaidBoss' WHERE id=29099; -- BaylorUPDATE npc SET type='L2RaidBoss' WHERE id=29118; -- Beleth REPLACE INTO `raidboss_spawnlist` VALUES(29040,1,189400,-105702,-782,0,43200,129600,0,28905,604800),  -- Flame(29099,1,153569,142075,-12737,0,43200,129600,0,2566622,201984), -- Baylor(29118,1,16323,213139,-9359,0,43200,129600,0,1666000,2019835); -- Beleth 
User avatar
tukune
Posts: 533
Joined: Sun Mar 29, 2009 2:35 pm
Location: Japan

Re: Problem with raidbosses

Post by tukune »

I tried it. No problem. 100% worked.

Code: Select all

-- Wings of FlameDELETE FROM spawnlist WHERE npc_templateid=29040;UPDATE npc SET type='L2RaidBoss' WHERE id=29040;REPLACE INTO `raidboss_spawnlist` VALUES (29040,1,189400,-105702,-782,0,43200,129600,0,28905,604800); 
Check your .SQL syntax.
martin86
Posts: 41
Joined: Wed Dec 29, 2010 8:46 am

Re: Problem with raidbosses

Post by martin86 »

Like i said it before, it worked for me too, but whith several server restart i started to get that eror.

You think that i have an eror in my sql syntact, i dont see it ...
Post Reply