
Psych_O
Members-
Posts
1,034 -
Credits
0 -
Joined
-
Last visited
-
Feedback
100%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Psych_O
-
[Share][GR]PvpSkillRewardSystem
Psych_O replied to AbsolutePower's topic in Server Shares & Files [L2J]
nice share.... 8a to dokimasw amesws..... P.S mipws eprepe n to baleis se auto to section??? http://maxcheaters.com/forum/index.php?board=62.0 -
ti pack exeis k ti client
-
bump
-
Hi guys.... can any1 create a signature for me? i would like to be something like that: (but much bigger) and letters be in deep sky blue color Thank you
-
Java code gia announce
Psych_O replied to Psych_O's question in Request Server Development Help [Greek]
to problima li8ike.... topic locked -
-
searching dev for serious project
Psych_O replied to joker90's question in Request Server Development Help [Greek]
na 3ereis oti kanenas sobaros dev dn 8a dextei na doulepsei tsaba..... episeis dwse perisoteres plirwfories gia to ti pack 8a epile3eis kai o server pou 8a sikwseis ti 8a einai? low/mid/high ? -
8a to tsekarw ty EDIT: epsa3a k dn brika tpt :'(
-
geia sas paidia..... exw faei ton topo na brw ena service manual gia to kawasaki kazer k dn to brisko pou8ena. mipws exete tpt????
-
bump
-
apo to character.properties kane true auto... EnableModifySkillDuration = True kai sto SkillDurationList = pros8ese auto... 530,18000;307,18000;915,18000;276,18000;309,18000;274,18000;275,18000;272,18000;277,18000;311,18000;273,18000;310,18000;271,18000;366,18000;364,18000;\ 264,18000;529,18000;306,18000;269,18000;270,18000;265,18000;363,18000;349,18000;308,18000;305,120;304,18000;267,18000;266,18000;268,18000;1535,18000;\ 1308,18000;1461,18000;1253,18000;1284,300;1009,18000;1362,18000;1310,18000;1363,18000;1461,18000;1251,18000;1006,18000;1252,18000;1309,18000;1518,18000;\ 1517,18000;1007,18000;1519,18000;1391,18000;1413,18000;1002,18000;4699,18000;4700,18000;1416,18000;1003,18000;2663,18000;1537,18000;1538,18000;1415,18000;\ 1414,18000;1365,18000;1364,18000;1282,18000;1261,18000;1260,18000;1250,18000;1249,18000;1008,18000;1005,18000;1004,18000;1032,18000;1033,18000;1044,18000;\ 1182,18000;1191,18000;1033,18000;1189,18000;1035,18000;1036,18000;1068,18000;1040,18000;1043,18000;1045,18000;1048,18000;1062,18000;1078,18000;1077,18000;\ 1085,18000;1086,18000;1204,18000;1240,18000;1242,18000;1243,18000;1352,18000;1355,18000;1356,18000;1357,18000;1388,18000;1389,18000;1392,18000;1393,18000;\ 1499,18000;1501,18000;1087,18000;1257,18000;1259,18000;1303,18000;1304,18000;1397,18000;1353,18000;1354,18000;1460,18000;4702,18000;4703,18000;1059,18000;\ 1077,18000;1268,18000;1507,300;764,300;1503,18000;1504,18000;1374,1200;1323,18000;1515,300;1390,18000;236,18000;1536,18000;1503,18000;1504,18000;\ 1500,18000;1323,18000;365,18000;1502,18000;827,18000;825,18000;829,18000;828,18000;830,18000;1442,18000;1443,18000;914,120;915,18000;2652,18000;826,18000;7064,18000;\ 834,18000;1542,18000;4048,18000;7029,18000\ P.s ta buffs diarkoun 4 wres
-
bump
-
Java code gia announce
Psych_O replied to Psych_O's question in Request Server Development Help [Greek]
edw einai to AutoVoteRewardHandler pou exw /* 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.l2jserver.gameserver.model; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.net.URL; import java.net.URLConnection; import com.l2jserver.Config; import com.l2jserver.gameserver.Announcements; import com.l2jserver.gameserver.GmListTable; import com.l2jserver.gameserver.ThreadPoolManager; import com.l2jserver.gameserver.model.L2ItemInstance; import com.l2jserver.gameserver.model.L2World; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.network.clientpackets.Say2; import com.l2jserver.gameserver.network.serverpackets.CreatureSay; public class AutoVoteRewardHandler { private int lastVoteCount = 0; private int initialCheck = 60 * 1000; private int delayForCheck = Config.DELAY_FOR_NEXT_REWARD * 1000; private AutoVoteRewardHandler() { if (Config.VOTE_REWARD_ENABLE) { System.out.println("========= "+Config.SERVER_NAME_FOR_VOTES+" ========= HopZone ========="); System.out.println("Vote Reward System activated"); System.out.println("========= "+Config.SERVER_NAME_FOR_VOTES+" ========= HopZone ========="); ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new AutoReward(), initialCheck, delayForCheck); } } private class AutoReward implements Runnable { public void run() { if (Config.VOTE_REWARD_ENABLE) { System.out.println(""); System.out.println("========= HopZone ========="); System.out.println("Vote Count Check."); if (Config.VOTE_REWARD1_ID == 0 || Config.VOTE_REWARD1_COUNT == 0 || Config.VOTE_REWARD2_ID == 0 || Config.VOTE_REWARD2_COUNT == 0 || Config.VOTE_REWARD3_ID == 0 || Config.VOTE_REWARD3_COUNT == 0 || Config.VOTE_REWARD4_ID == 0 || Config.VOTE_REWARD4_COUNT == 0 || Config.VOTE_REWARD5_ID == 0 || Config.VOTE_REWARD5_COUNT == 0 || Config.VOTE_REWARD6_ID == 0 || Config.VOTE_REWARD6_COUNT == 0) { GmListTable.broadcastMessageToGMs("The rewards aren't Identified. Please take a look."); return; } int newVoteCount = getVotes(Config.VOTE_HTML_PATCH); System.out.println("getLastVoteCount:"+getLastVoteCount()); System.out.println("newVoteCount:"+newVoteCount); System.out.println("========= HopZone ========="); System.out.println(""); if (newVoteCount != 0 && getLastVoteCount() != 0 && newVoteCount >= getLastVoteCount() + Config.VOTES_FOR_REWARD) { for (L2PcInstance player : L2World.getInstance().getAllPlayers().values()) { if (player != null) { L2ItemInstance item1 = player.getInventory().getItemByItemId(Config.VOTE_REWARD1_ID); if (item1 == null || item1.getCount() < Config.MAX_REWARD_COUNT_FOR_STACK_ITEM1) { if (player.getAppearance().getNameColor() != Config.OFFLINE_NAME_COLOR) { player.addItem("reward", Config.VOTE_REWARD1_ID, Config.VOTE_REWARD1_COUNT, player, true); } } else { player.sendMessage("[" + Config.SERVER_NAME_FOR_VOTES+"]" + "You have reached our limit for vote reward items!!"); } L2ItemInstance item2 = player.getInventory().getItemByItemId(Config.VOTE_REWARD2_ID); if (item2 == null || item2.getCount() < Config.MAX_REWARD_COUNT_FOR_STACK_ITEM2) { if (player.getAppearance().getNameColor() != Config.OFFLINE_NAME_COLOR) { player.addItem("reward", Config.VOTE_REWARD2_ID, Config.VOTE_REWARD2_COUNT, player, true); } } else { player.sendMessage("[" + Config.SERVER_NAME_FOR_VOTES+"]" + "You have reached our limit for vote reward items!!"); } L2ItemInstance item3 = player.getInventory().getItemByItemId(Config.VOTE_REWARD3_ID); if (item3 == null || item3.getCount() < Config.MAX_REWARD_COUNT_FOR_STACK_ITEM3) { if (player.getAppearance().getNameColor() != Config.OFFLINE_NAME_COLOR) { player.addItem("reward", Config.VOTE_REWARD3_ID, Config.VOTE_REWARD3_COUNT, player, true); } } else { player.sendMessage("[" + Config.SERVER_NAME_FOR_VOTES+"]" + "You have reached our limit for vote reward items!!"); } L2ItemInstance item4 = player.getInventory().getItemByItemId(Config.VOTE_REWARD4_ID); if (item4 == null || item4.getCount() < Config.MAX_REWARD_COUNT_FOR_STACK_ITEM4) { if (player.getAppearance().getNameColor() != Config.OFFLINE_NAME_COLOR) { player.addItem("reward", Config.VOTE_REWARD4_ID, Config.VOTE_REWARD4_COUNT, player, true); } } else { player.sendMessage("[" + Config.SERVER_NAME_FOR_VOTES+"]" + "You have reached our limit for vote reward items!!"); } L2ItemInstance item5 = player.getInventory().getItemByItemId(Config.VOTE_REWARD5_ID); if (item5 == null || item5.getCount() < Config.MAX_REWARD_COUNT_FOR_STACK_ITEM5) { if (player.getAppearance().getNameColor() != Config.OFFLINE_NAME_COLOR) { player.addItem("reward", Config.VOTE_REWARD5_ID, Config.VOTE_REWARD5_COUNT, player, true); } } else { player.sendMessage("[" + Config.SERVER_NAME_FOR_VOTES+"]" + "You have reached our limit for vote reward items!!"); } L2ItemInstance item6 = player.getInventory().getItemByItemId(Config.VOTE_REWARD6_ID); if (item6 == null || item6.getCount() < Config.MAX_REWARD_COUNT_FOR_STACK_ITEM6) { if (player.getAppearance().getNameColor() != Config.OFFLINE_NAME_COLOR) { player.addItem("reward", Config.VOTE_REWARD6_ID, Config.VOTE_REWARD6_COUNT, player, true); } } else { player.sendMessage("[" + Config.SERVER_NAME_FOR_VOTES+"]" + "You have reached our limit for vote reward items!!"); } } } setLastVoteCount(newVoteCount); } Announcements.getInstance().announceToAll(" Help your server by voting now at mywebsite. We need " + (getLastVoteCount()+ Config.VOTES_FOR_REWARD) + " Votes in HopZone for reward all players. At this moment we have " + newVoteCount + " Votes. "); if (getLastVoteCount() == 0) { setLastVoteCount(newVoteCount); } } } } private int getVotes(String urlString) { InputStreamReader isr = null; BufferedReader in = null; try { URL url = new URL(urlString); URLConnection con = url.openConnection(); con.addRequestProperty("User-Agent", "Mozilla/4.76"); isr = new InputStreamReader(con.getInputStream()); in = new BufferedReader(isr); String inputLine; int voteCount = 0; while ((inputLine = in.readLine()) != null) { if (inputLine.contains("moreinfo_total_rank_text")) { int Sub = 12; switch (inputLine.length()) { case 116: Sub = 13; break; case 117: Sub = 14; break; case 118: Sub = 15; break; case 119: Sub = 16; break; } voteCount = Integer.parseInt(inputLine.substring(inputLine.length() - Sub, inputLine.length() - 11)); break; } } return voteCount; } catch (IOException e) { e.printStackTrace(); return 0; } finally { try { in.close(); } catch (IOException e) { } try { isr.close(); } catch (IOException e) { } } } /** * @return */ private void setLastVoteCount(int voteCount) { lastVoteCount = voteCount; } private int getLastVoteCount() { return lastVoteCount; } public static AutoVoteRewardHandler getInstance() { return SingletonHolder._instance; } @SuppressWarnings("synthetic-access") private static class SingletonHolder { protected static final AutoVoteRewardHandler _instance = new AutoVoteRewardHandler(); } } an to kanw etsi } setLastVoteCount(newVoteCount); } player.sendPacket(new CreatureSay(1,Say2.PARTY,"Vote System :"," Help your server by voting now at myweb. We need " + (getLastVoteCount()+ Config.VOTES_FOR_REWARD) + " Votes in HopZone for reward all players. At this moment we have " + newVoteCount + " Votes. )")); if (getLastVoteCount() == 0) { setLastVoteCount(newVoteCount); } xwris na balw to } Collection<L2PcInstance> plss = L2World.getInstance().getAllPlayers(); for (L2PcInstance player : plss) { mou bgazei error mono to enw an balw to allo apo panw mou bgazei k poio katw error -
Java code gia announce
Psych_O replied to Psych_O's question in Request Server Development Help [Greek]
iparxei -
Kapoios pou na kserei apo PHP
Psych_O replied to Greekportal's question in Request Server Development Help [Greek]
an 8es help steile mou id/pass apo teamviewer na sto ftia3w -
Java code gia announce
Psych_O replied to Psych_O's question in Request Server Development Help [Greek]
loipon ekana add autes tis 2 lines.... import com.l2jserver.gameserver.network.clientpackets.Say2; import com.l2jserver.gameserver.network.serverpackets.CreatureSay; kai meta to ekana etsi... } setLastVoteCount(newVoteCount); } Collection<L2PcInstance> plss = L2World.getInstance().getAllPlayers(); for (L2PcInstance player : plss) { player.sendPacket(new CreatureSay(1,Say2.PARTY,"Vote System :"," Help your server by voting now at We need " + (getLastVoteCount()+ Config.VOTES_FOR_REWARD) + " Votes in HopZone for reward all players. At this moment we have " + newVoteCount + " Votes. )")); if (getLastVoteCount() == 0) { setLastVoteCount(newVoteCount); } kai mou bgazei error sto pws borw na to lisw auto? -
Account manager
Psych_O replied to Greekportal's question in Request Server Development Help [Greek]
μπορώ να ρε βοηθήσω ρε αυτό. στείλε μου τα στοιχεία του teamviewer να μπω. -
bump
-
bump
-
Java code gia announce
Psych_O replied to Psych_O's question in Request Server Development Help [Greek]
eyxaristw poli paidia apo deytera 8a exetai nea mou -
Java code gia announce
Psych_O replied to Psych_O's question in Request Server Development Help [Greek]
eyxaristw alla dn to kanei etsi opws edei3a..... kapoios allos? -
no from greece
-
1on) diabase ta rules prwta..... to double post apagoreuetai 2on) boreis na kaneis to topic sou bump ka8e 24wres 3on) prospa8ise ligo monos sou na ta ftia3eis