Jump to content

DNG3R

Members
  • Posts

    172
  • Credits

  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by DNG3R

  1. # Topzone AllowTopzoneVoteReward = True # Vote reward server link. TopzoneServerLink = http://l2topzone.com/lineage2/server-info/7737/L2SpiritCustom.html # First page of servers list link. TopzoneFirstPageLink = http://l2topzone.com/lineage2/server-list/top.html/ # Votes for next reward needed. TopzoneVotesDifference = 5 # Rank needed for server to be on first page. TopzoneFirstPageRankNeeded = 10 # Minutes between rewards. # Eg. You put 5 it checks every 5 minutes for reward. TopzoneRewardCheckTime = 1 # Small reward(s). TopzoneSmallReward = 57,100000000; # Big reward(s). TopzoneBigReward = 3470,1; # Hopzone reward max dual boxes reward. # For example if you put 2 and someone has 3 boxes open, 2 will be rewarded. TopzoneDuaboxesAllowed = 1 # Game server console report. # If set to true, game server console will get a report of # current vote count, votes needed for next reward and votes needed for first page. AllowTopzoneGameServerReport = True
  2. still not working with topzone: There was a problem on getting Topzone votes from server with rank 15.
  3. Up! Server start tomorow!
  4. Yea, try server and then speak :)
  5. what?
  6. Server is for big stats and custom items amateurs. If you don't like it - don't post :) Server Website: http://www.l2sp.eu/ NEW SEASON 2014/07/31 18:00 +3GMT! Server Information: Rates: » EXP 9999x » SP 9999x » ADEN 9999x » DROP 1x » Starting/Subclass level - 80 Enchant Rates: » Safe +5 » Max +40 » Simple Scrolls 85% » Blessed Scrolls 95% » Enchant level +5 Main Info: » No Grade and Weight penalty » Anti heavy » Offline shop system » Rebirth system » Sieges every week with special skill reward » Unique Economy System » Stable Platform » Balanced Buffs/Skills/Classes » Full interlude geodata / pathnode Custom Items: » Dynasty armors » Spirit weapons » GM Tattoo » White mask » Epic wings » Kamael wings (only Donate) Augmentation: » Augment chance 8% » Max 1 Active + 1 Passive » Removed chance and magic skills Commands: » .menu » .stats » .online Olympiad: » Retail olympiad game » Competition period [1] week » Olympiad start time [18:00] end [00:00] Website: http://www.l2sp.eu/
  7. Hello, server starts in test mode tomorrow (2013.10.12 18:00). We are looking for good event gm and skilled photoshop designer. Event gm requirements: 1. Good knowledge of English 2. Be friendly and very active 3. Do 1-2 events per day 4. Some knowledge of server editing (like editing npc, admin commands) Server Website: http://l2sp.eu/ Server Information: Rates: » EXP 9999x » SP 9999x » ADEN 9999x » DROP 1x » Starting/Subclass level - 80 Enchant Rates: » Safe +5 » Max +40 » Simple Scrolls 85% » Blessed Scrolls 95% » Enchant level +5 Main Info: » No Grade and Weight penalty » Anti heavy » Offline shop system » Unique Economy System » Stable Platform » Balanced Buffs/Skills/Classes » Full interlude geodata / pathnode Custom Items: » Dynasty armors » Spirit weapons » GM Tattoo » White mask » Epic wings » Kamael wings (only Donate) Augmentation: » Augment chance 12% » Max 1 Active + 1 Passive » Removed chance and magic skills Olympiad: » Retail olympiad game » Competition period [1] week » Olympiad start time [18:00] end [00:00] Website: http://l2sp.eu/
  8. //chance //power //reuse //hitime this?
  9. he ignoring me, 1 week ago i posted this bug in orginal topic and no reply... please help me here :/ I using L2jFrozen
  10. Fanky fix that bug http://maxcheaters.com/forum/index.php?topic=255308.0 ;)
  11. i found http://maxcheaters.com/forum/index.php?topic=238056.0 and added to my pack and period change not working. code: /* 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 2, 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, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. * * http://www.gnu.org/copyleft/gpl.html */ package com.l2jfrozen.gameserver.model.entity; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.util.Calendar; import java.util.logging.Logger; import com.l2jfrozen.util.database.L2DatabaseFactory; import com.l2jfrozen.gameserver.model.entity.Announcements; import com.l2jfrozen.gameserver.thread.ThreadPoolManager; import com.l2jfrozen.gameserver.model.L2World; import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance; import com.l2jfrozen.gameserver.network.serverpackets.SocialAction; /** * * @author Fanky */ public class PvpLordTask { static String INSERT_DATA = "REPLACE INTO characters_custom_data (obj_Id, char_name, hero, noble, donator, hero_end_date) VALUES (?,?,?,?,?,?)"; protected static final Logger _log = Logger.getLogger(PvpLordTask.class.getName()); public static void getInstance() { ThreadPoolManager.getInstance().scheduleGeneral(new Runnable() { public void run() { String currentPvpLord = null, newPvpLord = null; int topTodayPvps = 0; Connection con = null; try { con = L2DatabaseFactory.getInstance().getConnection(); PreparedStatement stm = con.prepareStatement("SELECT char_name FROM characters WHERE pvplord=? AND accesslevel=?"); stm.setInt(1, 1); stm.setInt(2, 0); ResultSet rSet = stm.executeQuery(); if (rSet.next()) { currentPvpLord = rSet.getString("char_name"); } rSet.close(); stm.close(); if (currentPvpLord != null) { boolean cont = false; L2PcInstance cPvpLord = L2World.getInstance().getPlayer(currentPvpLord); if (cPvpLord == null || cPvpLord.isOnline() == 0) { cont = true; } else { cPvpLord.setPvpLord(false); cPvpLord.setIsHero(false); cPvpLord.getAppearance().setNameColor(0xFFFFFF); cPvpLord.broadcastUserInfo(); } if (cont) { stm = con.prepareStatement("UPDATE characters SET pvplord=? WHERE char_name=?"); stm.setInt(1, 0); stm.setString(2, currentPvpLord); stm.execute(); stm.close(); } } stm = con.prepareStatement("SELECT todaypvps,char_name FROM characters WHERE accesslevel=? ORDER BY todaypvps DESC LIMIT 1"); stm.setInt(1, 0); rSet = stm.executeQuery(); if (rSet.next()) { newPvpLord = rSet.getString("char_name"); topTodayPvps = rSet.getInt("todaypvps"); } rSet.close(); stm.close(); boolean cont = false; L2PcInstance nPvpLord = L2World.getInstance().getPlayer(newPvpLord); if (nPvpLord == null || nPvpLord.isOnline() == 0) { cont = true; } else { nPvpLord.setPvpLord(true); nPvpLord.broadcastPacket(new SocialAction(nPvpLord.getObjectId(), 16)); nPvpLord.setIsHero(true); nPvpLord.getAppearance().setNameColor(0xFF6633); nPvpLord.broadcastUserInfo(); } if (cont) { stm = con.prepareStatement("UPDATE characters SET pvplord=? WHERE char_name=?"); stm.setInt(1, 1); stm.setString(2, newPvpLord); stm.execute(); stm.close(); } stm = con.prepareStatement("UPDATE characters SET todaypvps=?"); stm.setInt(1, 0); stm.execute(); stm.close(); Announcements.getInstance().announceToAll("New pvp lord: " + newPvpLord + " Today pvps: " + topTodayPvps); } catch (Exception e) { } finally { try { con.close(); } catch (Exception e) { } } } } , getValidationTime()); } private static long getValidationTime() { Calendar cld = Calendar.getInstance(); cld.set(Calendar.HOUR_OF_DAY, 14); cld.set(Calendar.MINUTE, 40); long time = cld.getTimeInMillis(); if (System.currentTimeMillis()-time <= 0) { return time - System.currentTimeMillis(); } return 0; } } and i thing something wrong with that place: private static long getValidationTime() { Calendar cld = Calendar.getInstance(); cld.set(Calendar.HOUR_OF_DAY, 14); cld.set(Calendar.MINUTE, 40); long time = cld.getTimeInMillis(); if (System.currentTimeMillis()-time <= 0) { return time - System.currentTimeMillis(); } return 0; } help me :)
  12. DDos attacks fixed :)
  13. thanks, 20 min left :)
  14. http://l2inter.eu today! u can join with all ur friends ;)
  15. Start today 17:00 CET (GMT+1)! ;)
  16. http://l2inter.eu start tomorow :)
  17. start tomorow! ;)
  18. nothing :(
  19. Thx, farm is not very easy and not very hard
  20. period change not working for me
  21. :)
  22. Hello we announce that live server will be started 19.08.2012 17:00 CET (GMT+1) Website: http://l2inter.eu Forum: http://l2inter.eu/forum/ Rates: » XP/SP x1000. » Party XP 2x » Aden 1x » Spoil 1x » Starting level - 40 Enchant Rates: » Max For Weapons +10 » Max For Armors +6 » Max For Jewels +6 » Safe enchant +3 » Enchanting with simple Scrolls 58% » Enchanting with blessed Scrolls 68% Main info: » Client - Interlude C6 (T0) » Main Town: Aden » No Grade and Weight penalty » Anti-Heavy system » Tattoo's [3] types » Spawn protection - [20s] » Stackable Scrolls » Unique clan system » Every week Aden Castle siege » 7 Party Bosses » 4 Solo Bosses » Killing spree system » Pvp Lord system » Offline shop system. » Stable Platform » Balanced Buffs/Skills/Classes » Full interlude geodata / pathnode » No Augmentation! » .online command! Pvp Zone: » People who enter to PvP zone automatically have flag, for more PvP's! » Buff's won't dissapear when you die in PvP zone » Party which kill nobless'e boss all will be nobless'es Events: » Team vs Team » 10:00;13:00;16:00;19:00;22:00 » Reward 3 Blessed Scroll: Enchant Armor (Grade S) » Event with all buffs » Deathmatch » 12:00;15:00;18:00;21:00;24:00 » Reward 4 Blessed Scroll: Enchant Weapon (Grade S) » Event with all buffs Olympiad: » Olympiad period 5 days. (For more funs) » Starting 18:00, Ends 24:00 » Hero skills only on main class Buffer Shop Teleporter Clan System Website: http://l2inter.eu Forum: http://l2inter.eu/forum/
  23. sps with am +18 hit for me 200 dmg (im archer with tts juwe +18) balance is bad :D and very BORING server
  24. learn english lol farm is hard or easy?
  25. I dont know its l2j or l2off but server platform is realy good :)
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock