Jump to content
  • 0

[Help] Grandbosses


Question

Posted

in gameserver(window) it has 4 times antharas..... if i delete 3 last times(for example 29066/29067/29068) i will have problem???

GrandBossManager: Queen Ant(29001) status is 0

GrandBossManager: Core(29006) status is 0.

GrandBossManager: Orfen(29014) status is 0.

GrandBossManager: Antharas(29019) status is 0.

GrandBossManager: Baium(29020) status is 2.

GrandBossManager: Next spawn date of Baium is

GrandBossManager: Zaken(29022) status is 0.

GrandBossManager: Valakas(29028) status is 0.

GrandBossManager: Frintezza(29045) status is 0

GrandBossManager: Antharas(29066) status is 0.

GrandBossManager: Antharas(29067) status is 0.

GrandBossManager: Antharas(29068) status is 0.

 

 

frintezza (29045) into navicat ... grandboss_data he dont have loc_x kai loc_y kai loc_z can someone tell me these locs ??

7 answers to this question

Recommended Posts

  • 0
Posted

try to insert this sql scripts:

 

UPDATE grandboss_data SET status="1";

 

you don't need to insert frintezza's location in sql.

 

its already have in data/scripts/ai/individual/Frintezza.java

  • 0
Posted

There are 4 (or 3) antharas because there are actually 4 (or 3) different Antharas, according to the power of the party who goes to the lair.

 

Drops and power are totally different.

  • 0
Posted

Antharas.java

			if (FWA_OLDANTHARAS)
				npcId = 29019; // old
			else if (_players.size() <= FWA_LIMITOFWEAK)
				npcId = 29066; // weak
			else if (_players.size() > FWA_LIMITOFNORMAL)
				npcId = 29068; // strong
			else
				npcId = 29067; // normal

So if you want only to have the old antharas you should change

private static final boolean FWA_OLDANTHARAS = false;

to true

Guest
This topic is now closed to further replies.


×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..