Page 1 of 1

Antharas

Posted: Mon Aug 02, 2010 1:37 pm
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

Re: Antharas

Posted: Mon Aug 02, 2010 1:46 pm
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;

Re: Antharas

Posted: Mon Aug 02, 2010 3:48 pm
by LasTravel
nimeni wrote:error.
:?:

Re: Antharas

Posted: Tue Aug 03, 2010 5:51 pm
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...