Jump to content

skaraz

Members
  • Posts

    55
  • Credits

  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by skaraz

  1. min dinete lefta polla gia ddos den eiparxei kaneis edo mesa na mporei na kanei ddos pera apo ena booster ...oloi osoi poulane apo ovh ..metapolites ennoo pou eiparxoun edo sto forum prosferoun prostasia 10gb mazi me to enoikio tou server pou einai 30-40 eyro ton mina dld ddos protect 10gb kai kalo mhxanima pera apo ekei apla fobaste kai dinete lefta tsampa....
  2. anikse to script editor kai pigene ston fakelo scripts anikse ena apo ta iparxonta arxeia na deis ton kodika sthn arxei einai bouno alla meta apo ligo arxeizeis na ton katalabeneis einai poli aplos o kodikas tou...................
  3. emena rotas? ego blepo oti leei to title kante request oti thelete.....ola einai axrista efoson pote kapios pou den exei lefta gia petama den prokeite na sikosei server, ola eine mataia xoris security ,ama einai na dino 250 eyro to mhna gia ena proxy tunel h leiseis eine dio ,h to kano monos mou(an ginetai)h gemizo thn piso aylh me ntomaties piperies kai melitzanes kai to rixno sthn khpourikh ....
  4. den kanete ena olokliromeno odigo gia asfaleia ston server?bhma bhma?apo thn asfaleia sthn mysql mexri to pos setaroume to ddos deflate kai pos setaronte ta ip ranges oste na kobeis xores px india pakistan pou den pezoun l2 kai apla exoun disekatomiria netzombies?h pos kanoume tunelink me proxy?
  5. 1)if you build your files from the source they are no backdoored, if you download them compiled forget it. 2)install a firewall and try leave only l2 related ports open 7777 bla bla 3)the most important you add in java protections(if there is no any)like floodprotectors and anti-hack programms codes....if you cannot you buy pack with them, from developer with high reputation 4) finaly if yur server is about to have over 300 people you go in lameguard web page and order lameguard protection its expensive and is only if you have people on to donate for server survival....
  6. invalid packets or packets are sending during store......what problem you try to solve ?
  7. tell us pliz the old revision and the new revision and you if you just add the code by your self show us the code...
  8. mporei kapios na mas pei ena major bug pou exei to frozen????oxi apla leme oti nane ...eine revision 968 nomizo,mia xara einai gia to palikari pou ksekinaei ....pio sobaro einai pou den kserei pos na to setarei kai na rithmisei kapia pramata se sxesi me security,bug exei h idia h ncsoft ,kai milame gia to frozen????
  9. re file den eiparxoun h tromaktikes diafores pou fantazese oson afora to stisimo kai il kai gracia peripou ta idia bhmata einai...diabase ta guide kai tha matheis na stineis ola ta clients....
  10. hi all ...when i use test server helper npc to complite class transer i get a message in game and in gameserver console about bad request java.lang.nullpointerexception at com.l2jserver/gameserver.model.actor.instance.... [Character: luna[269483972] - Account: luna - IP: 192.168.1.77] sent bad RequestBypassToServer: "npc_269483972_1stClass" java.lang.NullPointerException at com.l2jserver.gameserver.model.actor.instance.L2ClassMasterInstance.getRequiredItems(L2ClassMasterInstance.java:432) at com.l2jserver.gameserver.model.actor.instance.L2ClassMasterInstance.showHtmlMenu(L2ClassMasterInstance.java:275) at com.l2jserver.gameserver.model.actor.instance.L2ClassMasterInstance.onBypassFeedback(L2ClassMasterInstance.java:67) at com.l2jserver.gameserver.network.clientpackets.RequestBypassToServer.runImpl(RequestBypassToServer.java:145) at com.l2jserver.gameserver.network.clientpackets.L2GameClientPacket.run(L2GameClientPacket.java:62) at com.l2jserver.gameserver.network.L2GameClient.run(L2GameClient.java:1072) at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.lang.Thread.run(Unknown Source) and when i turn off the server and turn on again the npc is not there i have to //spawn again ,server hi5 l2j ..ty in advance
  11. done ty a lot my friend......
  12. hello to all people ...maybe this question is very easy for some of you so forgive me ..i need to know how i can see the cordinates when i am siting with my adminchar in one location in form like 139714-177456-1536 so i can use them to create spawnlist for some custom raids...ty in advance
  13. May the Force be with you...in this project,am sure that you are gonna thrill us..
  14. yes you are right ...well am new in hi5 and i speak with many devs about this before i make this topic and nobody knew it...so reward goes to forum ..locked
  15. PVP REWARD In this code i want to add an extra line with //Dont reward if target kill time < 240 sec.. with simlpy words if char1 kills char2 second time before 240 seconds have passed he get no reward...i pay 10 eyros for that line via paypal after pm me ..and if someone give this for free the 10 eyros will go to forum as donation!!!The code must be tested l2j hi5. ========================================================================================================== 2) Index: java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java =================================================================== --- java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java (revision 4425) +++ java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java (working copy) @@ -5790,7 +5790,7 @@ targetPlayer.isInsideZone(ZONE_PVP) // Target player is inside pvp zone ) ) - increasePvpKills(target); + increasePvpKills(targetPlayer); else // Target player doesn't have pvp flag set { @@ -5802,7 +5802,7 @@ && getPledgeType() != L2Clan.SUBUNIT_ACADEMY) { // 'Both way war' -> 'PvP Kill' - increasePvpKills(target); + increasePvpKills(targetPlayer); return; } @@ -5810,7 +5810,7 @@ if (targetPlayer.getKarma() > 0) // Target player has karma { if (Config.KARMA_AWARD_PK_KILL) - increasePvpKills(target); + increasePvpKills(targetPlayer); } else if (targetPlayer.getPvpFlag() == 0) // Target player doesn't have karma { @@ -5825,17 +5825,79 @@ * Increase the pvp kills count and send the info to the player * */ - public void increasePvpKills(L2Character target) + public void increasePvpKills(L2PcInstance target) { if (target instanceof L2PcInstance && AntiFeedManager.getInstance().check(this, target)) { // Add karma to attacker and increase its PK counter setPvpKills(getPvpKills() + 1); - + // Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter sendPacket(new UserInfo(this)); sendPacket(new ExBrExtraUserInfo(this)); + + //Dont reward if same clan + if(getClan() != null && target.getClan() != null && getClan() == target.getClan()) + + { + return; + } + + //Dont reward if same alliance + if(getAllyId() > 0 && target.getAllyId() > 0 && getAllyId() == target.getAllyId()) + + { + return; + } + + //Dont reward if target level < 76 + if(target.getLevel() < 76) + + { + return; + } + + //Dont reward if pdef < 500 + if(target.getPDef(getLockedTarget()) < 500) + + { + return; + } + + + + //Dont reward if same party + if(this.getParty() != null && target.getParty() != null) + + { + if(this.getParty().equals(target.getParty())) + + { + return; + } + + } + + //Dont reward if same ip + String ip1 = this.getClient().getConnection().getInetAddress().getHostAddress(); + String ip2 = target.getClient().getConnection().getInetAddress().getHostAddress(); + + if (ip1.equals(ip2)) + + { + return; + } + + //Reward every PvP win + addItem("Loot", 4037, 1, this, true); } }
  16. koita ekanes mia prospatheia alla afou eine gia hi5 bale ta sosta min mperdrftoun kapoioi h db px einai pleon xoria l2jls l2jgs kai l2jcs....kai polla alla.....
  17. :) sorry pou epanerxome toso syntoma kai na se eyxaristiso kai pali exile ...to 216.107.250.194 nprotect.lineage2.com to bazoume sto pc mas gia na apofevgoume to gameguard error?ego basika thelo na exo ston server mou to GameGuardEnforce = True oste na min sindeonte hacking tools me to psevdonimo l2.exe sto port mou to problima mou eine pos na setaro sto client to gameguard ,dioti to system mou den periexei to gameguard kai otan kano GameGuardEnforce = True to login mou kikari tous pextes apo ton server .... :o
  18. katebasa ena gameguard pou brika to ebala sto system alla me kickari apo to game kai mou leei failed to respond in gameguard query ..den exei kapia setups pou prepei na ginoun?kai ti akribos apofevgeis me to gameguard?eyxaristo ek ton proteron.....
  19. Gia kai xara se olous, ekana afto to topic gt paratirisa oti kanontas pathed ena system kai mpenontas me to l2.exe ston server den leitourgei ousiastika to gameguard me apotelesma na min iparxei h sxetikh asfaleia.Mporei kapoios na dosei esto mia basikh kateythinsh pos logaroume me to l2.bin xoris patch etsi oste na leitourgei to gameguard??
  20. nice items and if i make you an offer for these how you will delivery the items with safety? ...or i will have to trust you?(dont even give that answer)
  21. i dowload the Server:4678 Datapack:8069 but when i try to login i get disconect and a message Your protocol version is diferent,please continue i try and high five and freya client....any ideas?ty in advance
  22. To mono pou mporite na kanete me liga logia an den exete polles gnoseis 1)stiste to server toulaxiston se win server 2008 sikoste to firewall 2)xrisimopoihste sthn database kodiko isxiro typou <<$+.pdA)(=-090*@khj:{}>>(sthn db) OSTE NA EINE POLIPLOKOS 3) dimiourgiste enan xristh me periorismous sthn database o opoios tha sindeete me to site kai tha exei prosbash mono apo thn ip tou site diladi thn ip tou server pou filoksenh thn selida sas oste oi players na kanoun register ta accounts tous, typou user@(ip server hosting) balte oso pio telefteo pack mporite to opoio na eine compiled kai na pernete kalo BUCKUP toulaxisto mera para mera oste oti kai na ginei na mporeite na epanaferete ton server,MHN PROKALITE ALOYS DEV me spam se alous server typou !join l2paparion kai kaneis den mprokite na afierosh xrono na sas xakari... sigoura mporoun alla den eine kai toso aplo kai o kaliteros tropos na apofigeis enan hacker apla eksafanise tou to kinitro......
  23. :) cool work :) but you put me in deep waters now .....there is any link how we install login and gameserver in diferent db s ???? :P sorry am a starter ty in advance....
  24. ebala win 7 64 bit kai pezoun ola mia xara mallon ta 2003 server 64bit theloun kati to parapano se sxesh me to firewall an kai to katebasa den mporousa na mpo ty gia to help pedia !!!!!!:)
×
×
  • Create New...