-
Posts
2,865 -
Credits
0 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Flash™
-
mia erwtisei me to Ddos
Flash™ replied to sokianos's question in Request Server Development Help [Greek]
Giati sou ekanan ddos atack sto pc sou ? -
mia erwtisei me to Ddos
Flash™ replied to sokianos's question in Request Server Development Help [Greek]
File mou oxi den kanei douleia oute to firewall den kanei douleia.. dose mou opoion server theleis na sou ton kano dow na deis oti polu ligh server exoun ddos protection kai exoun dosei lefta polla... -
mia erwtisei me to Ddos
Flash™ replied to sokianos's question in Request Server Development Help [Greek]
tin ip sou mporei kapoios na tin brei kai me ton programa pc sto msn sto skype polla ginonte file mou... -
mia erwtisei me to Ddos
Flash™ replied to sokianos's question in Request Server Development Help [Greek]
File mou ama theleis na fix ta anti ddos.. 1: prepei na pas se mia kalh dedicated oste na exei anti-ddos pou pali tha plhroseis polla 2: h na plhroseis 200 eyro tha mina mono gia to protection anti -ddos file mou... -
kanto post sto forum tis team file mou aste na to fix
-
- Good Protection (Floods , DDoS , Packet Protection , Game Exploits) Anti ddos ? hahhahahaha give for ip for server and atack ddos look for 2s dow for you server. phx protection hahaha. no-target for phx no fix phx items clone no fix All scrolls full bug. Geodata full bug.. Fortess no fix
-
[HELP] Java code Freya!!
Flash™ replied to A√imas†i©™'s question in Request Server Development Help [Greek]
file dose to java olo edw na to dw oste na mporesw na se boi8isw .. -
help anti target
Flash™ replied to Red-Hair-Shanks's question in Request Server Development Help [Greek]
o monos server pou to exei fix einai o l2java.. ektos apo ayto uparxei kai allo ena me phx. klonopisei ton items diladi bgazei to idio items polles fores.. :S -
help anti target
Flash™ replied to Red-Hair-Shanks's question in Request Server Development Help [Greek]
3erei kaneis kala to bug ayto.. Giati eftia3a kati kai thelw na dw ama pianei.. opoios to 3ereis 100% thelw na mou kanei pm na to kanoume test.. -
[HELP]Provlima Me To Compile
Flash™ replied to XxXterminatorXxX's question in Request Server Development Help [Greek]
exeis perasei tin jdk java file mou ? sto eclipse to perases ? Diavase ayto edw to Share -
[HELP] Java codes Freya!!
Flash™ replied to A√imas†i©™'s question in Request Server Development Help [Greek]
vale olo to java code file mou oste na sou di3w -
[HELP] Java codes Freya!!
Flash™ replied to A√imas†i©™'s question in Request Server Development Help [Greek]
File mou to kathe client allazoun kai ta java giati pane se diaforetikh diadromh -
File ama theleis anti ddos ton server sou mporw na sou parexw egw.. oti theleis eimai online steile mou pm
-
file mou ama theleis na sikoseis server ayto to kero me ta ddos atack tha prepei na plhroseis.. Den ginete poia opws palia pou eixame mono ta bug kai to phx.. Twra ta bug kai to phx fixaronte kai ta ddos den mporeis na ta fix giati den einai apo to pack alla einai apo dedacted...
-
File mou ta linux den stamatane ta anti ddos.
-
http://www.giga-hosting.biz/ oxi einai arxisti. http://www.hetzner.de/ mporei na einai kalh eteria alla den exeis kan protection anti -ddos fusika kamia apo oles tis eteries pou ebales den exeis anti ddos proection na to 3ereis file mou ...
-
kanto test ayto file mou kai pes mou ti error sou exei bgalei workspace\L2J_DataPack\data\scripts\handlers /* * 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 handlers.itemhandlers; import com.l2jserver.gameserver.ThreadPoolManager; import com.l2jserver.gameserver.datatables.NpcTable; import com.l2jserver.gameserver.idfactory.IdFactory; import com.l2jserver.gameserver.model.L2ItemInstance; import com.l2jserver.gameserver.model.L2Spawn; import com.l2jserver.gameserver.model.L2World; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.model.actor.instance.L2PlayableInstance; import com.l2jserver.gameserver.network.SystemMessageId; import com.l2jserver.gameserver.serverpackets.SystemMessage; import com.l2jserver.gameserver.templates.L2NpcTemplate; /** * @author x.v3ndetta@yahoo.com * */ public class VendettaItem implements IItemHandler { public class DeSpawnScheduleTimerTask implements Runnable { L2Spawn spawnedPlant = null; public DeSpawnScheduleTimerTask(L2Spawn spawn) { spawnedPlant = spawn; } public void run() { try { spawnedPlant.getLastSpawn().decayMe(); } catch (Throwable t) { } } } private static int[] _itemIds = { 6391 }; private static int[] _npcIds = { 18342 }; private static int[] _npcLifeTime = { 20000 }; public void useItem(L2PlayableInstance playable, L2ItemInstance item) { L2PcInstance activeChar = (L2PcInstance) playable; L2NpcTemplate template1 = null; int lifeTime = 0; int itemId = item.getItemId(); for (int i = 0; i < _itemIds.length; i++) { if (_itemIds == itemId) { template1 = NpcTable.getInstance().getTemplate(_npcIds); lifeTime = _npcLifeTime; break; } } if (template1 == null) return; try { L2Spawn spawn = new L2Spawn(template1); spawn.setId(IdFactory.getInstance().getNextId()); spawn.setLocx(activeChar.getX()); spawn.setLocy(activeChar.getY()); spawn.setLocz(activeChar.getZ()); L2World.getInstance().storeObject(spawn.spawnOne()); ThreadPoolManager.getInstance().scheduleGeneral(new DeSpawnScheduleTimerTask(spawn), lifeTime); activeChar.destroyItem("Consume", item.getObjectId(), 1, null, false); } catch (Exception e) { SystemMessage sm = new SystemMessage(SystemMessageId.S1_S2); sm.addString("Exception in useItem() of VendettaItem.java"); activeChar.sendPacket(sm); } } public int[] getItemIds() { return _itemIds; } }
-
Oti kai logo na exeis file mou psaxto poio poly. Giati den einai efkolo na stiseis ton server sou apo ekei kai na min exeis provlima giati eisai ellada ayto na to 3ereis.. oloi i kalh server pernoun apo eteria pou einai konta stis perisoteres xwres kai idika stis dikes tous gia na exoun kalhteri prosbasei kai 0 lag ;)
-
Magkes gia na sikosete server twra poia i tha plhrosete polla gia anti- ddos i tha pefti sinexomena apo booter pou uparxoun polla.. To kalhtero pragma einai na ftia3eis ena diko sou pc opws to theleis na pareis kai ta rooter kai tin karta diktiou kai na ta steileis se eteria kai na plhroneis mono tin sindesei alla einai polla ta lefta ayto na to 3erete...
-
File mou gi ayto pou les theleis polla lefta toulaxiston pc kai anti ddos 300 to ligotero.. ektos apo ayto akoma kai cisco firewall na valeis pou kanei 1000 kati to kalo. Thelei toulaxiston 5s na kanei block tin ip. Diladi ama sou steilei kapoios megalo paketo ta 5s den tha to prolavoun kai kato to pc...
-
file larroukos den einai diskolo na to breis ama to psa3eis.. mporeis kai olas na pareis apo freya pou to exoun share sto forum edw kai na to ftia3eis gia to interlude.. File l22expert ti client exeis ama einai na sou to ftia3w kai na sou to steilw...
-
Ena help gia to L2j Server pou eftiaksa..
Flash™ replied to greik's question in Request Server Development Help [Greek]
min kaneis adika post kai ama theleis kati parapano mporeis na to grappseis... -
des edw file mou <?xml version="1.0" encoding="UTF-8"?> <!-- Externalhost here (Internet IP) or Localhost IP for local test --> <gameserver address="no-ip.info" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ipconfig.xsd"> <!-- Localhost here --> <define subnet="127.0.0.0/8" address="no-ip.info" /> <!-- Internalhosts here (LANs IPs) --> <define subnet="10.0.0.0/8" address="10.0.0.0" /> <define subnet="172.16.0.0/19" address="172.16.0.0" /> <define subnet="192.168.0.0/16" address="192.168.254.2" /> </gameserver>
-
Ena help gia to L2j Server pou eftiaksa..
Flash™ replied to greik's question in Request Server Development Help [Greek]
file mou ta grafika paizoun rolo apo tin karta grafikon kai ama dn einai karta grafikon tote einai apo to system ta poio apla fusika... mporeis na valeis mia photo edw na doume ti akirvos exeis ?