Jump to content

#Hellson

Members
  • Posts

    25
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

About #Hellson

Profile Information

  • Current Mood
    Happy
  • Gender
    Male
  • Country
    Ukraine

Recent Profile Visitors

510 profile views

#Hellson's Achievements

Newbie

Newbie (1/16)

  • Week One Done Rare
  • One Month Later Rare
  • One Year In Rare

Recent Badges

0

Reputation

  1. Dear SweeTs, npc height normal. I'm rework Grow effect and now all good. Now going configure frintezza songs and Scarlet skills. Problem solved, pls close!
  2. I addapt frozen script, with some fix's, all working good besides this trouble. Asking only because try all possible fix's what i know.
  3. Spawn cords right, its problem in Grow skill effect 5017. But if delete skill usage from morph's cinematic part goes bad. Scarlet2 not looking up (i hope u understand me) when die, its after deleting skill cast. Look Beast Farm mobs script, but i think going in the wrong route. Waiting for other ideas. :(
  4. Addapting frintezza script to aCis and have one problem, in transformation casting skill id 5017 (see in attached code) scarlet feets goes underground. Trying delete line with cast of this skill, but after this this have visual (cinematic) bugs: after first transformation Scarlet wings disappear, and in Scarlet2 problems with final cinematic part. Have idea with correcting chrords after transformation ending, but don't know how right do it. If someone have any idea pls help. else if (event.equalsIgnoreCase("morph_04")) { FRINTEZZA_LAIR.broadcastPacket(new SocialAction(weakScarlet,4)); L2Skill skill = SkillTable.getInstance().getInfo(5017, 1); if (skill != null) skill.getEffects(weakScarlet, weakScarlet); startQuestTimer("morph_end", 3000, weakScarlet, null,false); startQuestTimer("start_pc", 3000, weakScarlet, null,false); startQuestTimer("start_npc", 3000, weakScarlet, null,false); startQuestTimer("songs_play", 10000 + Rnd.get(10000), frintezza, null,false); startQuestTimer("skill02", 10000 + Rnd.get(10000), weakScarlet, null,false); } else if (event.equalsIgnoreCase("morph_15")) { FRINTEZZA_LAIR.broadcastPacket(new SocialAction(strongScarlet,2)); L2Skill skill = SkillTable.getInstance().getInfo(5017, 1); if (skill != null) skill.getEffects(strongScarlet, strongScarlet); startQuestTimer("morph_end", 9000, strongScarlet, null,false); startQuestTimer("start_pc", 6000, strongScarlet, null,false); startQuestTimer("start_npc", 6000, strongScarlet, null,false); startQuestTimer("songs_play", 10000 + Rnd.get(10000), frintezza, null,false); startQuestTimer("skill03", 10000 + Rnd.get(10000), strongScarlet, null,false); }
  5. Hi, i try addapt Frintezza for aCis and have error when trying enter. Only pick quest item, if try again enter give message : "Someone else is already inside the Magic Force Field. Try again later." its screen of error in GS: http://imgur.com/90mCMFf its part of code (onTalk string): @Override public String onTalk (L2Npc npc, L2PcInstance player) { if (npc.getNpcId() == CUBE) { int x = 150037 + Rnd.get(500); int y = -57720 + Rnd.get(500); player.teleToLocation(x, y, -2976,0); return null; } String htmltext = ""; if (GrandBossManager.getInstance().getBossStatus(FRINTEZZA) == DEAD) { htmltext = "<html><body>There is nothing beyond the Magic Force Field. Come back later.<br>(You may not enter because Frintezza is not inside the Imperial Tomb.)</body></html>"; } else if (GrandBossManager.getInstance().getBossStatus(FRINTEZZA) == DORMANT) { if ((!player.isInParty() || !player.getParty().isLeader(player)) || (player.getParty().getCommandChannel() == null) || (player.getParty().getCommandChannel().getChannelLeader() != player)) { htmltext = "<html><body>No reaction. Contact must be initiated by the Command Channel Leader.</body></html>"; } else if (player.getParty().getCommandChannel().getPartys().size() < Config.FRINTEZZA_MIN_PARTIES || player.getParty().getCommandChannel().getPartys().size() > Config.FRINTEZZA_MAX_PARTIES) { htmltext = "<html><body>Your command channel needs to have at least "+Config.FRINTEZZA_MIN_PARTIES+" parties and a maximum of "+Config.FRINTEZZA_MAX_PARTIES+".</body></html>"; } else if (player.getInventory().getItemByItemId(8073) == null) { htmltext = "<html><body>You dont have required item.</body></html>"; } else { player.destroyItemByItemId("Quest", 8073, 1, player, true); L2CommandChannel CC = player.getParty().getCommandChannel(); GrandBossManager.getInstance().setBossStatus(FRINTEZZA, WAITING); startQuestTimer("close", 0, npc, null,false); startQuestTimer("room1_spawn", 5000, npc, null,false); startQuestTimer("room_final", 2100000, npc, null,false); startQuestTimer("frintezza_despawn", 60000, npc, null, true); _LastAction = System.currentTimeMillis(); for (L2Party party : CC.getPartys()) { if (party == null) continue; for (L2PcInstance member : party.getPartyMembers()) { if (member == null || member.getLevel() < 74) continue; if (!member.isInsideRadius(npc, 700, false, false)) continue; if (_PlayersInside.size() > 45) { member.sendMessage("The number of challenges have been full, so can not enter."); break; } _PlayersInside.add(member); _frintezzaLair.allowPlayerEntry(member, 300); member.teleToLocation(_invadeLoc[_LocCycle][0] + Rnd.get(50), _invadeLoc[_LocCycle][1] + Rnd.get(50), _invadeLoc[_LocCycle][2],0); } if (_PlayersInside.size() > 45) break; _LocCycle++; if (_LocCycle >= 6) _LocCycle = 1; } } } else htmltext = "<html><body>Someone else is already inside the Magic Force Field. Try again later.</body></html>"; return htmltext; } Pls help.
  6. Hi, link in this topic http://www.maxcheaters.com/topic/188427-mod-time-buff-acis-rev330/ dead, can anyone reupload or send me to personal message code. THX
  7. I try different hitTime, but problem is still remains. With default hitTime 500 in this code cast of spells which hitTime approached to 500 to slow, with different hitTime value cast very fast. Skills its big part of Lineage2 gameplay, and if u can help fix it. Change hitTime value in skills data don't help. Any ideas? P.S. I'm use free 340 rev of aCis for test.
  8. Okay, reduce hitTime to 300? Or how many? Tryskell check pls this topic http://acis.i-live.eu/index.php?topic=7811.0 i try do what DNG3R say, but this not help me.
  9. Big thanks for answers dear Tryskell and SweeTs, lately I've been asking a lot of questions about L2jAcis because try create good (x1-10) server for me and my friends, but one one more problem i could not fix, its bad/not correct cast time of skills like Aura Flare;Aure Burn;Great Battle Heal etc. This skills cast equally with MAtkSpd 1000 and MAtkSpd 2005 (Mystic Muse with full buff and malaria). Maybe u can help me, or tell how fix it. P.S. i try change hitTime and reuseDelay but its not help.Or Maybe its problem in my game client? Say pls what files me need change, if this is problem.
  10. I check some l2j sources of old teams, and they have limit time for farm on baium antharas and valakas (in acis files don't find any time limits :D ) . I try create good server with like l2off grandbosses, etc. I understand, on real l2off Baium, Antharas, Valakas, Frintezza havnt time limit for farm, right SweeTs? Or I'm wrong? And if u can, say what real l2off respawn time of grandbosses? I find some infromation, but i not sure that it is correct. I would be very grateful. Sry for bad english)
  11. Who know, grand bosses have time limit for farm (Interlude), for example baium 2 hours, if u don't kill him u kicked from lair and he go sleep after 30 min. Me interesting in l2off Interlude g/bosses have limit for farm?
×
×
  • Create New...