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.
hello everyone !
I need help with a l2script Rev H5-Salvation/Classic build. I compiled the project, installed everything but I can't log in to the server, it won't log me in. I tried a thousand ways without good results. I leave you the error when logging in either with the H5-Salvation Client.
ERROR ---> WARN: IPBANMANAGER ---> IP !!!!
I'm waiting for help! Thank you!
Hello !
I have a problem when connecting to the pack with the Salvation client, it blocks my IP, I see that the account is created in the database but it remains logged in.
Any idea what it could be? ALso with H5 CLient !
Thank you !
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.