Перейти к содержанию

vasilachyk

Заблокирован
  • Публикаций

    155
  • Зарегистрирован

  • Посещение

  • Победитель дней

    3
  • Отзывы

    100%

Весь контент vasilachyk

  1. на днях скину его исход купил у него решил слить
  2. а может форум назвать куплю продам
  3. Fake Players нужна помощь я не написал куплю ботов
  4. Fake Players нужна помощь есть исходник l2jlovely помоги реализовать авто атаку фейку кагда маб радом скайп monah66669999
  5. Fake Players нужна помощь есть исходник l2jlovely помогите переделать фейков скайп monah66669999
  6. продам готовый х50 подробно пм подробно skype - monah66669999
  7. вопросперенес .меню с ядра в ядрокомпилить безошибок но неработает команда в игре
  8. помогите реализовать премиум систему сборка la2base
  9. restore-all вчом имено
  10. 1 нужно пределать реген нр/cp/mp на одну кнопку 2 добавить кнсел бафов [spoiler=скрипт] package net.sf.l2j.gameserver.model.actor.instance; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.LineNumberReader; import java.util.List; import java.util.Map; import java.util.Iterator; import javolution.util.FastList; import javolution.util.FastMap; import net.sf.l2j.gameserver.datatables.SkillTable; import net.sf.l2j.gameserver.model.L2Effect; import net.sf.l2j.gameserver.model.L2ItemInstance; import net.sf.l2j.gameserver.model.L2Skill; import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; import net.sf.l2j.gameserver.model.actor.instance.L2BuffInstance; import net.sf.l2j.gameserver.network.SystemMessageId; import net.sf.l2j.gameserver.serverpackets.SystemMessage; public class NPCBufferInstanceInstance { public class BuffGroup { public void addSkill(int t, int f) { entries.add(new int[] { t, f }); } public void setCost(int t, int f) { itemId = t; itemCount = f; } public int nId; public int itemId; public int itemCount; public List entries; public BuffGroup(int id) { nId = id; entries = new FastList(); } } public NPCBufferInstanceInstance() { bInitialized = false; } public static NPCBufferInstanceInstance getInstance() { if(i == null) i = new NPCBufferInstanceInstance(); return i; } public static Map buffs() { return buffs; } public void engineInit() { loadBuffs(); } public void reload(L2PcInstance client) { loadBuffs(); client.sendMessage((new StringBuilder("Buffer reload: entries ")).append(buffs().size()).append(", muls ").append(buffs_mul.size()).toString()); } public void useRestore(L2BuffInstance jj, L2PcInstance client, String type, String after) { if(type.equalsIgnoreCase("mp")) { if(client.getAdena() < mp_restore) { jj.showChatWnd(client, after, mp_restore, 57); return; } client.setCurrentMp(client.getMaxMp()); client.reduceAdena("getrestore", mp_restore, jj, true); } if(type.equalsIgnoreCase("hp")) { if(client.getAdena() < hp_restore) { jj.showChatWnd(client, after, hp_restore, 57); return; } client.setCurrentHp(client.getMaxHp()); client.reduceAdena("getrestore", hp_restore, jj, true); } if(type.equalsIgnoreCase("cp")) { if(client.getAdena() < cp_restore) { jj.showChatWnd(client, after, cp_restore, 57); return; } client.setCurrentCp(client.getMaxCp()); client.reduceAdena("getrestore", cp_restore, jj, true); } jj.showChatWnd(client, after); } public void useBuff(L2BuffInstance jj, L2PcInstance client, String st, String after) { if(!bInitialized) { jj.showChatErrWnd(client, after, client.isGM() ? "buffer is not initialized." : "Come back later."); return; } BuffGroup buff = (BuffGroup)buffs().get(Integer.valueOf(Integer.parseInt(st))); if(buff == null) { jj.showChatErrWnd(client, after, client.isGM() ? (new StringBuilder("template ")).append(st).append(" is null.").toString() : "Come back later."); return; } L2ItemInstance item = client.getInventory().getItemByItemId(buff.itemId); if(item == null || item.getCount() < buff.itemCount) { jj.showChatWnd(client, after, buff.itemCount, buff.itemId); return; } if(buff.itemId == 57) client.reduceAdena("getbuff", buff.itemCount, jj, true); else client.destroyItem("getbuff", item.getObjectId(), buff.itemCount, jj, true); int ef[]; for(Iterator iterator = buff.entries.iterator(); iterator.hasNext(); affect(jj, client, ef)) ef = (int[])iterator.next(); client.updateEffectIcons(); jj.showChatWnd(client, after); } public void affect(L2BuffInstance jj, L2PcInstance client, int effect[]) { L2Skill skill = SkillTable.getInstance().getInfo(effect[0], effect[1]); if(skill != null) { cae(client, skill); skill.getEffects(jj, client); client.sendPacket((new SystemMessage(SystemMessageId.YOU_FEEL_S1_EFFECT)).addSkillName(effect[0], effect[1])); } else { client.sendMessage(client.isGM() ? (new StringBuilder("null skill ")).append(effect[0]).append(" lv").append(effect[1]).toString() : "You are not able to receive this effect."); } } private void cae(L2PcInstance client, L2Skill skill) { L2Effect al2effect[]; int k = (al2effect = client.getAllEffects()).length; for(int j = 0; j < k; j++) { L2Effect ef = al2effect[j]; if(ef.getSkill().getId() == skill.getId()) ef.exit(); } } private void loadBuffs() { LineNumberReader lnr; BuffGroup buffGroup; buffs = new FastMap(); buffs_mul = new FastMap(); mp_restore = 1001; cp_restore = 1001; hp_restore = 1001; String ln = null; lnr = null; buffGroup = null; try { lnr = new LineNumberReader(new BufferedReader(new FileReader(new File("config/npcbuffer.ini")))); while((ln = lnr.readLine()) != null) { if(ln.trim().length() == 0 || ln.startsWith("//")) continue; if(ln.startsWith("@param")) { String h[] = ln.split(" "); if(h[1].equalsIgnoreCase("cp_restore")) cp_restore = Integer.parseInt(h[2]); if(h[1].equalsIgnoreCase("hp_restore")) hp_restore = Integer.parseInt(h[2]); if(h[1].equalsIgnoreCase("mp_restore")) mp_restore = Integer.parseInt(h[2]); continue; } if(ln.contains("//")) { ln = ln.split("//")[0]; ln = ln.replaceAll(" ", ""); if(ln.trim().length() < 1) continue; ln = ln.replaceAll("\t", ""); } String t[] = ln.split(";"); for(int c = 0; c < t.length; c++) { String e = t[c]; if(e.contains("=")) { if(e.split("=")[0].contains("entry")) { int entryId = Integer.parseInt(e.split("=")[1]); buffGroup = new BuffGroup(entryId); } if(e.split("=")[0].contains("cost")) { String t2 = e.split("=")[1]; t2 = t2.substring(1, t2.length() - 1); buffGroup.setCost(Integer.parseInt(t2.split(",")[0]), Integer.parseInt(t2.split(",")[1])); } } else { buffGroup.addSkill(Integer.parseInt(e.split(",")[0]), Integer.parseInt(e.split(",")[1])); } } if(buffGroup != null) buffs.put(Integer.valueOf(buffGroup.nId), buffGroup); } } catch (Exception e) { e.printStackTrace(); bInitialized = false; } bInitialized = true; System.out.println((new StringBuilder("Buffer reload: entries ")).append(buffs().size()).append(", muls ").append(buffs_mul.size()).toString()); return; } private static Map buffs; private Map buffs_mul; private int mp_restore; private int cp_restore; private int hp_restore; private static NPCBufferInstanceInstance i; private boolean bInitialized; }
  11. vasilachyk

    сервес менежер

    все сам зделал
  12. vasilachyk

    сервес менежер

    нуда забил тут ток боги все знающие
  13. vasilachyk

    сервес менежер

    если не сложно научи или поможи а вобшето там написано помогите ане куплю
  14. vasilachyk

    сервес менежер

    исправил так понятний
  15. vasilachyk

    сервес менежер

    нужен скрипт на клан услуги , и скрипт покупки нубла
  16. vasilachyk

    сервес менежер

    помогите зделать для сборки л2базе
×
×
  • Создать...