L2AttackableAI.java 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841
  1. /*
  2. * Copyright (C) 2004-2013 L2J Server
  3. *
  4. * This file is part of L2J Server.
  5. *
  6. * L2J Server is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * L2J Server is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. package com.l2jserver.gameserver.ai;
  20. import static com.l2jserver.gameserver.ai.CtrlIntention.AI_INTENTION_ACTIVE;
  21. import static com.l2jserver.gameserver.ai.CtrlIntention.AI_INTENTION_ATTACK;
  22. import static com.l2jserver.gameserver.ai.CtrlIntention.AI_INTENTION_IDLE;
  23. import java.util.ArrayList;
  24. import java.util.Collection;
  25. import java.util.List;
  26. import java.util.concurrent.Future;
  27. import com.l2jserver.Config;
  28. import com.l2jserver.gameserver.GameTimeController;
  29. import com.l2jserver.gameserver.GeoData;
  30. import com.l2jserver.gameserver.ThreadPoolManager;
  31. import com.l2jserver.gameserver.datatables.NpcTable;
  32. import com.l2jserver.gameserver.datatables.TerritoryTable;
  33. import com.l2jserver.gameserver.instancemanager.DimensionalRiftManager;
  34. import com.l2jserver.gameserver.model.L2CharPosition;
  35. import com.l2jserver.gameserver.model.L2Object;
  36. import com.l2jserver.gameserver.model.actor.L2Attackable;
  37. import com.l2jserver.gameserver.model.actor.L2Character;
  38. import com.l2jserver.gameserver.model.actor.L2Npc;
  39. import com.l2jserver.gameserver.model.actor.L2Playable;
  40. import com.l2jserver.gameserver.model.actor.L2Summon;
  41. import com.l2jserver.gameserver.model.actor.instance.L2DoorInstance;
  42. import com.l2jserver.gameserver.model.actor.instance.L2FestivalMonsterInstance;
  43. import com.l2jserver.gameserver.model.actor.instance.L2FriendlyMobInstance;
  44. import com.l2jserver.gameserver.model.actor.instance.L2GrandBossInstance;
  45. import com.l2jserver.gameserver.model.actor.instance.L2GuardInstance;
  46. import com.l2jserver.gameserver.model.actor.instance.L2MonsterInstance;
  47. import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
  48. import com.l2jserver.gameserver.model.actor.instance.L2RaidBossInstance;
  49. import com.l2jserver.gameserver.model.actor.instance.L2RiftInvaderInstance;
  50. import com.l2jserver.gameserver.model.actor.instance.L2StaticObjectInstance;
  51. import com.l2jserver.gameserver.model.actor.templates.L2NpcTemplate;
  52. import com.l2jserver.gameserver.model.actor.templates.L2NpcTemplate.AIType;
  53. import com.l2jserver.gameserver.model.effects.L2EffectType;
  54. import com.l2jserver.gameserver.model.quest.Quest;
  55. import com.l2jserver.gameserver.model.quest.Quest.QuestEventType;
  56. import com.l2jserver.gameserver.model.skills.L2Skill;
  57. import com.l2jserver.gameserver.model.skills.targets.L2TargetType;
  58. import com.l2jserver.gameserver.model.zone.ZoneId;
  59. import com.l2jserver.gameserver.util.Util;
  60. import com.l2jserver.util.Rnd;
  61. /**
  62. * This class manages AI of L2Attackable.
  63. */
  64. public class L2AttackableAI extends L2CharacterAI implements Runnable
  65. {
  66. private static final int RANDOM_WALK_RATE = 30; // confirmed
  67. // private static final int MAX_DRIFT_RANGE = 300;
  68. private static final int MAX_ATTACK_TIMEOUT = 1200; // int ticks, i.e. 2min
  69. /**
  70. * The L2Attackable AI task executed every 1s (call onEvtThink method).
  71. */
  72. private Future<?> _aiTask;
  73. /**
  74. * The delay after which the attacked is stopped.
  75. */
  76. private int _attackTimeout;
  77. /**
  78. * The L2Attackable aggro counter.
  79. */
  80. private int _globalAggro;
  81. /**
  82. * The flag used to indicate that a thinking action is in progress, to prevent recursive thinking.
  83. */
  84. private boolean _thinking;
  85. private int timepass = 0;
  86. private int chaostime = 0;
  87. private final L2NpcTemplate _skillrender;
  88. private List<L2Skill> shortRangeSkills = new ArrayList<>();
  89. private List<L2Skill> longRangeSkills = new ArrayList<>();
  90. int lastBuffTick;
  91. /**
  92. * Constructor of L2AttackableAI.
  93. * @param accessor The AI accessor of the L2Character
  94. */
  95. public L2AttackableAI(L2Character.AIAccessor accessor)
  96. {
  97. super(accessor);
  98. _skillrender = NpcTable.getInstance().getTemplate(getActiveChar().getTemplate().getNpcId());
  99. _attackTimeout = Integer.MAX_VALUE;
  100. _globalAggro = -10; // 10 seconds timeout of ATTACK after respawn
  101. }
  102. @Override
  103. public void run()
  104. {
  105. // Launch actions corresponding to the Event Think
  106. onEvtThink();
  107. }
  108. /**
  109. * <B><U> Actor is a L2GuardInstance</U> :</B>
  110. * <ul>
  111. * <li>The target isn't a Folk or a Door</li>
  112. * <li>The target isn't dead, isn't invulnerable, isn't in silent moving mode AND too far (>100)</li>
  113. * <li>The target is in the actor Aggro range and is at the same height</li>
  114. * <li>The L2PcInstance target has karma (=PK)</li>
  115. * <li>The L2MonsterInstance target is aggressive</li>
  116. * </ul>
  117. * <B><U> Actor is a L2SiegeGuardInstance</U> :</B>
  118. * <ul>
  119. * <li>The target isn't a Folk or a Door</li>
  120. * <li>The target isn't dead, isn't invulnerable, isn't in silent moving mode AND too far (>100)</li>
  121. * <li>The target is in the actor Aggro range and is at the same height</li>
  122. * <li>A siege is in progress</li>
  123. * <li>The L2PcInstance target isn't a Defender</li>
  124. * </ul>
  125. * <B><U> Actor is a L2FriendlyMobInstance</U> :</B>
  126. * <ul>
  127. * <li>The target isn't a Folk, a Door or another L2Npc</li>
  128. * <li>The target isn't dead, isn't invulnerable, isn't in silent moving mode AND too far (>100)</li>
  129. * <li>The target is in the actor Aggro range and is at the same height</li>
  130. * <li>The L2PcInstance target has karma (=PK)</li>
  131. * </ul>
  132. * <B><U> Actor is a L2MonsterInstance</U> :</B>
  133. * <ul>
  134. * <li>The target isn't a Folk, a Door or another L2Npc</li>
  135. * <li>The target isn't dead, isn't invulnerable, isn't in silent moving mode AND too far (>100)</li>
  136. * <li>The target is in the actor Aggro range and is at the same height</li>
  137. * <li>The actor is Aggressive</li>
  138. * </ul>
  139. * @param target The targeted L2Object
  140. * @return True if the target is autoattackable (depends on the actor type).
  141. */
  142. private boolean autoAttackCondition(L2Character target)
  143. {
  144. if ((target == null) || (getActiveChar() == null))
  145. {
  146. return false;
  147. }
  148. final L2Attackable me = getActiveChar();
  149. // Check if the target isn't invulnerable
  150. if (target.isInvul())
  151. {
  152. // However EffectInvincible requires to check GMs specially
  153. if ((target instanceof L2PcInstance) && ((L2PcInstance) target).isGM())
  154. {
  155. return false;
  156. }
  157. if ((target instanceof L2Summon) && ((L2Summon) target).getOwner().isGM())
  158. {
  159. return false;
  160. }
  161. }
  162. // Check if the target isn't a Folk or a Door
  163. if (target instanceof L2DoorInstance)
  164. {
  165. return false;
  166. }
  167. // Check if the target isn't dead, is in the Aggro range and is at the same height
  168. if (target.isAlikeDead() || ((target instanceof L2Playable) && !me.isInsideRadius(target, me.getAggroRange(), true, false)))
  169. {
  170. return false;
  171. }
  172. // Check if the target is a L2Playable
  173. if (target.isPlayable())
  174. {
  175. // Check if the AI isn't a Raid Boss, can See Silent Moving players and the target isn't in silent move mode
  176. if (!(me.isRaid()) && !(me.canSeeThroughSilentMove()) && ((L2Playable) target).isSilentMoving())
  177. {
  178. return false;
  179. }
  180. }
  181. // Gets the player if there is any.
  182. final L2PcInstance player = target.getActingPlayer();
  183. if (player != null)
  184. {
  185. // Don't take the aggro if the GM has the access level below or equal to GM_DONT_TAKE_AGGRO
  186. if (player.isGM() && !player.getAccessLevel().canTakeAggro())
  187. {
  188. return false;
  189. }
  190. // check if the target is within the grace period for JUST getting up from fake death
  191. if (player.isRecentFakeDeath())
  192. {
  193. return false;
  194. }
  195. if (player.isInParty() && player.getParty().isInDimensionalRift())
  196. {
  197. byte riftType = player.getParty().getDimensionalRift().getType();
  198. byte riftRoom = player.getParty().getDimensionalRift().getCurrentRoom();
  199. if ((me instanceof L2RiftInvaderInstance) && !DimensionalRiftManager.getInstance().getRoom(riftType, riftRoom).checkIfInZone(me.getX(), me.getY(), me.getZ()))
  200. {
  201. return false;
  202. }
  203. }
  204. }
  205. // Check if the actor is a L2GuardInstance
  206. if (me instanceof L2GuardInstance)
  207. {
  208. // Check if the L2PcInstance target has karma (=PK)
  209. if ((player != null) && (player.getKarma() > 0))
  210. {
  211. return GeoData.getInstance().canSeeTarget(me, player); // Los Check
  212. }
  213. // Check if the L2MonsterInstance target is aggressive
  214. if ((target instanceof L2MonsterInstance) && Config.GUARD_ATTACK_AGGRO_MOB)
  215. {
  216. return (((L2MonsterInstance) target).isAggressive() && GeoData.getInstance().canSeeTarget(me, target));
  217. }
  218. return false;
  219. }
  220. else if (me instanceof L2FriendlyMobInstance)
  221. {
  222. // Check if the target isn't another L2Npc
  223. if (target instanceof L2Npc)
  224. {
  225. return false;
  226. }
  227. // Check if the L2PcInstance target has karma (=PK)
  228. if ((target instanceof L2PcInstance) && (((L2PcInstance) target).getKarma() > 0))
  229. {
  230. return GeoData.getInstance().canSeeTarget(me, target); // Los Check
  231. }
  232. return false;
  233. }
  234. else
  235. {
  236. if (target instanceof L2Attackable)
  237. {
  238. if ((me.getEnemyClan() == null) || (((L2Attackable) target).getClan() == null))
  239. {
  240. return false;
  241. }
  242. if (!target.isAutoAttackable(me))
  243. {
  244. return false;
  245. }
  246. if (me.getEnemyClan().equals(((L2Attackable) target).getClan()))
  247. {
  248. if (me.isInsideRadius(target, me.getEnemyRange(), false, false))
  249. {
  250. return GeoData.getInstance().canSeeTarget(me, target);
  251. }
  252. return false;
  253. }
  254. if ((me.getIsChaos() > 0) && me.isInsideRadius(target, me.getIsChaos(), false, false))
  255. {
  256. if ((me.getFactionId() != null) && me.getFactionId().equals(((L2Attackable) target).getFactionId()))
  257. {
  258. return false;
  259. }
  260. // Los Check
  261. return GeoData.getInstance().canSeeTarget(me, target);
  262. }
  263. }
  264. if ((target instanceof L2Attackable) || (target instanceof L2Npc))
  265. {
  266. return false;
  267. }
  268. // depending on config, do not allow mobs to attack _new_ players in peacezones,
  269. // unless they are already following those players from outside the peacezone.
  270. if (!Config.ALT_MOB_AGRO_IN_PEACEZONE && target.isInsideZone(ZoneId.PEACE))
  271. {
  272. return false;
  273. }
  274. if (me.isChampion() && Config.L2JMOD_CHAMPION_PASSIVE)
  275. {
  276. return false;
  277. }
  278. // Check if the actor is Aggressive
  279. return (me.isAggressive() && GeoData.getInstance().canSeeTarget(me, target));
  280. }
  281. }
  282. public void startAITask()
  283. {
  284. // If not idle - create an AI task (schedule onEvtThink repeatedly)
  285. if (_aiTask == null)
  286. {
  287. _aiTask = ThreadPoolManager.getInstance().scheduleAiAtFixedRate(this, 1000, 1000);
  288. }
  289. }
  290. @Override
  291. public void stopAITask()
  292. {
  293. if (_aiTask != null)
  294. {
  295. _aiTask.cancel(false);
  296. _aiTask = null;
  297. }
  298. super.stopAITask();
  299. }
  300. /**
  301. * Set the Intention of this L2CharacterAI and create an AI Task executed every 1s (call onEvtThink method) for this L2Attackable.<br>
  302. * <FONT COLOR=#FF0000><B> <U>Caution</U> : If actor _knowPlayer isn't EMPTY, AI_INTENTION_IDLE will be change in AI_INTENTION_ACTIVE</B></FONT>
  303. * @param intention The new Intention to set to the AI
  304. * @param arg0 The first parameter of the Intention
  305. * @param arg1 The second parameter of the Intention
  306. */
  307. @Override
  308. synchronized void changeIntention(CtrlIntention intention, Object arg0, Object arg1)
  309. {
  310. if ((intention == AI_INTENTION_IDLE) || (intention == AI_INTENTION_ACTIVE))
  311. {
  312. // Check if actor is not dead
  313. L2Attackable npc = getActiveChar();
  314. if (!npc.isAlikeDead())
  315. {
  316. // If its _knownPlayer isn't empty set the Intention to AI_INTENTION_ACTIVE
  317. if (!npc.getKnownList().getKnownPlayers().isEmpty())
  318. {
  319. intention = AI_INTENTION_ACTIVE;
  320. }
  321. else
  322. {
  323. if (npc.getSpawn() != null)
  324. {
  325. final int range = Config.MAX_DRIFT_RANGE;
  326. if (!npc.isInsideRadius(npc.getSpawn().getLocx(), npc.getSpawn().getLocy(), npc.getSpawn().getLocz(), range + range, true, false))
  327. {
  328. intention = AI_INTENTION_ACTIVE;
  329. }
  330. }
  331. }
  332. }
  333. if (intention == AI_INTENTION_IDLE)
  334. {
  335. // Set the Intention of this L2AttackableAI to AI_INTENTION_IDLE
  336. super.changeIntention(AI_INTENTION_IDLE, null, null);
  337. // Stop AI task and detach AI from NPC
  338. if (_aiTask != null)
  339. {
  340. _aiTask.cancel(true);
  341. _aiTask = null;
  342. }
  343. // Cancel the AI
  344. _accessor.detachAI();
  345. return;
  346. }
  347. }
  348. // Set the Intention of this L2AttackableAI to intention
  349. super.changeIntention(intention, arg0, arg1);
  350. // If not idle - create an AI task (schedule onEvtThink repeatedly)
  351. startAITask();
  352. }
  353. /**
  354. * Manage the Attack Intention : Stop current Attack (if necessary), Calculate attack timeout, Start a new Attack and Launch Think Event.
  355. * @param target The L2Character to attack
  356. */
  357. @Override
  358. protected void onIntentionAttack(L2Character target)
  359. {
  360. // Calculate the attack timeout
  361. _attackTimeout = MAX_ATTACK_TIMEOUT + GameTimeController.getInstance().getGameTicks();
  362. // self and buffs
  363. if ((lastBuffTick + 30) < GameTimeController.getInstance().getGameTicks())
  364. {
  365. for (L2Skill sk : _skillrender.getBuffSkills())
  366. {
  367. if (cast(sk))
  368. {
  369. break;
  370. }
  371. }
  372. lastBuffTick = GameTimeController.getInstance().getGameTicks();
  373. }
  374. // Manage the Attack Intention : Stop current Attack (if necessary), Start a new Attack and Launch Think Event
  375. super.onIntentionAttack(target);
  376. }
  377. private void thinkCast()
  378. {
  379. if (checkTargetLost(getCastTarget()))
  380. {
  381. setCastTarget(null);
  382. return;
  383. }
  384. if (maybeMoveToPawn(getCastTarget(), _actor.getMagicalAttackRange(_skill)))
  385. {
  386. return;
  387. }
  388. clientStopMoving(null);
  389. setIntention(AI_INTENTION_ACTIVE);
  390. _accessor.doCast(_skill);
  391. }
  392. /**
  393. * Manage AI standard thinks of a L2Attackable (called by onEvtThink). <B><U> Actions</U> :</B>
  394. * <ul>
  395. * <li>Update every 1s the _globalAggro counter to come close to 0</li>
  396. * <li>If the actor is Aggressive and can attack, add all autoAttackable L2Character in its Aggro Range to its _aggroList, chose a target and order to attack it</li>
  397. * <li>If the actor is a L2GuardInstance that can't attack, order to it to return to its home location</li>
  398. * <li>If the actor is a L2MonsterInstance that can't attack, order to it to random walk (1/100)</li>
  399. * </ul>
  400. */
  401. private void thinkActive()
  402. {
  403. L2Attackable npc = getActiveChar();
  404. // Update every 1s the _globalAggro counter to come close to 0
  405. if (_globalAggro != 0)
  406. {
  407. if (_globalAggro < 0)
  408. {
  409. _globalAggro++;
  410. }
  411. else
  412. {
  413. _globalAggro--;
  414. }
  415. }
  416. // Add all autoAttackable L2Character in L2Attackable Aggro Range to its _aggroList with 0 damage and 1 hate
  417. // A L2Attackable isn't aggressive during 10s after its spawn because _globalAggro is set to -10
  418. if (_globalAggro >= 0)
  419. {
  420. // Get all visible objects inside its Aggro Range
  421. Collection<L2Object> objs = npc.getKnownList().getKnownObjects().values();
  422. for (L2Object obj : objs)
  423. {
  424. if (!(obj instanceof L2Character) || (obj instanceof L2StaticObjectInstance))
  425. {
  426. continue;
  427. }
  428. L2Character target = (L2Character) obj;
  429. /*
  430. * Check to see if this is a festival mob spawn. If it is, then check to see if the aggro trigger is a festival participant...if so, move to attack it.
  431. */
  432. if ((npc instanceof L2FestivalMonsterInstance) && (obj instanceof L2PcInstance))
  433. {
  434. L2PcInstance targetPlayer = (L2PcInstance) obj;
  435. if (!(targetPlayer.isFestivalParticipant()))
  436. {
  437. continue;
  438. }
  439. }
  440. // TODO: The AI Script ought to handle aggro behaviors in onSee. Once implemented, aggro behaviors ought
  441. // to be removed from here. (Fulminus)
  442. // For each L2Character check if the target is autoattackable
  443. if (autoAttackCondition(target)) // check aggression
  444. {
  445. // Get the hate level of the L2Attackable against this L2Character target contained in _aggroList
  446. int hating = npc.getHating(target);
  447. // Add the attacker to the L2Attackable _aggroList with 0 damage and 1 hate
  448. if (hating == 0)
  449. {
  450. npc.addDamageHate(target, 0, 0);
  451. }
  452. }
  453. }
  454. // Chose a target from its aggroList
  455. L2Character hated;
  456. if (npc.isConfused())
  457. {
  458. hated = getAttackTarget(); // effect handles selection
  459. }
  460. else
  461. {
  462. hated = npc.getMostHated();
  463. }
  464. // Order to the L2Attackable to attack the target
  465. if ((hated != null) && !npc.isCoreAIDisabled())
  466. {
  467. // Get the hate level of the L2Attackable against this L2Character target contained in _aggroList
  468. int aggro = npc.getHating(hated);
  469. if ((aggro + _globalAggro) > 0)
  470. {
  471. // Set the L2Character movement type to run and send Server->Client packet ChangeMoveType to all others L2PcInstance
  472. if (!npc.isRunning())
  473. {
  474. npc.setRunning();
  475. }
  476. // Set the AI Intention to AI_INTENTION_ATTACK
  477. setIntention(CtrlIntention.AI_INTENTION_ATTACK, hated);
  478. }
  479. return;
  480. }
  481. }
  482. // Chance to forget attackers after some time
  483. if ((npc.getCurrentHp() == npc.getMaxHp()) && (npc.getCurrentMp() == npc.getMaxMp()) && !npc.getAttackByList().isEmpty() && (Rnd.nextInt(500) == 0))
  484. {
  485. npc.clearAggroList();
  486. npc.getAttackByList().clear();
  487. if (npc instanceof L2MonsterInstance)
  488. {
  489. if (((L2MonsterInstance) npc).hasMinions())
  490. {
  491. ((L2MonsterInstance) npc).getMinionList().deleteReusedMinions();
  492. }
  493. }
  494. }
  495. // Check if the actor is a L2GuardInstance
  496. if (npc instanceof L2GuardInstance)
  497. {
  498. // Order to the L2GuardInstance to return to its home location because there's no target to attack
  499. ((L2GuardInstance) npc).returnHome();
  500. }
  501. // If this is a festival monster, then it remains in the same location.
  502. if (npc instanceof L2FestivalMonsterInstance)
  503. {
  504. return;
  505. }
  506. // Check if the mob should not return to spawn point
  507. if (!npc.canReturnToSpawnPoint())
  508. {
  509. return;
  510. }
  511. // Minions following leader
  512. final L2Character leader = npc.getLeader();
  513. if ((leader != null) && !leader.isAlikeDead())
  514. {
  515. final int offset;
  516. final int minRadius = 30;
  517. if (npc.isRaidMinion())
  518. {
  519. offset = 500; // for Raids - need correction
  520. }
  521. else
  522. {
  523. offset = 200; // for normal minions - need correction :)
  524. }
  525. if (leader.isRunning())
  526. {
  527. npc.setRunning();
  528. }
  529. else
  530. {
  531. npc.setWalking();
  532. }
  533. if (npc.getPlanDistanceSq(leader) > (offset * offset))
  534. {
  535. int x1, y1, z1;
  536. x1 = Rnd.get(minRadius * 2, offset * 2); // x
  537. y1 = Rnd.get(x1, offset * 2); // distance
  538. y1 = (int) Math.sqrt((y1 * y1) - (x1 * x1)); // y
  539. if (x1 > (offset + minRadius))
  540. {
  541. x1 = (leader.getX() + x1) - offset;
  542. }
  543. else
  544. {
  545. x1 = (leader.getX() - x1) + minRadius;
  546. }
  547. if (y1 > (offset + minRadius))
  548. {
  549. y1 = (leader.getY() + y1) - offset;
  550. }
  551. else
  552. {
  553. y1 = (leader.getY() - y1) + minRadius;
  554. }
  555. z1 = leader.getZ();
  556. // Move the actor to Location (x,y,z) server side AND client side by sending Server->Client packet CharMoveToLocation (broadcast)
  557. moveTo(x1, y1, z1);
  558. return;
  559. }
  560. else if (Rnd.nextInt(RANDOM_WALK_RATE) == 0)
  561. {
  562. for (L2Skill sk : _skillrender.getBuffSkills())
  563. {
  564. if (cast(sk))
  565. {
  566. return;
  567. }
  568. }
  569. }
  570. }
  571. // Order to the L2MonsterInstance to random walk (1/100)
  572. else if ((npc.getSpawn() != null) && (Rnd.nextInt(RANDOM_WALK_RATE) == 0) && !npc.isNoRndWalk())
  573. {
  574. int x1, y1, z1;
  575. final int range = Config.MAX_DRIFT_RANGE;
  576. for (L2Skill sk : _skillrender.getBuffSkills())
  577. {
  578. if (cast(sk))
  579. {
  580. return;
  581. }
  582. }
  583. // If NPC with random coord in territory
  584. if ((npc.getSpawn().getLocx() == 0) && (npc.getSpawn().getLocy() == 0))
  585. {
  586. // Calculate a destination point in the spawn area
  587. int p[] = TerritoryTable.getInstance().getRandomPoint(npc.getSpawn().getLocation());
  588. x1 = p[0];
  589. y1 = p[1];
  590. z1 = p[2];
  591. // Calculate the distance between the current position of the L2Character and the target (x,y)
  592. double distance2 = npc.getPlanDistanceSq(x1, y1);
  593. if (distance2 > ((range + range) * (range + range)))
  594. {
  595. npc.setisReturningToSpawnPoint(true);
  596. float delay = (float) Math.sqrt(distance2) / range;
  597. x1 = npc.getX() + (int) ((x1 - npc.getX()) / delay);
  598. y1 = npc.getY() + (int) ((y1 - npc.getY()) / delay);
  599. }
  600. // If NPC with random fixed coord, don't move (unless needs to return to spawnpoint)
  601. if ((TerritoryTable.getInstance().getProcMax(npc.getSpawn().getLocation()) > 0) && !npc.isReturningToSpawnPoint())
  602. {
  603. return;
  604. }
  605. }
  606. else
  607. {
  608. // If NPC with fixed coord
  609. x1 = npc.getSpawn().getLocx();
  610. y1 = npc.getSpawn().getLocy();
  611. z1 = npc.getSpawn().getLocz();
  612. if (!npc.isInsideRadius(x1, y1, range, false))
  613. {
  614. npc.setisReturningToSpawnPoint(true);
  615. }
  616. else
  617. {
  618. x1 = Rnd.nextInt(range * 2); // x
  619. y1 = Rnd.get(x1, range * 2); // distance
  620. y1 = (int) Math.sqrt((y1 * y1) - (x1 * x1)); // y
  621. x1 += npc.getSpawn().getLocx() - range;
  622. y1 += npc.getSpawn().getLocy() - range;
  623. z1 = npc.getZ();
  624. }
  625. }
  626. // _log.debug("Current pos ("+getX()+", "+getY()+"), moving to ("+x1+", "+y1+").");
  627. // Move the actor to Location (x,y,z) server side AND client side by sending Server->Client packet CharMoveToLocation (broadcast)
  628. moveTo(x1, y1, z1);
  629. }
  630. }
  631. /**
  632. * Manage AI attack thinks of a L2Attackable (called by onEvtThink). <B><U> Actions</U> :</B>
  633. * <ul>
  634. * <li>Update the attack timeout if actor is running</li>
  635. * <li>If target is dead or timeout is expired, stop this attack and set the Intention to AI_INTENTION_ACTIVE</li>
  636. * <li>Call all L2Object of its Faction inside the Faction Range</li>
  637. * <li>Chose a target and order to attack it with magic skill or physical attack</li>
  638. * </ul>
  639. * TODO: Manage casting rules to healer mobs (like Ant Nurses)
  640. */
  641. private void thinkAttack()
  642. {
  643. final L2Attackable npc = getActiveChar();
  644. if (npc.isCastingNow())
  645. {
  646. return;
  647. }
  648. L2Character originalAttackTarget = getAttackTarget();
  649. // Check if target is dead or if timeout is expired to stop this attack
  650. if ((originalAttackTarget == null) || originalAttackTarget.isAlikeDead() || (_attackTimeout < GameTimeController.getInstance().getGameTicks()))
  651. {
  652. // Stop hating this target after the attack timeout or if target is dead
  653. if (originalAttackTarget != null)
  654. {
  655. npc.stopHating(originalAttackTarget);
  656. }
  657. // Set the AI Intention to AI_INTENTION_ACTIVE
  658. setIntention(AI_INTENTION_ACTIVE);
  659. npc.setWalking();
  660. return;
  661. }
  662. final int collision = npc.getTemplate().getCollisionRadius();
  663. // Handle all L2Object of its Faction inside the Faction Range
  664. String faction_id = getActiveChar().getFactionId();
  665. if ((faction_id != null) && !faction_id.isEmpty())
  666. {
  667. int factionRange = npc.getClanRange() + collision;
  668. // Go through all L2Object that belong to its faction
  669. Collection<L2Object> objs = npc.getKnownList().getKnownObjects().values();
  670. try
  671. {
  672. for (L2Object obj : objs)
  673. {
  674. if (obj instanceof L2Npc)
  675. {
  676. L2Npc called = (L2Npc) obj;
  677. // Handle SevenSigns mob Factions
  678. final String npcfaction = called.getFactionId();
  679. if ((npcfaction == null) || npcfaction.isEmpty())
  680. {
  681. continue;
  682. }
  683. boolean sevenSignFaction = false;
  684. // TODO: Unhardcode this by AI scripts (DrHouse)
  685. // Catacomb mobs should assist lilim and nephilim other than dungeon
  686. if ("c_dungeon_clan".equals(faction_id) && ("c_dungeon_lilim".equals(npcfaction) || "c_dungeon_nephi".equals(npcfaction)))
  687. {
  688. sevenSignFaction = true;
  689. }
  690. // Lilim mobs should assist other Lilim and catacomb mobs
  691. else if ("c_dungeon_lilim".equals(faction_id) && "c_dungeon_clan".equals(npcfaction))
  692. {
  693. sevenSignFaction = true;
  694. }
  695. // Nephilim mobs should assist other Nephilim and catacomb mobs
  696. else if ("c_dungeon_nephi".equals(faction_id) && "c_dungeon_clan".equals(npcfaction))
  697. {
  698. sevenSignFaction = true;
  699. }
  700. if (!faction_id.equals(npcfaction) && !sevenSignFaction)
  701. {
  702. continue;
  703. }
  704. // Check if the L2Object is inside the Faction Range of the actor
  705. if (npc.isInsideRadius(called, factionRange, true, false) && called.hasAI())
  706. {
  707. if ((Math.abs(originalAttackTarget.getZ() - called.getZ()) < 600) && npc.getAttackByList().contains(originalAttackTarget) && ((called.getAI()._intention == CtrlIntention.AI_INTENTION_IDLE) || (called.getAI()._intention == CtrlIntention.AI_INTENTION_ACTIVE)) && (called.getInstanceId() == npc.getInstanceId()))
  708. // && GeoData.getInstance().canSeeTarget(called, npc))
  709. {
  710. if (originalAttackTarget.isPlayable())
  711. {
  712. List<Quest> quests = called.getTemplate().getEventQuests(QuestEventType.ON_FACTION_CALL);
  713. if ((quests != null) && !quests.isEmpty())
  714. {
  715. L2PcInstance player = originalAttackTarget.getActingPlayer();
  716. boolean isSummon = originalAttackTarget.isSummon();
  717. for (Quest quest : quests)
  718. {
  719. quest.notifyFactionCall(called, getActiveChar(), player, isSummon);
  720. }
  721. }
  722. }
  723. else if ((called instanceof L2Attackable) && (getAttackTarget() != null) && (called.getAI()._intention != CtrlIntention.AI_INTENTION_ATTACK))
  724. {
  725. ((L2Attackable) called).addDamageHate(getAttackTarget(), 0, npc.getHating(getAttackTarget()));
  726. called.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK, getAttackTarget());
  727. }
  728. }
  729. }
  730. }
  731. }
  732. }
  733. catch (NullPointerException e)
  734. {
  735. _log.warning(getClass().getSimpleName() + ": thinkAttack() faction call failed: " + e.getMessage());
  736. }
  737. }
  738. if (npc.isCoreAIDisabled())
  739. {
  740. return;
  741. }
  742. // Initialize data
  743. L2Character mostHate = npc.getMostHated();
  744. if (mostHate == null)
  745. {
  746. setIntention(AI_INTENTION_ACTIVE);
  747. return;
  748. }
  749. setAttackTarget(mostHate);
  750. npc.setTarget(mostHate);
  751. final int combinedCollision = collision + mostHate.getTemplate().getCollisionRadius();
  752. if (!_skillrender.getSuicideSkills().isEmpty() && ((int) ((npc.getCurrentHp() / npc.getMaxHp()) * 100) < 30))
  753. {
  754. final L2Skill skill = _skillrender.getSuicideSkills().get(Rnd.nextInt(_skillrender.getSuicideSkills().size()));
  755. if (Util.checkIfInRange(skill.getAffectRange(), getActiveChar(), mostHate, false) && (Rnd.get(100) < Rnd.get(npc.getMinSkillChance(), npc.getMaxSkillChance())))
  756. {
  757. if (cast(skill))
  758. {
  759. return;
  760. }
  761. for (L2Skill sk : _skillrender.getSuicideSkills())
  762. {
  763. if (cast(sk))
  764. {
  765. return;
  766. }
  767. }
  768. }
  769. }
  770. // ------------------------------------------------------
  771. // In case many mobs are trying to hit from same place, move a bit,
  772. // circling around the target
  773. // Note from Gnacik:
  774. // On l2js because of that sometimes mobs don't attack player only running
  775. // around player without any sense, so decrease chance for now
  776. if (!npc.isMovementDisabled() && (Rnd.nextInt(100) <= 3))
  777. {
  778. for (L2Object nearby : npc.getKnownList().getKnownObjects().values())
  779. {
  780. if ((nearby instanceof L2Attackable) && npc.isInsideRadius(nearby, collision, false, false) && (nearby != mostHate))
  781. {
  782. int newX = combinedCollision + Rnd.get(40);
  783. if (Rnd.nextBoolean())
  784. {
  785. newX = mostHate.getX() + newX;
  786. }
  787. else
  788. {
  789. newX = mostHate.getX() - newX;
  790. }
  791. int newY = combinedCollision + Rnd.get(40);
  792. if (Rnd.nextBoolean())
  793. {
  794. newY = mostHate.getY() + newY;
  795. }
  796. else
  797. {
  798. newY = mostHate.getY() - newY;
  799. }
  800. if (!npc.isInsideRadius(newX, newY, collision, false))
  801. {
  802. int newZ = npc.getZ() + 30;
  803. if ((Config.GEODATA == 0) || GeoData.getInstance().canMoveFromToTarget(npc.getX(), npc.getY(), npc.getZ(), newX, newY, newZ, npc.getInstanceId()))
  804. {
  805. moveTo(newX, newY, newZ);
  806. }
  807. }
  808. return;
  809. }
  810. }
  811. }
  812. // Dodge if its needed
  813. if (!npc.isMovementDisabled() && (npc.getCanDodge() > 0))
  814. {
  815. if (Rnd.get(100) <= npc.getCanDodge())
  816. {
  817. // Micht: kepping this one otherwise we should do 2 sqrt
  818. double distance2 = npc.getPlanDistanceSq(mostHate.getX(), mostHate.getY());
  819. if (Math.sqrt(distance2) <= (60 + combinedCollision))
  820. {
  821. int posX = npc.getX();
  822. int posY = npc.getY();
  823. int posZ = npc.getZ() + 30;
  824. if (originalAttackTarget.getX() < posX)
  825. {
  826. posX = posX + 300;
  827. }
  828. else
  829. {
  830. posX = posX - 300;
  831. }
  832. if (originalAttackTarget.getY() < posY)
  833. {
  834. posY = posY + 300;
  835. }
  836. else
  837. {
  838. posY = posY - 300;
  839. }
  840. if ((Config.GEODATA == 0) || GeoData.getInstance().canMoveFromToTarget(npc.getX(), npc.getY(), npc.getZ(), posX, posY, posZ, npc.getInstanceId()))
  841. {
  842. setIntention(CtrlIntention.AI_INTENTION_MOVE_TO, new L2CharPosition(posX, posY, posZ, 0));
  843. }
  844. return;
  845. }
  846. }
  847. }
  848. // ------------------------------------------------------------------------------
  849. // BOSS/Raid Minion Target Reconsider
  850. if (npc.isRaid() || npc.isRaidMinion())
  851. {
  852. chaostime++;
  853. if (npc instanceof L2RaidBossInstance)
  854. {
  855. if (!((L2MonsterInstance) npc).hasMinions())
  856. {
  857. if (chaostime > Config.RAID_CHAOS_TIME)
  858. {
  859. if (Rnd.get(100) <= (100 - ((npc.getCurrentHp() * 100) / npc.getMaxHp())))
  860. {
  861. aggroReconsider();
  862. chaostime = 0;
  863. return;
  864. }
  865. }
  866. }
  867. else
  868. {
  869. if (chaostime > Config.RAID_CHAOS_TIME)
  870. {
  871. if (Rnd.get(100) <= (100 - ((npc.getCurrentHp() * 200) / npc.getMaxHp())))
  872. {
  873. aggroReconsider();
  874. chaostime = 0;
  875. return;
  876. }
  877. }
  878. }
  879. }
  880. else if (npc instanceof L2GrandBossInstance)
  881. {
  882. if (chaostime > Config.GRAND_CHAOS_TIME)
  883. {
  884. double chaosRate = 100 - ((npc.getCurrentHp() * 300) / npc.getMaxHp());
  885. if (((chaosRate <= 10) && (Rnd.get(100) <= 10)) || ((chaosRate > 10) && (Rnd.get(100) <= chaosRate)))
  886. {
  887. aggroReconsider();
  888. chaostime = 0;
  889. return;
  890. }
  891. }
  892. }
  893. else
  894. {
  895. if (chaostime > Config.MINION_CHAOS_TIME)
  896. {
  897. if (Rnd.get(100) <= (100 - ((npc.getCurrentHp() * 200) / npc.getMaxHp())))
  898. {
  899. aggroReconsider();
  900. chaostime = 0;
  901. return;
  902. }
  903. }
  904. }
  905. }
  906. if (!_skillrender.getGeneralskills().isEmpty())
  907. {
  908. // -------------------------------------------------------------------------------
  909. // Heal Condition
  910. if (!_skillrender.getHealSkills().isEmpty())
  911. {
  912. double percentage = (npc.getCurrentHp() / npc.getMaxHp()) * 100;
  913. if (npc.isMinion())
  914. {
  915. L2Character leader = npc.getLeader();
  916. if ((leader != null) && !leader.isDead() && (Rnd.get(100) > ((leader.getCurrentHp() / leader.getMaxHp()) * 100)))
  917. {
  918. for (L2Skill sk : _skillrender.getHealSkills())
  919. {
  920. if (sk.getTargetType() == L2TargetType.TARGET_SELF)
  921. {
  922. continue;
  923. }
  924. if (!checkSkillCastConditions(sk))
  925. {
  926. continue;
  927. }
  928. if (!Util.checkIfInRange((sk.getCastRange() + collision + leader.getTemplate().getCollisionRadius()), npc, leader, false) && !isParty(sk) && !npc.isMovementDisabled())
  929. {
  930. moveToPawn(leader, sk.getCastRange() + collision + leader.getTemplate().getCollisionRadius());
  931. return;
  932. }
  933. if (GeoData.getInstance().canSeeTarget(npc, leader))
  934. {
  935. clientStopMoving(null);
  936. npc.setTarget(leader);
  937. clientStopMoving(null);
  938. npc.doCast(sk);
  939. return;
  940. }
  941. }
  942. }
  943. }
  944. if (Rnd.get(100) < ((100 - percentage) / 3))
  945. {
  946. for (L2Skill sk : _skillrender.getHealSkills())
  947. {
  948. if (!checkSkillCastConditions(sk))
  949. {
  950. continue;
  951. }
  952. clientStopMoving(null);
  953. npc.setTarget(npc);
  954. npc.doCast(sk);
  955. return;
  956. }
  957. }
  958. for (L2Skill sk : _skillrender.getHealSkills())
  959. {
  960. if (!checkSkillCastConditions(sk))
  961. {
  962. continue;
  963. }
  964. if (sk.getTargetType() == L2TargetType.TARGET_ONE)
  965. {
  966. for (L2Character obj : npc.getKnownList().getKnownCharactersInRadius(sk.getCastRange() + collision))
  967. {
  968. if (!(obj instanceof L2Attackable) || obj.isDead())
  969. {
  970. continue;
  971. }
  972. L2Attackable targets = ((L2Attackable) obj);
  973. if ((npc.getFactionId() != null) && !npc.getFactionId().equals(targets.getFactionId()))
  974. {
  975. continue;
  976. }
  977. percentage = (targets.getCurrentHp() / targets.getMaxHp()) * 100;
  978. if (Rnd.get(100) < ((100 - percentage) / 10))
  979. {
  980. if (GeoData.getInstance().canSeeTarget(npc, targets))
  981. {
  982. clientStopMoving(null);
  983. npc.setTarget(obj);
  984. npc.doCast(sk);
  985. return;
  986. }
  987. }
  988. }
  989. }
  990. if (isParty(sk))
  991. {
  992. clientStopMoving(null);
  993. npc.doCast(sk);
  994. return;
  995. }
  996. }
  997. }
  998. // -------------------------------------------------------------------------------
  999. // Res Skill Condition
  1000. if (!_skillrender.getResSkills().isEmpty())
  1001. {
  1002. if (npc.isMinion())
  1003. {
  1004. L2Character leader = npc.getLeader();
  1005. if ((leader != null) && leader.isDead())
  1006. {
  1007. for (L2Skill sk : _skillrender.getResSkills())
  1008. {
  1009. if (sk.getTargetType() == L2TargetType.TARGET_SELF)
  1010. {
  1011. continue;
  1012. }
  1013. if (!checkSkillCastConditions(sk))
  1014. {
  1015. continue;
  1016. }
  1017. if (!Util.checkIfInRange((sk.getCastRange() + collision + leader.getTemplate().getCollisionRadius()), npc, leader, false) && !isParty(sk) && !npc.isMovementDisabled())
  1018. {
  1019. moveToPawn(leader, sk.getCastRange() + collision + leader.getTemplate().getCollisionRadius());
  1020. return;
  1021. }
  1022. if (GeoData.getInstance().canSeeTarget(npc, leader))
  1023. {
  1024. clientStopMoving(null);
  1025. npc.setTarget(leader);
  1026. npc.doCast(sk);
  1027. return;
  1028. }
  1029. }
  1030. }
  1031. }
  1032. for (L2Skill sk : _skillrender.getResSkills())
  1033. {
  1034. if (!checkSkillCastConditions(sk))
  1035. {
  1036. continue;
  1037. }
  1038. if (sk.getTargetType() == L2TargetType.TARGET_ONE)
  1039. {
  1040. for (L2Character obj : npc.getKnownList().getKnownCharactersInRadius(sk.getCastRange() + collision))
  1041. {
  1042. if (!(obj instanceof L2Attackable) || !obj.isDead())
  1043. {
  1044. continue;
  1045. }
  1046. L2Attackable targets = ((L2Attackable) obj);
  1047. if ((npc.getFactionId() != null) && !npc.getFactionId().equals(targets.getFactionId()))
  1048. {
  1049. continue;
  1050. }
  1051. if (Rnd.get(100) < 10)
  1052. {
  1053. if (GeoData.getInstance().canSeeTarget(npc, targets))
  1054. {
  1055. clientStopMoving(null);
  1056. npc.setTarget(obj);
  1057. npc.doCast(sk);
  1058. return;
  1059. }
  1060. }
  1061. }
  1062. }
  1063. if (isParty(sk))
  1064. {
  1065. clientStopMoving(null);
  1066. L2Object target = getAttackTarget();
  1067. npc.setTarget(npc);
  1068. npc.doCast(sk);
  1069. npc.setTarget(target);
  1070. return;
  1071. }
  1072. }
  1073. }
  1074. }
  1075. double dist = Math.sqrt(npc.getPlanDistanceSq(mostHate.getX(), mostHate.getY()));
  1076. int dist2 = (int) dist - collision;
  1077. int range = npc.getPhysicalAttackRange() + combinedCollision;
  1078. if (mostHate.isMoving())
  1079. {
  1080. range = range + 50;
  1081. if (npc.isMoving())
  1082. {
  1083. range = range + 50;
  1084. }
  1085. }
  1086. // -------------------------------------------------------------------------------
  1087. // Immobilize Condition
  1088. if ((npc.isMovementDisabled() && ((dist > range) || mostHate.isMoving())) || ((dist > range) && mostHate.isMoving()))
  1089. {
  1090. movementDisable();
  1091. return;
  1092. }
  1093. setTimepass(0);
  1094. // --------------------------------------------------------------------------------
  1095. // Skill Use
  1096. if (!_skillrender.getGeneralskills().isEmpty())
  1097. {
  1098. if (Rnd.get(100) < Rnd.get(npc.getMinSkillChance(), npc.getMaxSkillChance()))
  1099. {
  1100. L2Skill skills = _skillrender.getGeneralskills().get(Rnd.nextInt(_skillrender.getGeneralskills().size()));
  1101. if (cast(skills))
  1102. {
  1103. return;
  1104. }
  1105. for (L2Skill sk : _skillrender.getGeneralskills())
  1106. {
  1107. if (cast(sk))
  1108. {
  1109. return;
  1110. }
  1111. }
  1112. }
  1113. // --------------------------------------------------------------------------------
  1114. // Long/Short Range skill usage.
  1115. if (npc.hasLSkill() || npc.hasSSkill())
  1116. {
  1117. final List<L2Skill> shortRangeSkills = shortRangeSkillRender();
  1118. if (!shortRangeSkills.isEmpty() && npc.hasSSkill() && (dist2 <= 150) && (Rnd.get(100) <= npc.getSSkillChance()))
  1119. {
  1120. final L2Skill shortRangeSkill = shortRangeSkills.get(Rnd.get(shortRangeSkills.size()));
  1121. if ((shortRangeSkill != null) && cast(shortRangeSkill))
  1122. {
  1123. return;
  1124. }
  1125. for (L2Skill sk : shortRangeSkills)
  1126. {
  1127. if ((sk != null) && cast(sk))
  1128. {
  1129. return;
  1130. }
  1131. }
  1132. }
  1133. final List<L2Skill> longRangeSkills = longRangeSkillRender();
  1134. if (!longRangeSkills.isEmpty() && npc.hasLSkill() && (dist2 > 150) && (Rnd.get(100) <= npc.getLSkillChance()))
  1135. {
  1136. final L2Skill longRangeSkill = longRangeSkills.get(Rnd.get(longRangeSkills.size()));
  1137. if ((longRangeSkill != null) && cast(longRangeSkill))
  1138. {
  1139. return;
  1140. }
  1141. for (L2Skill sk : longRangeSkills)
  1142. {
  1143. if ((sk != null) && cast(sk))
  1144. {
  1145. return;
  1146. }
  1147. }
  1148. }
  1149. }
  1150. }
  1151. // --------------------------------------------------------------------------------
  1152. // Starts Melee or Primary Skill
  1153. if ((dist2 > range) || !GeoData.getInstance().canSeeTarget(npc, mostHate))
  1154. {
  1155. if (npc.isMovementDisabled())
  1156. {
  1157. targetReconsider();
  1158. }
  1159. else if (getAttackTarget() != null)
  1160. {
  1161. if (getAttackTarget().isMoving())
  1162. {
  1163. range -= 100;
  1164. }
  1165. if (range < 5)
  1166. {
  1167. range = 5;
  1168. }
  1169. moveToPawn(getAttackTarget(), range);
  1170. }
  1171. return;
  1172. }
  1173. melee(npc.getPrimarySkillId());
  1174. }
  1175. private void melee(int type)
  1176. {
  1177. if (type != 0)
  1178. {
  1179. switch (type)
  1180. {
  1181. case -1:
  1182. {
  1183. if (_skillrender.getGeneralskills() != null)
  1184. {
  1185. for (L2Skill sk : _skillrender.getGeneralskills())
  1186. {
  1187. if (cast(sk))
  1188. {
  1189. return;
  1190. }
  1191. }
  1192. }
  1193. break;
  1194. }
  1195. case 1:
  1196. {
  1197. for (L2Skill sk : _skillrender.getAtkSkills())
  1198. {
  1199. if (cast(sk))
  1200. {
  1201. return;
  1202. }
  1203. }
  1204. break;
  1205. }
  1206. default:
  1207. {
  1208. for (L2Skill sk : _skillrender.getGeneralskills())
  1209. {
  1210. if (sk.getId() == getActiveChar().getPrimarySkillId())
  1211. {
  1212. if (cast(sk))
  1213. {
  1214. return;
  1215. }
  1216. }
  1217. }
  1218. }
  1219. break;
  1220. }
  1221. }
  1222. _accessor.doAttack(getAttackTarget());
  1223. }
  1224. private boolean cast(L2Skill sk)
  1225. {
  1226. if (sk == null)
  1227. {
  1228. return false;
  1229. }
  1230. final L2Attackable caster = getActiveChar();
  1231. if (caster.isCastingNow() && !sk.isSimultaneousCast())
  1232. {
  1233. return false;
  1234. }
  1235. if (!checkSkillCastConditions(sk))
  1236. {
  1237. return false;
  1238. }
  1239. if (getAttackTarget() == null)
  1240. {
  1241. if (caster.getMostHated() != null)
  1242. {
  1243. setAttackTarget(caster.getMostHated());
  1244. }
  1245. }
  1246. L2Character attackTarget = getAttackTarget();
  1247. if (attackTarget == null)
  1248. {
  1249. return false;
  1250. }
  1251. double dist = Math.sqrt(caster.getPlanDistanceSq(attackTarget.getX(), attackTarget.getY()));
  1252. double dist2 = dist - attackTarget.getTemplate().getCollisionRadius();
  1253. double range = caster.getPhysicalAttackRange() + caster.getTemplate().getCollisionRadius() + attackTarget.getTemplate().getCollisionRadius();
  1254. double srange = sk.getCastRange() + caster.getTemplate().getCollisionRadius();
  1255. if (attackTarget.isMoving())
  1256. {
  1257. dist2 = dist2 - 30;
  1258. }
  1259. switch (sk.getSkillType())
  1260. {
  1261. case BUFF:
  1262. {
  1263. if (caster.getFirstEffect(sk) == null)
  1264. {
  1265. clientStopMoving(null);
  1266. // L2Object target = attackTarget;
  1267. caster.setTarget(caster);
  1268. caster.doCast(sk);
  1269. // _actor.setTarget(target);
  1270. return true;
  1271. }
  1272. // ----------------------------------------
  1273. // If actor already have buff, start looking at others same faction mob to cast
  1274. if (sk.getTargetType() == L2TargetType.TARGET_SELF)
  1275. {
  1276. return false;
  1277. }
  1278. if (sk.getTargetType() == L2TargetType.TARGET_ONE)
  1279. {
  1280. L2Character target = effectTargetReconsider(sk, true);
  1281. if (target != null)
  1282. {
  1283. clientStopMoving(null);
  1284. L2Object targets = attackTarget;
  1285. caster.setTarget(target);
  1286. caster.doCast(sk);
  1287. caster.setTarget(targets);
  1288. return true;
  1289. }
  1290. }
  1291. if (canParty(sk))
  1292. {
  1293. clientStopMoving(null);
  1294. L2Object targets = attackTarget;
  1295. caster.setTarget(caster);
  1296. caster.doCast(sk);
  1297. caster.setTarget(targets);
  1298. return true;
  1299. }
  1300. break;
  1301. }
  1302. case HEAL:
  1303. case HEAL_PERCENT:
  1304. {
  1305. double percentage = (caster.getCurrentHp() / caster.getMaxHp()) * 100;
  1306. if (caster.isMinion() && (sk.getTargetType() != L2TargetType.TARGET_SELF))
  1307. {
  1308. L2Character leader = caster.getLeader();
  1309. if ((leader != null) && !leader.isDead() && (Rnd.get(100) > ((leader.getCurrentHp() / leader.getMaxHp()) * 100)))
  1310. {
  1311. if (!Util.checkIfInRange((sk.getCastRange() + caster.getTemplate().getCollisionRadius() + leader.getTemplate().getCollisionRadius()), caster, leader, false) && !isParty(sk) && !caster.isMovementDisabled())
  1312. {
  1313. moveToPawn(leader, sk.getCastRange() + caster.getTemplate().getCollisionRadius() + leader.getTemplate().getCollisionRadius());
  1314. }
  1315. if (GeoData.getInstance().canSeeTarget(caster, leader))
  1316. {
  1317. clientStopMoving(null);
  1318. caster.setTarget(leader);
  1319. caster.doCast(sk);
  1320. return true;
  1321. }
  1322. }
  1323. }
  1324. if (Rnd.get(100) < ((100 - percentage) / 3))
  1325. {
  1326. clientStopMoving(null);
  1327. caster.setTarget(caster);
  1328. caster.doCast(sk);
  1329. return true;
  1330. }
  1331. if (sk.getTargetType() == L2TargetType.TARGET_ONE)
  1332. {
  1333. for (L2Character obj : caster.getKnownList().getKnownCharactersInRadius(sk.getCastRange() + caster.getTemplate().getCollisionRadius()))
  1334. {
  1335. if (!(obj instanceof L2Attackable) || obj.isDead())
  1336. {
  1337. continue;
  1338. }
  1339. L2Attackable targets = ((L2Attackable) obj);
  1340. if ((caster.getFactionId() != null) && !caster.getFactionId().equals(targets.getFactionId()))
  1341. {
  1342. continue;
  1343. }
  1344. percentage = (targets.getCurrentHp() / targets.getMaxHp()) * 100;
  1345. if (Rnd.get(100) < ((100 - percentage) / 10))
  1346. {
  1347. if (GeoData.getInstance().canSeeTarget(caster, targets))
  1348. {
  1349. clientStopMoving(null);
  1350. caster.setTarget(obj);
  1351. caster.doCast(sk);
  1352. return true;
  1353. }
  1354. }
  1355. }
  1356. }
  1357. if (isParty(sk))
  1358. {
  1359. for (L2Character obj : caster.getKnownList().getKnownCharactersInRadius(sk.getAffectRange() + caster.getTemplate().getCollisionRadius()))
  1360. {
  1361. if (!(obj instanceof L2Attackable))
  1362. {
  1363. continue;
  1364. }
  1365. L2Npc targets = ((L2Npc) obj);
  1366. if ((caster.getFactionId() != null) && targets.getFactionId().equals(caster.getFactionId()))
  1367. {
  1368. if ((obj.getCurrentHp() < obj.getMaxHp()) && (Rnd.get(100) <= 20))
  1369. {
  1370. clientStopMoving(null);
  1371. caster.setTarget(caster);
  1372. caster.doCast(sk);
  1373. return true;
  1374. }
  1375. }
  1376. }
  1377. }
  1378. break;
  1379. }
  1380. case RESURRECT:
  1381. {
  1382. if (!isParty(sk))
  1383. {
  1384. if (caster.isMinion() && (sk.getTargetType() != L2TargetType.TARGET_SELF))
  1385. {
  1386. L2Character leader = caster.getLeader();
  1387. if ((leader != null) && leader.isDead())
  1388. {
  1389. if (!Util.checkIfInRange((sk.getCastRange() + caster.getTemplate().getCollisionRadius() + leader.getTemplate().getCollisionRadius()), caster, leader, false) && !isParty(sk) && !caster.isMovementDisabled())
  1390. {
  1391. moveToPawn(leader, sk.getCastRange() + caster.getTemplate().getCollisionRadius() + leader.getTemplate().getCollisionRadius());
  1392. }
  1393. }
  1394. if (GeoData.getInstance().canSeeTarget(caster, leader))
  1395. {
  1396. clientStopMoving(null);
  1397. caster.setTarget(leader);
  1398. caster.doCast(sk);
  1399. return true;
  1400. }
  1401. }
  1402. for (L2Character obj : caster.getKnownList().getKnownCharactersInRadius(sk.getCastRange() + caster.getTemplate().getCollisionRadius()))
  1403. {
  1404. if (!(obj instanceof L2Attackable) || !obj.isDead())
  1405. {
  1406. continue;
  1407. }
  1408. L2Attackable targets = ((L2Attackable) obj);
  1409. if ((caster.getFactionId() != null) && !caster.getFactionId().equals(targets.getFactionId()))
  1410. {
  1411. continue;
  1412. }
  1413. if (Rnd.get(100) < 10)
  1414. {
  1415. if (GeoData.getInstance().canSeeTarget(caster, targets))
  1416. {
  1417. clientStopMoving(null);
  1418. caster.setTarget(obj);
  1419. caster.doCast(sk);
  1420. return true;
  1421. }
  1422. }
  1423. }
  1424. }
  1425. else if (isParty(sk))
  1426. {
  1427. for (L2Character obj : caster.getKnownList().getKnownCharactersInRadius(sk.getAffectRange() + caster.getTemplate().getCollisionRadius()))
  1428. {
  1429. if (!(obj instanceof L2Attackable))
  1430. {
  1431. continue;
  1432. }
  1433. L2Npc targets = ((L2Npc) obj);
  1434. if ((caster.getFactionId() != null) && caster.getFactionId().equals(targets.getFactionId()))
  1435. {
  1436. if ((obj.getCurrentHp() < obj.getMaxHp()) && (Rnd.get(100) <= 20))
  1437. {
  1438. clientStopMoving(null);
  1439. caster.setTarget(caster);
  1440. caster.doCast(sk);
  1441. return true;
  1442. }
  1443. }
  1444. }
  1445. }
  1446. break;
  1447. }
  1448. case DEBUFF:
  1449. case POISON:
  1450. case DOT:
  1451. case MDOT:
  1452. case BLEED:
  1453. {
  1454. if (GeoData.getInstance().canSeeTarget(caster, attackTarget) && !canAOE(sk) && !attackTarget.isDead() && (dist2 <= srange))
  1455. {
  1456. if (attackTarget.getFirstEffect(sk) == null)
  1457. {
  1458. clientStopMoving(null);
  1459. caster.doCast(sk);
  1460. return true;
  1461. }
  1462. }
  1463. else if (canAOE(sk))
  1464. {
  1465. if ((sk.getTargetType() == L2TargetType.TARGET_AURA) || (sk.getTargetType() == L2TargetType.TARGET_BEHIND_AURA) || (sk.getTargetType() == L2TargetType.TARGET_FRONT_AURA) || (sk.getTargetType() == L2TargetType.TARGET_AURA_CORPSE_MOB))
  1466. {
  1467. clientStopMoving(null);
  1468. // L2Object target = attackTarget;
  1469. // _actor.setTarget(_actor);
  1470. caster.doCast(sk);
  1471. // _actor.setTarget(target);
  1472. return true;
  1473. }
  1474. if (((sk.getTargetType() == L2TargetType.TARGET_AREA) || (sk.getTargetType() == L2TargetType.TARGET_BEHIND_AREA) || (sk.getTargetType() == L2TargetType.TARGET_FRONT_AREA)) && GeoData.getInstance().canSeeTarget(caster, attackTarget) && !attackTarget.isDead() && (dist2 <= srange))
  1475. {
  1476. clientStopMoving(null);
  1477. caster.doCast(sk);
  1478. return true;
  1479. }
  1480. }
  1481. else if (sk.getTargetType() == L2TargetType.TARGET_ONE)
  1482. {
  1483. L2Character target = effectTargetReconsider(sk, false);
  1484. if (target != null)
  1485. {
  1486. clientStopMoving(null);
  1487. caster.doCast(sk);
  1488. return true;
  1489. }
  1490. }
  1491. break;
  1492. }
  1493. case SLEEP:
  1494. {
  1495. if (sk.getTargetType() == L2TargetType.TARGET_ONE)
  1496. {
  1497. if (!attackTarget.isDead() && (dist2 <= srange))
  1498. {
  1499. if ((dist2 > range) || attackTarget.isMoving())
  1500. {
  1501. if (attackTarget.getFirstEffect(sk) == null)
  1502. {
  1503. clientStopMoving(null);
  1504. // _actor.setTarget(attackTarget);
  1505. caster.doCast(sk);
  1506. return true;
  1507. }
  1508. }
  1509. }
  1510. L2Character target = effectTargetReconsider(sk, false);
  1511. if (target != null)
  1512. {
  1513. clientStopMoving(null);
  1514. caster.doCast(sk);
  1515. return true;
  1516. }
  1517. }
  1518. else if (canAOE(sk))
  1519. {
  1520. if ((sk.getTargetType() == L2TargetType.TARGET_AURA) || (sk.getTargetType() == L2TargetType.TARGET_BEHIND_AURA) || (sk.getTargetType() == L2TargetType.TARGET_FRONT_AURA))
  1521. {
  1522. clientStopMoving(null);
  1523. // L2Object target = attackTarget;
  1524. // _actor.setTarget(_actor);
  1525. caster.doCast(sk);
  1526. // _actor.setTarget(target);
  1527. return true;
  1528. }
  1529. if (((sk.getTargetType() == L2TargetType.TARGET_AREA) || (sk.getTargetType() == L2TargetType.TARGET_BEHIND_AREA) || (sk.getTargetType() == L2TargetType.TARGET_FRONT_AREA)) && GeoData.getInstance().canSeeTarget(caster, attackTarget) && !attackTarget.isDead() && (dist2 <= srange))
  1530. {
  1531. clientStopMoving(null);
  1532. caster.doCast(sk);
  1533. return true;
  1534. }
  1535. }
  1536. break;
  1537. }
  1538. case ROOT:
  1539. case STUN:
  1540. case PARALYZE:
  1541. {
  1542. if (GeoData.getInstance().canSeeTarget(caster, attackTarget) && !canAOE(sk) && (dist2 <= srange))
  1543. {
  1544. if (attackTarget.getFirstEffect(sk) == null)
  1545. {
  1546. clientStopMoving(null);
  1547. caster.doCast(sk);
  1548. return true;
  1549. }
  1550. }
  1551. else if (canAOE(sk))
  1552. {
  1553. if ((sk.getTargetType() == L2TargetType.TARGET_AURA) || (sk.getTargetType() == L2TargetType.TARGET_BEHIND_AURA) || (sk.getTargetType() == L2TargetType.TARGET_FRONT_AURA))
  1554. {
  1555. clientStopMoving(null);
  1556. // L2Object target = attackTarget;
  1557. // _actor.setTarget(_actor);
  1558. caster.doCast(sk);
  1559. // _actor.setTarget(target);
  1560. return true;
  1561. }
  1562. else if (((sk.getTargetType() == L2TargetType.TARGET_AREA) || (sk.getTargetType() == L2TargetType.TARGET_BEHIND_AREA) || (sk.getTargetType() == L2TargetType.TARGET_FRONT_AREA)) && GeoData.getInstance().canSeeTarget(caster, attackTarget) && !attackTarget.isDead() && (dist2 <= srange))
  1563. {
  1564. clientStopMoving(null);
  1565. caster.doCast(sk);
  1566. return true;
  1567. }
  1568. }
  1569. else if (sk.getTargetType() == L2TargetType.TARGET_ONE)
  1570. {
  1571. L2Character target = effectTargetReconsider(sk, false);
  1572. if (target != null)
  1573. {
  1574. clientStopMoving(null);
  1575. caster.doCast(sk);
  1576. return true;
  1577. }
  1578. }
  1579. break;
  1580. }
  1581. case MUTE:
  1582. case FEAR:
  1583. {
  1584. if (GeoData.getInstance().canSeeTarget(caster, attackTarget) && !canAOE(sk) && (dist2 <= srange))
  1585. {
  1586. if (attackTarget.getFirstEffect(sk) == null)
  1587. {
  1588. clientStopMoving(null);
  1589. caster.doCast(sk);
  1590. return true;
  1591. }
  1592. }
  1593. else if (canAOE(sk))
  1594. {
  1595. if ((sk.getTargetType() == L2TargetType.TARGET_AURA) || (sk.getTargetType() == L2TargetType.TARGET_BEHIND_AURA) || (sk.getTargetType() == L2TargetType.TARGET_FRONT_AURA))
  1596. {
  1597. clientStopMoving(null);
  1598. // L2Object target = attackTarget;
  1599. // _actor.setTarget(_actor);
  1600. caster.doCast(sk);
  1601. // _actor.setTarget(target);
  1602. return true;
  1603. }
  1604. if (((sk.getTargetType() == L2TargetType.TARGET_AREA) || (sk.getTargetType() == L2TargetType.TARGET_BEHIND_AREA) || (sk.getTargetType() == L2TargetType.TARGET_FRONT_AREA)) && GeoData.getInstance().canSeeTarget(caster, attackTarget) && !attackTarget.isDead() && (dist2 <= srange))
  1605. {
  1606. clientStopMoving(null);
  1607. caster.doCast(sk);
  1608. return true;
  1609. }
  1610. }
  1611. else if (sk.getTargetType() == L2TargetType.TARGET_ONE)
  1612. {
  1613. L2Character target = effectTargetReconsider(sk, false);
  1614. if (target != null)
  1615. {
  1616. clientStopMoving(null);
  1617. caster.doCast(sk);
  1618. return true;
  1619. }
  1620. }
  1621. break;
  1622. }
  1623. case PDAM:
  1624. case MDAM:
  1625. case BLOW:
  1626. case DRAIN:
  1627. case CHARGEDAM:
  1628. case FATAL:
  1629. case DEATHLINK:
  1630. case CPDAM:
  1631. case MANADAM:
  1632. case CPDAMPERCENT:
  1633. {
  1634. if (!canAura(sk))
  1635. {
  1636. if (GeoData.getInstance().canSeeTarget(caster, attackTarget) && !attackTarget.isDead() && (dist2 <= srange))
  1637. {
  1638. clientStopMoving(null);
  1639. caster.doCast(sk);
  1640. return true;
  1641. }
  1642. L2Character target = skillTargetReconsider(sk);
  1643. if (target != null)
  1644. {
  1645. clientStopMoving(null);
  1646. L2Object targets = attackTarget;
  1647. caster.setTarget(target);
  1648. caster.doCast(sk);
  1649. caster.setTarget(targets);
  1650. return true;
  1651. }
  1652. }
  1653. else
  1654. {
  1655. clientStopMoving(null);
  1656. caster.doCast(sk);
  1657. return true;
  1658. }
  1659. break;
  1660. }
  1661. default:
  1662. {
  1663. if (sk.hasEffectType(L2EffectType.CANCEL, L2EffectType.CANCEL_ALL, L2EffectType.NEGATE))
  1664. {
  1665. // decrease cancel probability
  1666. if (Rnd.get(50) != 0)
  1667. {
  1668. return true;
  1669. }
  1670. if (sk.getTargetType() == L2TargetType.TARGET_ONE)
  1671. {
  1672. if ((attackTarget.getFirstEffect(L2EffectType.BUFF) != null) && GeoData.getInstance().canSeeTarget(caster, attackTarget) && !attackTarget.isDead() && (dist2 <= srange))
  1673. {
  1674. clientStopMoving(null);
  1675. // L2Object target = attackTarget;
  1676. // _actor.setTarget(_actor);
  1677. caster.doCast(sk);
  1678. // _actor.setTarget(target);
  1679. return true;
  1680. }
  1681. L2Character target = effectTargetReconsider(sk, false);
  1682. if (target != null)
  1683. {
  1684. clientStopMoving(null);
  1685. L2Object targets = attackTarget;
  1686. caster.setTarget(target);
  1687. caster.doCast(sk);
  1688. caster.setTarget(targets);
  1689. return true;
  1690. }
  1691. }
  1692. else if (canAOE(sk))
  1693. {
  1694. if (((sk.getTargetType() == L2TargetType.TARGET_AURA) || (sk.getTargetType() == L2TargetType.TARGET_BEHIND_AURA) || (sk.getTargetType() == L2TargetType.TARGET_FRONT_AURA)) && GeoData.getInstance().canSeeTarget(caster, attackTarget))
  1695. {
  1696. clientStopMoving(null);
  1697. // L2Object target = attackTarget;
  1698. // _actor.setTarget(_actor);
  1699. caster.doCast(sk);
  1700. // _actor.setTarget(target);
  1701. return true;
  1702. }
  1703. else if (((sk.getTargetType() == L2TargetType.TARGET_AREA) || (sk.getTargetType() == L2TargetType.TARGET_BEHIND_AREA) || (sk.getTargetType() == L2TargetType.TARGET_FRONT_AREA)) && GeoData.getInstance().canSeeTarget(caster, attackTarget) && !attackTarget.isDead() && (dist2 <= srange))
  1704. {
  1705. clientStopMoving(null);
  1706. caster.doCast(sk);
  1707. return true;
  1708. }
  1709. }
  1710. }
  1711. if (!canAura(sk))
  1712. {
  1713. if (GeoData.getInstance().canSeeTarget(caster, attackTarget) && !attackTarget.isDead() && (dist2 <= srange))
  1714. {
  1715. clientStopMoving(null);
  1716. caster.doCast(sk);
  1717. return true;
  1718. }
  1719. L2Character target = skillTargetReconsider(sk);
  1720. if (target != null)
  1721. {
  1722. clientStopMoving(null);
  1723. L2Object targets = attackTarget;
  1724. caster.setTarget(target);
  1725. caster.doCast(sk);
  1726. caster.setTarget(targets);
  1727. return true;
  1728. }
  1729. }
  1730. else
  1731. {
  1732. clientStopMoving(null);
  1733. // L2Object targets = attackTarget;
  1734. // _actor.setTarget(_actor);
  1735. caster.doCast(sk);
  1736. // _actor.setTarget(targets);
  1737. return true;
  1738. }
  1739. }
  1740. break;
  1741. }
  1742. return false;
  1743. }
  1744. /**
  1745. * This AI task will start when ACTOR cannot move and attack range larger than distance
  1746. */
  1747. private void movementDisable()
  1748. {
  1749. final L2Attackable npc = getActiveChar();
  1750. double dist = 0;
  1751. double dist2 = 0;
  1752. int range = 0;
  1753. try
  1754. {
  1755. if (npc.getTarget() == null)
  1756. {
  1757. npc.setTarget(getAttackTarget());
  1758. }
  1759. dist = Math.sqrt(npc.getPlanDistanceSq(getAttackTarget().getX(), getAttackTarget().getY()));
  1760. dist2 = dist - npc.getTemplate().getCollisionRadius();
  1761. range = npc.getPhysicalAttackRange() + npc.getTemplate().getCollisionRadius() + getAttackTarget().getTemplate().getCollisionRadius();
  1762. if (getAttackTarget().isMoving())
  1763. {
  1764. dist = dist - 30;
  1765. if (npc.isMoving())
  1766. {
  1767. dist = dist - 50;
  1768. }
  1769. }
  1770. // Check if activeChar has any skill
  1771. if (!_skillrender.getGeneralskills().isEmpty())
  1772. {
  1773. // -------------------------------------------------------------
  1774. // Try to stop the target or disable the target as priority
  1775. int random = Rnd.get(100);
  1776. if (!_skillrender.getImmobiliseSkills().isEmpty() && !getAttackTarget().isImmobilized() && (random < 2))
  1777. {
  1778. for (L2Skill sk : _skillrender.getImmobiliseSkills())
  1779. {
  1780. if (!checkSkillCastConditions(sk) || (((sk.getCastRange() + npc.getTemplate().getCollisionRadius() + getAttackTarget().getTemplate().getCollisionRadius()) <= dist2) && !canAura(sk)))
  1781. {
  1782. continue;
  1783. }
  1784. if (!GeoData.getInstance().canSeeTarget(npc, getAttackTarget()))
  1785. {
  1786. continue;
  1787. }
  1788. if (getAttackTarget().getFirstEffect(sk) == null)
  1789. {
  1790. clientStopMoving(null);
  1791. // L2Object target = getAttackTarget();
  1792. // _actor.setTarget(_actor);
  1793. npc.doCast(sk);
  1794. // _actor.setTarget(target);
  1795. return;
  1796. }
  1797. }
  1798. }
  1799. // -------------------------------------------------------------
  1800. // Same as Above, but with Mute/FEAR etc....
  1801. if (!_skillrender.getCostOverTimeSkills().isEmpty() && (random < 5))
  1802. {
  1803. for (L2Skill sk : _skillrender.getCostOverTimeSkills())
  1804. {
  1805. if (!checkSkillCastConditions(sk) || (((sk.getCastRange() + npc.getTemplate().getCollisionRadius() + getAttackTarget().getTemplate().getCollisionRadius()) <= dist2) && !canAura(sk)))
  1806. {
  1807. continue;
  1808. }
  1809. if (!GeoData.getInstance().canSeeTarget(npc, getAttackTarget()))
  1810. {
  1811. continue;
  1812. }
  1813. if (getAttackTarget().getFirstEffect(sk) == null)
  1814. {
  1815. clientStopMoving(null);
  1816. // L2Object target = getAttackTarget();
  1817. // _actor.setTarget(_actor);
  1818. npc.doCast(sk);
  1819. // _actor.setTarget(target);
  1820. return;
  1821. }
  1822. }
  1823. }
  1824. // -------------------------------------------------------------
  1825. if (!_skillrender.getDebuffSkills().isEmpty() && (random < 8))
  1826. {
  1827. for (L2Skill sk : _skillrender.getDebuffSkills())
  1828. {
  1829. if (!checkSkillCastConditions(sk) || (((sk.getCastRange() + npc.getTemplate().getCollisionRadius() + getAttackTarget().getTemplate().getCollisionRadius()) <= dist2) && !canAura(sk)))
  1830. {
  1831. continue;
  1832. }
  1833. if (!GeoData.getInstance().canSeeTarget(npc, getAttackTarget()))
  1834. {
  1835. continue;
  1836. }
  1837. if (getAttackTarget().getFirstEffect(sk) == null)
  1838. {
  1839. clientStopMoving(null);
  1840. // L2Object target = getAttackTarget();
  1841. // _actor.setTarget(_actor);
  1842. npc.doCast(sk);
  1843. // _actor.setTarget(target);
  1844. return;
  1845. }
  1846. }
  1847. }
  1848. // -------------------------------------------------------------
  1849. // Some side effect skill like CANCEL or NEGATE
  1850. if (!_skillrender.getNegativeSkills().isEmpty() && (random < 9))
  1851. {
  1852. for (L2Skill sk : _skillrender.getNegativeSkills())
  1853. {
  1854. if (!checkSkillCastConditions(sk) || (((sk.getCastRange() + npc.getTemplate().getCollisionRadius() + getAttackTarget().getTemplate().getCollisionRadius()) <= dist2) && !canAura(sk)))
  1855. {
  1856. continue;
  1857. }
  1858. if (!GeoData.getInstance().canSeeTarget(npc, getAttackTarget()))
  1859. {
  1860. continue;
  1861. }
  1862. if (getAttackTarget().getFirstEffect(L2EffectType.BUFF) != null)
  1863. {
  1864. clientStopMoving(null);
  1865. // L2Object target = getAttackTarget();
  1866. // _actor.setTarget(_actor);
  1867. npc.doCast(sk);
  1868. // _actor.setTarget(target);
  1869. return;
  1870. }
  1871. }
  1872. }
  1873. // -------------------------------------------------------------
  1874. // Start ATK SKILL when nothing can be done
  1875. if (!_skillrender.getAtkSkills().isEmpty() && (npc.isMovementDisabled() || (npc.getAiType() == AIType.MAGE) || (npc.getAiType() == AIType.HEALER)))
  1876. {
  1877. for (L2Skill sk : _skillrender.getAtkSkills())
  1878. {
  1879. if (!checkSkillCastConditions(sk) || (((sk.getCastRange() + npc.getTemplate().getCollisionRadius() + getAttackTarget().getTemplate().getCollisionRadius()) <= dist2) && !canAura(sk)))
  1880. {
  1881. continue;
  1882. }
  1883. if (!GeoData.getInstance().canSeeTarget(npc, getAttackTarget()))
  1884. {
  1885. continue;
  1886. }
  1887. clientStopMoving(null);
  1888. // L2Object target = getAttackTarget();
  1889. // _actor.setTarget(_actor);
  1890. npc.doCast(sk);
  1891. // _actor.setTarget(target);
  1892. return;
  1893. }
  1894. }
  1895. // -------------------------------------------------------------
  1896. // if there is no ATK skill to use, then try Universal skill
  1897. // @formatter:off
  1898. /*
  1899. for(L2Skill sk:_skillrender.getUniversalSkills())
  1900. {
  1901. if(sk.getMpConsume()>=_actor.getCurrentMp()
  1902. || _actor.isSkillDisabled(sk.getId())
  1903. ||(sk.getCastRange()+ _actor.getTemplate().getCollisionRadius() + getAttackTarget().getTemplate().getCollisionRadius() <= dist2 && !canAura(sk))
  1904. ||(sk.isMagic()&&_actor.isMuted())
  1905. ||(!sk.isMagic()&&_actor.isPhysicalMuted()))
  1906. {
  1907. continue;
  1908. }
  1909. if(!GeoData.getInstance().canSeeTarget(_actor,getAttackTarget()))
  1910. continue;
  1911. clientStopMoving(null);
  1912. L2Object target = getAttackTarget();
  1913. //_actor.setTarget(_actor);
  1914. _actor.doCast(sk);
  1915. //_actor.setTarget(target);
  1916. return;
  1917. }
  1918. */
  1919. // @formatter:on
  1920. }
  1921. // timepass = timepass + 1;
  1922. if (npc.isMovementDisabled())
  1923. {
  1924. // timepass = 0;
  1925. targetReconsider();
  1926. return;
  1927. }
  1928. // else if(timepass>=5)
  1929. // {
  1930. // timepass = 0;
  1931. // AggroReconsider();
  1932. // return;
  1933. // }
  1934. if ((dist > range) || !GeoData.getInstance().canSeeTarget(npc, getAttackTarget()))
  1935. {
  1936. if (getAttackTarget().isMoving())
  1937. {
  1938. range -= 100;
  1939. }
  1940. if (range < 5)
  1941. {
  1942. range = 5;
  1943. }
  1944. moveToPawn(getAttackTarget(), range);
  1945. return;
  1946. }
  1947. melee(npc.getPrimarySkillId());
  1948. }
  1949. catch (NullPointerException e)
  1950. {
  1951. setIntention(AI_INTENTION_ACTIVE);
  1952. _log.warning(getClass().getSimpleName() + ": " + this + " - failed executing movementDisable(): " + e.getMessage());
  1953. return;
  1954. }
  1955. }
  1956. /**
  1957. * @param skill the skill to check.
  1958. * @return {@code true} if the skill is available for casting {@code false} otherwise.
  1959. */
  1960. private boolean checkSkillCastConditions(L2Skill skill)
  1961. {
  1962. // Not enough MP.
  1963. if (skill.getMpConsume() >= getActiveChar().getCurrentMp())
  1964. {
  1965. return false;
  1966. }
  1967. // Character is in "skill disabled" mode.
  1968. if (getActiveChar().isSkillDisabled(skill))
  1969. {
  1970. return false;
  1971. }
  1972. // If is a static skill and magic skill and character is muted or is a physical skill muted and character is physically muted.
  1973. if (!skill.isStatic() && ((skill.isMagic() && getActiveChar().isMuted()) || getActiveChar().isPhysicalMuted()))
  1974. {
  1975. return false;
  1976. }
  1977. return true;
  1978. }
  1979. private L2Character effectTargetReconsider(L2Skill sk, boolean positive)
  1980. {
  1981. if (sk == null)
  1982. {
  1983. return null;
  1984. }
  1985. L2Attackable actor = getActiveChar();
  1986. if (!sk.hasEffectType(L2EffectType.CANCEL, L2EffectType.CANCEL_ALL, L2EffectType.NEGATE))
  1987. {
  1988. if (!positive)
  1989. {
  1990. double dist = 0;
  1991. double dist2 = 0;
  1992. int range = 0;
  1993. for (L2Character obj : actor.getAttackByList())
  1994. {
  1995. if ((obj == null) || obj.isDead() || !GeoData.getInstance().canSeeTarget(actor, obj) || (obj == getAttackTarget()))
  1996. {
  1997. continue;
  1998. }
  1999. try
  2000. {
  2001. actor.setTarget(getAttackTarget());
  2002. dist = Math.sqrt(actor.getPlanDistanceSq(obj.getX(), obj.getY()));
  2003. dist2 = dist - actor.getTemplate().getCollisionRadius();
  2004. range = sk.getCastRange() + actor.getTemplate().getCollisionRadius() + obj.getTemplate().getCollisionRadius();
  2005. if (obj.isMoving())
  2006. {
  2007. dist2 = dist2 - 70;
  2008. }
  2009. }
  2010. catch (NullPointerException e)
  2011. {
  2012. continue;
  2013. }
  2014. if (dist2 <= range)
  2015. {
  2016. if (getAttackTarget().getFirstEffect(sk) == null)
  2017. {
  2018. return obj;
  2019. }
  2020. }
  2021. }
  2022. // ----------------------------------------------------------------------
  2023. // If there is nearby Target with aggro, start going on random target that is attackable
  2024. for (L2Character obj : actor.getKnownList().getKnownCharactersInRadius(range))
  2025. {
  2026. if (obj.isDead() || !GeoData.getInstance().canSeeTarget(actor, obj))
  2027. {
  2028. continue;
  2029. }
  2030. try
  2031. {
  2032. actor.setTarget(getAttackTarget());
  2033. dist = Math.sqrt(actor.getPlanDistanceSq(obj.getX(), obj.getY()));
  2034. dist2 = dist;
  2035. range = sk.getCastRange() + actor.getTemplate().getCollisionRadius() + obj.getTemplate().getCollisionRadius();
  2036. if (obj.isMoving())
  2037. {
  2038. dist2 = dist2 - 70;
  2039. }
  2040. }
  2041. catch (NullPointerException e)
  2042. {
  2043. continue;
  2044. }
  2045. if (obj instanceof L2Attackable)
  2046. {
  2047. if ((actor.getEnemyClan() != null) && actor.getEnemyClan().equals(((L2Attackable) obj).getClan()))
  2048. {
  2049. if (dist2 <= range)
  2050. {
  2051. if (getAttackTarget().getFirstEffect(sk) == null)
  2052. {
  2053. return obj;
  2054. }
  2055. }
  2056. }
  2057. }
  2058. if ((obj instanceof L2PcInstance) || (obj instanceof L2Summon))
  2059. {
  2060. if (dist2 <= range)
  2061. {
  2062. if (getAttackTarget().getFirstEffect(sk) == null)
  2063. {
  2064. return obj;
  2065. }
  2066. }
  2067. }
  2068. }
  2069. }
  2070. else if (positive)
  2071. {
  2072. double dist = 0;
  2073. double dist2 = 0;
  2074. int range = 0;
  2075. for (L2Character obj : actor.getKnownList().getKnownCharactersInRadius(range))
  2076. {
  2077. if (!(obj instanceof L2Attackable) || obj.isDead() || !GeoData.getInstance().canSeeTarget(actor, obj))
  2078. {
  2079. continue;
  2080. }
  2081. L2Attackable targets = ((L2Attackable) obj);
  2082. if ((actor.getFactionId() != null) && !actor.getFactionId().equals(targets.getFactionId()))
  2083. {
  2084. continue;
  2085. }
  2086. try
  2087. {
  2088. actor.setTarget(getAttackTarget());
  2089. dist = Math.sqrt(actor.getPlanDistanceSq(obj.getX(), obj.getY()));
  2090. dist2 = dist - actor.getTemplate().getCollisionRadius();
  2091. range = sk.getCastRange() + actor.getTemplate().getCollisionRadius() + obj.getTemplate().getCollisionRadius();
  2092. if (obj.isMoving())
  2093. {
  2094. dist2 = dist2 - 70;
  2095. }
  2096. }
  2097. catch (NullPointerException e)
  2098. {
  2099. continue;
  2100. }
  2101. if (dist2 <= range)
  2102. {
  2103. if (obj.getFirstEffect(sk) == null)
  2104. {
  2105. return obj;
  2106. }
  2107. }
  2108. }
  2109. }
  2110. }
  2111. else
  2112. {
  2113. double dist = 0;
  2114. double dist2 = 0;
  2115. int range = 0;
  2116. range = sk.getCastRange() + actor.getTemplate().getCollisionRadius() + getAttackTarget().getTemplate().getCollisionRadius();
  2117. for (L2Character obj : actor.getKnownList().getKnownCharactersInRadius(range))
  2118. {
  2119. if ((obj == null) || obj.isDead() || !GeoData.getInstance().canSeeTarget(actor, obj))
  2120. {
  2121. continue;
  2122. }
  2123. try
  2124. {
  2125. actor.setTarget(getAttackTarget());
  2126. dist = Math.sqrt(actor.getPlanDistanceSq(obj.getX(), obj.getY()));
  2127. dist2 = dist - actor.getTemplate().getCollisionRadius();
  2128. range = sk.getCastRange() + actor.getTemplate().getCollisionRadius() + obj.getTemplate().getCollisionRadius();
  2129. if (obj.isMoving())
  2130. {
  2131. dist2 = dist2 - 70;
  2132. }
  2133. }
  2134. catch (NullPointerException e)
  2135. {
  2136. continue;
  2137. }
  2138. if (obj instanceof L2Attackable)
  2139. {
  2140. if ((actor.getEnemyClan() != null) && actor.getEnemyClan().equals(((L2Attackable) obj).getClan()))
  2141. {
  2142. if (dist2 <= range)
  2143. {
  2144. if (getAttackTarget().getFirstEffect(L2EffectType.BUFF) != null)
  2145. {
  2146. return obj;
  2147. }
  2148. }
  2149. }
  2150. }
  2151. if ((obj instanceof L2PcInstance) || (obj instanceof L2Summon))
  2152. {
  2153. if (dist2 <= range)
  2154. {
  2155. if (getAttackTarget().getFirstEffect(L2EffectType.BUFF) != null)
  2156. {
  2157. return obj;
  2158. }
  2159. }
  2160. }
  2161. }
  2162. }
  2163. return null;
  2164. }
  2165. private L2Character skillTargetReconsider(L2Skill sk)
  2166. {
  2167. double dist = 0;
  2168. double dist2 = 0;
  2169. int range = 0;
  2170. L2Attackable actor = getActiveChar();
  2171. if (actor.getHateList() != null)
  2172. {
  2173. for (L2Character obj : actor.getHateList())
  2174. {
  2175. if ((obj == null) || !GeoData.getInstance().canSeeTarget(actor, obj) || obj.isDead())
  2176. {
  2177. continue;
  2178. }
  2179. try
  2180. {
  2181. actor.setTarget(getAttackTarget());
  2182. dist = Math.sqrt(actor.getPlanDistanceSq(obj.getX(), obj.getY()));
  2183. dist2 = dist - actor.getTemplate().getCollisionRadius();
  2184. range = sk.getCastRange() + actor.getTemplate().getCollisionRadius() + getAttackTarget().getTemplate().getCollisionRadius();
  2185. // if(obj.isMoving())
  2186. // dist2 = dist2 - 40;
  2187. }
  2188. catch (NullPointerException e)
  2189. {
  2190. continue;
  2191. }
  2192. if (dist2 <= range)
  2193. {
  2194. return obj;
  2195. }
  2196. }
  2197. }
  2198. if (!(actor instanceof L2GuardInstance))
  2199. {
  2200. Collection<L2Object> objs = actor.getKnownList().getKnownObjects().values();
  2201. for (L2Object target : objs)
  2202. {
  2203. try
  2204. {
  2205. actor.setTarget(getAttackTarget());
  2206. dist = Math.sqrt(actor.getPlanDistanceSq(target.getX(), target.getY()));
  2207. dist2 = dist;
  2208. range = sk.getCastRange() + actor.getTemplate().getCollisionRadius() + getAttackTarget().getTemplate().getCollisionRadius();
  2209. // if(obj.isMoving())
  2210. // dist2 = dist2 - 40;
  2211. }
  2212. catch (NullPointerException e)
  2213. {
  2214. continue;
  2215. }
  2216. L2Character obj = null;
  2217. if (target instanceof L2Character)
  2218. {
  2219. obj = (L2Character) target;
  2220. }
  2221. if ((obj == null) || !GeoData.getInstance().canSeeTarget(actor, obj) || (dist2 > range))
  2222. {
  2223. continue;
  2224. }
  2225. if (obj instanceof L2PcInstance)
  2226. {
  2227. return obj;
  2228. }
  2229. if (obj instanceof L2Attackable)
  2230. {
  2231. if ((actor.getEnemyClan() != null) && actor.getEnemyClan().equals(((L2Attackable) obj).getClan()))
  2232. {
  2233. return obj;
  2234. }
  2235. if (actor.getIsChaos() != 0)
  2236. {
  2237. if ((((L2Attackable) obj).getFactionId() != null) && ((L2Attackable) obj).getFactionId().equals(actor.getFactionId()))
  2238. {
  2239. continue;
  2240. }
  2241. return obj;
  2242. }
  2243. }
  2244. if (obj instanceof L2Summon)
  2245. {
  2246. return obj;
  2247. }
  2248. }
  2249. }
  2250. return null;
  2251. }
  2252. private void targetReconsider()
  2253. {
  2254. double dist = 0;
  2255. double dist2 = 0;
  2256. int range = 0;
  2257. L2Attackable actor = getActiveChar();
  2258. L2Character MostHate = actor.getMostHated();
  2259. if (actor.getHateList() != null)
  2260. {
  2261. for (L2Character obj : actor.getHateList())
  2262. {
  2263. if ((obj == null) || !GeoData.getInstance().canSeeTarget(actor, obj) || obj.isDead() || (obj != MostHate) || (obj == actor))
  2264. {
  2265. continue;
  2266. }
  2267. try
  2268. {
  2269. dist = Math.sqrt(actor.getPlanDistanceSq(obj.getX(), obj.getY()));
  2270. dist2 = dist - actor.getTemplate().getCollisionRadius();
  2271. range = actor.getPhysicalAttackRange() + actor.getTemplate().getCollisionRadius() + obj.getTemplate().getCollisionRadius();
  2272. if (obj.isMoving())
  2273. {
  2274. dist2 = dist2 - 70;
  2275. }
  2276. }
  2277. catch (NullPointerException e)
  2278. {
  2279. continue;
  2280. }
  2281. if (dist2 <= range)
  2282. {
  2283. if (MostHate != null)
  2284. {
  2285. actor.addDamageHate(obj, 0, actor.getHating(MostHate));
  2286. }
  2287. else
  2288. {
  2289. actor.addDamageHate(obj, 0, 2000);
  2290. }
  2291. actor.setTarget(obj);
  2292. setAttackTarget(obj);
  2293. return;
  2294. }
  2295. }
  2296. }
  2297. if (!(actor instanceof L2GuardInstance))
  2298. {
  2299. Collection<L2Object> objs = actor.getKnownList().getKnownObjects().values();
  2300. for (L2Object target : objs)
  2301. {
  2302. L2Character obj = null;
  2303. if (target instanceof L2Character)
  2304. {
  2305. obj = (L2Character) target;
  2306. }
  2307. if ((obj == null) || !GeoData.getInstance().canSeeTarget(actor, obj) || obj.isDead() || (obj != MostHate) || (obj == actor) || (obj == getAttackTarget()))
  2308. {
  2309. continue;
  2310. }
  2311. if (obj instanceof L2PcInstance)
  2312. {
  2313. if (MostHate != null)
  2314. {
  2315. actor.addDamageHate(obj, 0, actor.getHating(MostHate));
  2316. }
  2317. else
  2318. {
  2319. actor.addDamageHate(obj, 0, 2000);
  2320. }
  2321. actor.setTarget(obj);
  2322. setAttackTarget(obj);
  2323. }
  2324. else if (obj instanceof L2Attackable)
  2325. {
  2326. if ((actor.getEnemyClan() != null) && actor.getEnemyClan().equals(((L2Attackable) obj).getClan()))
  2327. {
  2328. actor.addDamageHate(obj, 0, actor.getHating(MostHate));
  2329. actor.setTarget(obj);
  2330. }
  2331. if (actor.getIsChaos() != 0)
  2332. {
  2333. if ((((L2Attackable) obj).getFactionId() != null) && ((L2Attackable) obj).getFactionId().equals(actor.getFactionId()))
  2334. {
  2335. continue;
  2336. }
  2337. if (MostHate != null)
  2338. {
  2339. actor.addDamageHate(obj, 0, actor.getHating(MostHate));
  2340. }
  2341. else
  2342. {
  2343. actor.addDamageHate(obj, 0, 2000);
  2344. }
  2345. actor.setTarget(obj);
  2346. setAttackTarget(obj);
  2347. }
  2348. }
  2349. else if (obj instanceof L2Summon)
  2350. {
  2351. if (MostHate != null)
  2352. {
  2353. actor.addDamageHate(obj, 0, actor.getHating(MostHate));
  2354. }
  2355. else
  2356. {
  2357. actor.addDamageHate(obj, 0, 2000);
  2358. }
  2359. actor.setTarget(obj);
  2360. setAttackTarget(obj);
  2361. }
  2362. }
  2363. }
  2364. }
  2365. private void aggroReconsider()
  2366. {
  2367. L2Attackable actor = getActiveChar();
  2368. L2Character MostHate = actor.getMostHated();
  2369. if (actor.getHateList() != null)
  2370. {
  2371. int rand = Rnd.get(actor.getHateList().size());
  2372. int count = 0;
  2373. for (L2Character obj : actor.getHateList())
  2374. {
  2375. if (count < rand)
  2376. {
  2377. count++;
  2378. continue;
  2379. }
  2380. if ((obj == null) || !GeoData.getInstance().canSeeTarget(actor, obj) || obj.isDead() || (obj == getAttackTarget()) || (obj == actor))
  2381. {
  2382. continue;
  2383. }
  2384. try
  2385. {
  2386. actor.setTarget(getAttackTarget());
  2387. }
  2388. catch (NullPointerException e)
  2389. {
  2390. continue;
  2391. }
  2392. if (MostHate != null)
  2393. {
  2394. actor.addDamageHate(obj, 0, actor.getHating(MostHate));
  2395. }
  2396. else
  2397. {
  2398. actor.addDamageHate(obj, 0, 2000);
  2399. }
  2400. actor.setTarget(obj);
  2401. setAttackTarget(obj);
  2402. return;
  2403. }
  2404. }
  2405. if (!(actor instanceof L2GuardInstance))
  2406. {
  2407. Collection<L2Object> objs = actor.getKnownList().getKnownObjects().values();
  2408. for (L2Object target : objs)
  2409. {
  2410. L2Character obj = null;
  2411. if (target instanceof L2Character)
  2412. {
  2413. obj = (L2Character) target;
  2414. }
  2415. else
  2416. {
  2417. continue;
  2418. }
  2419. if (!GeoData.getInstance().canSeeTarget(actor, obj) || obj.isDead() || (obj != MostHate) || (obj == actor))
  2420. {
  2421. continue;
  2422. }
  2423. if (obj instanceof L2PcInstance)
  2424. {
  2425. if ((MostHate != null) && !MostHate.isDead())
  2426. {
  2427. actor.addDamageHate(obj, 0, actor.getHating(MostHate));
  2428. }
  2429. else
  2430. {
  2431. actor.addDamageHate(obj, 0, 2000);
  2432. }
  2433. actor.setTarget(obj);
  2434. setAttackTarget(obj);
  2435. }
  2436. else if (obj instanceof L2Attackable)
  2437. {
  2438. if ((actor.getEnemyClan() != null) && actor.getEnemyClan().equals(((L2Attackable) obj).getClan()))
  2439. {
  2440. if (MostHate != null)
  2441. {
  2442. actor.addDamageHate(obj, 0, actor.getHating(MostHate));
  2443. }
  2444. else
  2445. {
  2446. actor.addDamageHate(obj, 0, 2000);
  2447. }
  2448. actor.setTarget(obj);
  2449. }
  2450. if (actor.getIsChaos() != 0)
  2451. {
  2452. if ((((L2Attackable) obj).getFactionId() != null) && ((L2Attackable) obj).getFactionId().equals(actor.getFactionId()))
  2453. {
  2454. continue;
  2455. }
  2456. if (MostHate != null)
  2457. {
  2458. actor.addDamageHate(obj, 0, actor.getHating(MostHate));
  2459. }
  2460. else
  2461. {
  2462. actor.addDamageHate(obj, 0, 2000);
  2463. }
  2464. actor.setTarget(obj);
  2465. setAttackTarget(obj);
  2466. }
  2467. }
  2468. else if (obj instanceof L2Summon)
  2469. {
  2470. if (MostHate != null)
  2471. {
  2472. actor.addDamageHate(obj, 0, actor.getHating(MostHate));
  2473. }
  2474. else
  2475. {
  2476. actor.addDamageHate(obj, 0, 2000);
  2477. }
  2478. actor.setTarget(obj);
  2479. setAttackTarget(obj);
  2480. }
  2481. }
  2482. }
  2483. }
  2484. private List<L2Skill> longRangeSkillRender()
  2485. {
  2486. longRangeSkills = _skillrender.getLongRangeSkills();
  2487. if (longRangeSkills.isEmpty())
  2488. {
  2489. longRangeSkills = getActiveChar().getLongRangeSkill();
  2490. }
  2491. return longRangeSkills;
  2492. }
  2493. private List<L2Skill> shortRangeSkillRender()
  2494. {
  2495. shortRangeSkills = _skillrender.getShortRangeSkills();
  2496. if (shortRangeSkills.isEmpty())
  2497. {
  2498. shortRangeSkills = getActiveChar().getShortRangeSkill();
  2499. }
  2500. return shortRangeSkills;
  2501. }
  2502. /**
  2503. * Manage AI thinking actions of a L2Attackable.
  2504. */
  2505. @Override
  2506. protected void onEvtThink()
  2507. {
  2508. // Check if the actor can't use skills and if a thinking action isn't already in progress
  2509. if (_thinking || getActiveChar().isAllSkillsDisabled())
  2510. {
  2511. return;
  2512. }
  2513. // Start thinking action
  2514. _thinking = true;
  2515. try
  2516. {
  2517. // Manage AI thinks of a L2Attackable
  2518. switch (getIntention())
  2519. {
  2520. case AI_INTENTION_ACTIVE:
  2521. thinkActive();
  2522. break;
  2523. case AI_INTENTION_ATTACK:
  2524. thinkAttack();
  2525. break;
  2526. case AI_INTENTION_CAST:
  2527. thinkCast();
  2528. break;
  2529. }
  2530. }
  2531. catch (Exception e)
  2532. {
  2533. _log.warning(getClass().getSimpleName() + ": " + this + " - onEvtThink() failed: " + e.getMessage());
  2534. }
  2535. finally
  2536. {
  2537. // Stop thinking action
  2538. _thinking = false;
  2539. }
  2540. }
  2541. /**
  2542. * Launch actions corresponding to the Event Attacked.<br>
  2543. * <B><U> Actions</U> :</B>
  2544. * <ul>
  2545. * <li>Init the attack : Calculate the attack timeout, Set the _globalAggro to 0, Add the attacker to the actor _aggroList</li>
  2546. * <li>Set the L2Character movement type to run and send Server->Client packet ChangeMoveType to all others L2PcInstance</li>
  2547. * <li>Set the Intention to AI_INTENTION_ATTACK</li>
  2548. * </ul>
  2549. * @param attacker The L2Character that attacks the actor
  2550. */
  2551. @Override
  2552. protected void onEvtAttacked(L2Character attacker)
  2553. {
  2554. L2Attackable me = getActiveChar();
  2555. // Calculate the attack timeout
  2556. _attackTimeout = MAX_ATTACK_TIMEOUT + GameTimeController.getInstance().getGameTicks();
  2557. // Set the _globalAggro to 0 to permit attack even just after spawn
  2558. if (_globalAggro < 0)
  2559. {
  2560. _globalAggro = 0;
  2561. }
  2562. // Add the attacker to the _aggroList of the actor
  2563. me.addDamageHate(attacker, 0, 1);
  2564. // Set the L2Character movement type to run and send Server->Client packet ChangeMoveType to all others L2PcInstance
  2565. if (!me.isRunning())
  2566. {
  2567. me.setRunning();
  2568. }
  2569. // Set the Intention to AI_INTENTION_ATTACK
  2570. if (getIntention() != AI_INTENTION_ATTACK)
  2571. {
  2572. setIntention(CtrlIntention.AI_INTENTION_ATTACK, attacker);
  2573. }
  2574. else if (me.getMostHated() != getAttackTarget())
  2575. {
  2576. setIntention(CtrlIntention.AI_INTENTION_ATTACK, attacker);
  2577. }
  2578. if (me instanceof L2MonsterInstance)
  2579. {
  2580. L2MonsterInstance master = (L2MonsterInstance) me;
  2581. if (master.hasMinions())
  2582. {
  2583. master.getMinionList().onAssist(me, attacker);
  2584. }
  2585. master = master.getLeader();
  2586. if ((master != null) && master.hasMinions())
  2587. {
  2588. master.getMinionList().onAssist(me, attacker);
  2589. }
  2590. }
  2591. super.onEvtAttacked(attacker);
  2592. }
  2593. /**
  2594. * Launch actions corresponding to the Event Aggression.<br>
  2595. * <B><U> Actions</U> :</B>
  2596. * <ul>
  2597. * <li>Add the target to the actor _aggroList or update hate if already present</li>
  2598. * <li>Set the actor Intention to AI_INTENTION_ATTACK (if actor is L2GuardInstance check if it isn't too far from its home location)</li>
  2599. * </ul>
  2600. * @param aggro The value of hate to add to the actor against the target
  2601. */
  2602. @Override
  2603. protected void onEvtAggression(L2Character target, int aggro)
  2604. {
  2605. L2Attackable me = getActiveChar();
  2606. if (target != null)
  2607. {
  2608. // Add the target to the actor _aggroList or update hate if already present
  2609. me.addDamageHate(target, 0, aggro);
  2610. // Set the actor AI Intention to AI_INTENTION_ATTACK
  2611. if (getIntention() != CtrlIntention.AI_INTENTION_ATTACK)
  2612. {
  2613. // Set the L2Character movement type to run and send Server->Client packet ChangeMoveType to all others L2PcInstance
  2614. if (!me.isRunning())
  2615. {
  2616. me.setRunning();
  2617. }
  2618. setIntention(CtrlIntention.AI_INTENTION_ATTACK, target);
  2619. }
  2620. if (me instanceof L2MonsterInstance)
  2621. {
  2622. L2MonsterInstance master = (L2MonsterInstance) me;
  2623. if (master.hasMinions())
  2624. {
  2625. master.getMinionList().onAssist(me, target);
  2626. }
  2627. master = master.getLeader();
  2628. if ((master != null) && master.hasMinions())
  2629. {
  2630. master.getMinionList().onAssist(me, target);
  2631. }
  2632. }
  2633. }
  2634. }
  2635. @Override
  2636. protected void onIntentionActive()
  2637. {
  2638. // Cancel attack timeout
  2639. _attackTimeout = Integer.MAX_VALUE;
  2640. super.onIntentionActive();
  2641. }
  2642. public void setGlobalAggro(int value)
  2643. {
  2644. _globalAggro = value;
  2645. }
  2646. /**
  2647. * @param TP The timepass to set.
  2648. */
  2649. public void setTimepass(int TP)
  2650. {
  2651. timepass = TP;
  2652. }
  2653. /**
  2654. * @return Returns the timepass.
  2655. */
  2656. public int getTimepass()
  2657. {
  2658. return timepass;
  2659. }
  2660. public L2Attackable getActiveChar()
  2661. {
  2662. return (L2Attackable) _actor;
  2663. }
  2664. }