Jump to content

t4u2d

Members
  • Posts

    18
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by t4u2d

  1. Hello, i use l2jacis rev.330, have some problems with skills. Mystic Muse (with DC robe, buffs, malaria have ~2005 cast speed) cast spells slow. Problem not in Mystic Muse class only, Bishop, Sorc and other cast slow too. Pls help me, if need i can upload video. Skills casting independently of casting speed of char.
  2. Have one more little porblem)) If in party one of players have gainExp function "Off" all party don't giving exp, how fix it?
  3. Огромное Вам спасибо, все работает )
  4. Я думал если порт открыт, то и при проверке через различные сайты будет писать что он открыт. Я не прав? Если Вам не трудно, обьясните что именно ещё я должен сделать чтобы мои друзья наконец то смогли зайти ко мне на сервер.
  5. Okay, but why me say "ports closed", its not problem in missing java exception in Firewall.
  6. Hello, try play with my friend and have some problems with opening ports for test l2j server, i tell you all that should be important. 1. Windows 8.1 xD 2. My computer use vpn connection to internet (maybe i wrong, i attach screen). 3. Installed Eset Smart Security. 4. My ip adress static, and my provider say that they do not block any ports. I opened ports 2106/9014 in Windows Firewall and in Eset Smart Security, but when i check port in any site like 2ip.com.ua its say "port closed". Pls help me, maybe problem with my type of my internet connection, maybe need some other settings?
  7. Guys pls help me! How delete spellbook and amulets drop in l2jacis except deleting it in npcs xml's. Maybe someone help create command or something. I would be very grateful!
  8. Okay, i try it, and i work)) Thx I have one more quastion, does not want made one more thread, how i can remove spellbooks/amulets from droplist withut deleting lines in npcs xml's. Maybe someone help create command or something. I check items xml's, and spellbooks don't have specefic "type" or anything other. Help pls. If need, i start new topic for it.
  9. Dear Tryskell i love u work, and wish l2jacis only the best, but your comment N/c (No comments? right?) don't help me... I'm newbie in java. I wait help from you. I think i understood your this line... me don't need use new cantGainXP, can replace it to canGainExp? Pls say where is my mistake?
  10. I try adapt elfocrash's menu for l2jacis (rev.330), all work good except cantgainXP function. Have this error "The method cantGainXP() is undefined for the type PlayableStat" Part of L2PcStat attached /* * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with * this program. If not, see <http://www.gnu.org/licenses/>. */ package net.sf.l2j.gameserver.model.actor.stat; import net.sf.l2j.Config; import net.sf.l2j.gameserver.datatables.NpcTable; import net.sf.l2j.gameserver.datatables.PetDataTable; import net.sf.l2j.gameserver.model.actor.L2Character; import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; import net.sf.l2j.gameserver.model.actor.instance.L2PetInstance; import net.sf.l2j.gameserver.model.base.Experience; import net.sf.l2j.gameserver.model.quest.QuestState; import net.sf.l2j.gameserver.network.SystemMessageId; import net.sf.l2j.gameserver.network.serverpackets.PledgeShowMemberListUpdate; import net.sf.l2j.gameserver.network.serverpackets.SocialAction; import net.sf.l2j.gameserver.network.serverpackets.StatusUpdate; import net.sf.l2j.gameserver.network.serverpackets.SystemMessage; import net.sf.l2j.gameserver.network.serverpackets.UserInfo; import net.sf.l2j.gameserver.skills.Stats; import net.sf.l2j.gameserver.util.Util; public class PcStat extends PlayableStat { private int _oldMaxHp; // stats watch private int _oldMaxMp; // stats watch private int _oldMaxCp; // stats watch public PcStat(L2PcInstance activeChar) { super(activeChar); } @Override public boolean addExp(long value) { // Allowed to gain exp? if (!getActiveChar().getAccessLevel().canGainExp()) return false; if (!super.cantGainXP()) return false; if (!super.addExp(value)) return false; getActiveChar().sendPacket(new UserInfo(getActiveChar())); return true; } Maybe wrong formed post, sry about that. And sry for my english xD
  11. Okay, vampir thx for answer, I'll try to do what you said (and I hope I can do it :D ) . I have one more question. On some interlude/gracia servers i have seen on/off skills animation function for bad computers etc. Maybe you know how to do it?
  12. Tryskell thx for answer, i'm waiting for it)) Chenk this video pls and u understand me http://youtu.be/5XM4xAKw4bU.
  13. I trying adapt elfocrash's menu for l2jacis (rev. 330), change for usercommand, all work fine exсept disabling soulshot's/spiritshots effect. Effect disabling only on weapon, but attack's on npc with effect (if u don't understand me can make video). Pls help, i attach code from handler/itemhandler/soulshots.java , maybe u find problem. Sry for bad english. ;) return; } final SkillHolder[] skills = item.getItem().getSkills(); weaponInst.setChargedShot(ShotType.SOULSHOT, true); activeChar.sendPacket(SystemMessageId.ENABLED_SOULSHOT); if (!activeChar.isSSDisabled()) Broadcast.toSelfAndKnownPlayersInRadiusSq(activeChar, new MagicSkillUse(activeChar, activeChar, skills[0].getSkillId(), 1, 0, 0), 360000); } }
  14. oh sry bro, i read all fixlist but did not notice it.xD If I understood correctly now last sources rev330 use jdk7. Yeah?
  15. Guys help pls!! What jdk need use for l2jacis rev.330 jdk7 or jdk8 ?
×
×
  • Create New...