Jump to content
  • 0

[Help] Grandbosses


manos2864

Question

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 ??

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

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

Link to comment
Share on other sites

  • 0

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.

Link to comment
Share on other sites

  • 0

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

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...