1. Skill icons reuse - when i use skill's like a Freanzy, Zealot, Rage and next i switch weapon skill's are still in REUSE, but icons will be reused o.O so i have "ready to use skills icons" but i cant use it.
Where is the file responsible for changing weapons?or how to fix it?
2. Antharas minions will be spawn with Antharas (when have 100% HP).
Retail if i good remember them must spawn when antharas have 50% hp.
Someone can tell me how to do fix it?
Here is minions code:
// Do spawn Behemoth or Bomber.privateclassMobsSpawn implements Runnable{publicMobsSpawn(){}@Overridepublicvoid run(){
L2NpcTemplate template1;
L2Spawn tempSpawn;
final boolean isBehemoth =Rnd.get(100)< FWA_PERCENTOFBEHEMOTH;try{
final int mobNumber =(isBehemoth ?2:3);// Set spawn.for(int i =0; i < mobNumber; i++){if(_monsters.size()>= FWA_MAXMOBS)break;int npcId;if(isBehemoth)
npcId =29069;else
npcId =Rnd.get(29070,29076);
template1 =NpcTable.getInstance().getTemplate(npcId);
tempSpawn =new L2Spawn(template1);// allocates it at random in the lair of Antharas.int tried =0;
boolean notFound =true;int x =175000;int y =112400;int dt =(_antharas.getX()- x)*(_antharas.getX()- x)+(_antharas.getY()- y)*(_antharas.getY()- y);while(tried++<25&& notFound){
final int rx =Rnd.get(175000,179900);
final int ry =Rnd.get(112400,116000);
final int rdt =(_antharas.getX()- rx)*(_antharas.getX()- rx)+(_antharas.getY()- ry)*(_antharas.getY()- ry);if(GeoData.getInstance().canSeeTarget(_antharas.getX(), _antharas.getY(),-7704, rx, ry,-7704))if(rdt < dt){
x = rx;
y = ry;
dt = rdt;if(rdt <=900000)
notFound =false;}}
tempSpawn.setLocx(x);
tempSpawn.setLocy(y);
tempSpawn.setLocz(-7704);
tempSpawn.setHeading(0);
tempSpawn.setAmount(1);
tempSpawn.setRespawnDelay(FWA_ACTIVITYTIMEOFANTHARAS *2);SpawnTable.getInstance().addNewSpawn(tempSpawn,false);// Do spawn.
_monsters.add(tempSpawn.doSpawn());}}catch(final Exception e){
LOGGER.warn(e.getMessage());}}}
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
🎁 BUY 2 GET 1 FOR FREE - CHRISTMAS DEAL! 🎁
Make your friends happy by gifting them the third free Interface!
User Interface Information:
https://somikpatch.com/interfaces/highfive-user
Event Ends on 05. 01. 2025 at 00:00 GMT+1.
Merry Christmas! ❤️
I'm just testing the extender) I couldn't find any critical issues.
I found my own error due to which the autoloot function was not active:
just a syntax error, case-sensitive. You can't use a capital letter in the Myext.ini settings.
AutoLootMobDrop = true. (parameter true must necessarily be with a lowercase letter)
DISCORD :
utchiha_market
telegram :
https://t.me/utchiha_market
SELLIX STORE :
https://utchihamkt.mysellix.io/
Join our server for more products :
https://discord.gg/hood-services
https://campsite.bio/utchihaamkt
Question
tomaszow
Hello i have 2 problems with l2j frozen files.
1. Skill icons reuse - when i use skill's like a Freanzy, Zealot, Rage and next i switch weapon skill's are still in REUSE, but icons will be reused o.O so i have "ready to use skills icons" but i cant use it.
Where is the file responsible for changing weapons? or how to fix it?
2. Antharas minions will be spawn with Antharas (when have 100% HP).
Retail if i good remember them must spawn when antharas have 50% hp.
Someone can tell me how to do fix it?
Here is minions code:
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.