Antharas

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
nimeni
Posts: 19
Joined: Fri Jun 15, 2007 7:43 pm

Antharas

Post by nimeni »

I want to be only 29066
Where should I change?

here:

Code: Select all

	private static final int FWA_LIMITOFWEAK = 45;	private static final int FWA_LIMITOFNORMAL = 63;
or here:

Code: Select all

				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
User avatar
LasTravel
Posts: 888
Joined: Tue Jan 05, 2010 12:08 am
Location: Spain

Re: Antharas

Post by LasTravel »

If you want only use Antharas ID 29066 if you don't want to make one "big" modification on the AI just change:

Code: Select all

	// monstersId	private static final int ANTHARASOLDID = 29019;	private static final int ANTHARASWEAKID = 29066;	private static final int ANTHARASNORMALID = 29067;	private static final int ANTHARASSTRONGID = 29068;
to

Code: Select all

	// monstersId	private static final int ANTHARASOLDID = 29066;	private static final int ANTHARASWEAKID = 29066;	private static final int ANTHARASNORMALID = 29066;	private static final int ANTHARASSTRONGID = 29066;
User avatar
LasTravel
Posts: 888
Joined: Tue Jan 05, 2010 12:08 am
Location: Spain

Re: Antharas

Post by LasTravel »

nimeni wrote:error.
:?:
User avatar
Flashy
Posts: 310
Joined: Mon Sep 29, 2008 11:49 am
Location: Germany

Re: Antharas

Post by Flashy »

change only:

Code: Select all

 private static final int FWA_LIMITOFWEAK = 200;private static final int FWA_LIMITOFNORMAL = 300; 
so you need min. 200 player before Antharas is changing to id 29067...
Post Reply