Jump to content

Loses

Members
  • Posts

    39
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

About Loses

Profile Information

  • Current Mood
    Dumb
  • Gender
    Male
  • Country
    United States

Loses's Achievements

Newbie

Newbie (1/16)

0

Reputation

  1. http://mobius.great-forum.com/ try use its full english
  2. Lineage2 Domination Server Rates: RateXp = 2000 RateSp = 2000 Enchant Rates: Enchant Safe = 6 Enchant Max = 16 Enchant Scroll Rates: Enchant Armor = 65% Enchant Weapon = 65% Enchant Blessed Weapon = 90% Enchant Blessed Armor = 90% Enchant Atribute Rates: Enchant Stone = 100% Enchant Crystal = 100% Max LvL 7 Buff List: Duration = 2 Hours Buff Enchant = +30 Slot = 36 Dance = 18 All Zone: Main Town = Giran LeveL Up = Up Char PvP Arena Zone = PvP 1, PvP 2 Normal Gatekeeper = All town etc Fantasy Island = Farm Zone Emerald Square = Farm Zone Npc Full All Town: Gatekeeper = Elena Shop = Martin Buffer = Pippi Service Manager = Bruso Noblesse Manager = Eleza Bug Report = Elisa Top PvP Pk = Jinia System Work: Balanced System Vote System PvP System Full Reward System Anti Bot System Olympiad: Start Time = 16 Off Time = 22 Enchant Limit = 6 Custom: No Custom ! GRAND OPENING BETA SERVER 2014-09-17 SEPTEMBER GMT+1 18:00 PM sorry not have website normal coming soon forum work http://l2domination.do-forum.com/ Support Contact l2dominations@gmail.com System http://www17.zippyshare.com/v/57623136/file.html
  3. /* * 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 l2r.gameserver.model.entity; import java.util.HashMap; import l2r.Config; import l2r.gameserver.ThreadPoolManager; import l2r.gameserver.model.L2World; import l2r.gameserver.model.actor.instance.L2PcInstance; /** * @author Loses */ public class MiniReward { static HashMap<String, Integer> Ips = new HashMap<>(); public static void getInstance() { ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new Runnable() { @Override public void run() { L2PcInstance[] pls = L2World.getInstance().getAllPlayersArray(); for (L2PcInstance p : pls) { String pIp = p.getClient().getConnection().getInetAddress().getHostAddress(); if (!Ips.containsKey(pIp)) { Ips.put(pIp, 1); reward(p); } else { int count = Ips.get(pIp); if (count < Config.DUALBOXES_ALLOWED) { Ips.remove(pIp); Ips.put(pIp, count + 1); reward(p); } else { p.sendMessage("Already " + Config.DUALBOXES_ALLOWED + " character(s) of your ip have been rewarded, so this character won't be rewarded."); } } } Ips.clear(); } }, 0, 14400 * 1000); } static void reward(L2PcInstance player) { for (int i : Config.MINI_REWARD.keySet()) { player.addItem("Mini Reward.", i, Config.MINI_REWARD.get(i), player, true); } } }
  4. im need to go repair PC low memory Locked Topic.
  5. java -version:1.8 -server -Dfile.encoding=UTF-8 -Xms2G -Xmx4G -Xnoclassgc -XX:+UseConcMarkSweepGC -XX:-UseGCOverheadLimit -cp config/xml;../libs/*; lineage2.gameserver.GameServer
×
×
  • Create New...