Jump to content

`Rοmeο

Legendary Member
  • Posts

    8,223
  • Credits

  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by `Rοmeο

  1. http://www.maxcheaters.com/forum/index.php?topic=126391.0;msg=884695
  2. Thanks to MaestroLuke for the code and SkyLanceR For The Idea And His Code !!! The Prove: http://trac6.assembla.com/L2J-Infinity/changeset/23
  3. its not your work ... its shared by down !
  4. joining just right now !!! I was waiting for that kind of server alot of time :)
  5. yes when you shut the server down it will ask you Restart or Quit ?
  6. do you mean that ? Index: /trunk/L2J-Infinity_IL_GS/dist/LoginServer.bat =================================================================== --- /trunk/L2J-Infinity_IL_GS/dist/LoginServer.bat (revision 43) +++ /trunk/L2J-Infinity_IL_GS/dist/LoginServer.bat (revision 46) @@ -22,3 +22,10 @@ echo server terminated echo. +:question +set choix=q +set /p choix=Restart(r) or Quit(q) +if /i %choix%==r goto start +if /i %choix%==q goto exit +:exit +exit pause Index: /trunk/L2J-Infinity_IL_GS/dist/GameServer.bat =================================================================== --- /trunk/L2J-Infinity_IL_GS/dist/GameServer.bat (revision 43) +++ /trunk/L2J-Infinity_IL_GS/dist/GameServer.bat (revision 46) @@ -24,7 +24,10 @@ echo Server terminated abnormaly echo. -:end -echo. -echo server terminated -echo. +:question +set choix=q +set /p choix=Restart(r) or Quit(q) +if /i %choix%==r goto start +if /i %choix%==q goto exit +:exit +exit pause
  7. as I remember I helped you in the project forum :) http://l2j-infinity.hostei.com/index.php?topic=11.0 but I dont get a reply thats why i thing that i helped you
  8. I dont know im not playing there but before there was alot of players ... PS: Sorry for the offtopic
  9. 10/10 ! Amaizing Work :)
  10. I dont thing thats true ... I dont thing that dimis is so dumb to make that insane stats... with that stats the server will die...
  11. The statistic buttons are looking realy nice with the web template ! :) thanks for using it and good luck with your server
  12. Already Posted: http://www.maxcheaters.com/forum/index.php?topic=123659.0 http://www.maxcheaters.com/forum/index.php?topic=97117.0 The server is realy cool but the enchant rate is LOOOOOW :(
  13. cool template just the buttons are little [...] maybe if you fix them it will be best xD
  14. did you try to edit the xml file ?
  15. do you have core support for the CHANCE skills ?
  16. Index: C:/workspace/L2_GameServer/java/net/sf/l2j/gameserver/model/actor/L2Character.java =================================================================== --- C:/workspace/L2_GameServer/java/net/sf/l2j/gameserver/model/actor/L2Character.java (revision 3338) +++ C:/workspace/L2_GameServer/java/net/sf/l2j/gameserver/model/actor/L2Character.java (working copy) @@ -759,6 +759,18 @@ return; } } + if (((L2PcInstance) this).isffaction() && ((L2PcInstance) target).isffaction() && Config.FACTION_SYSTEM_ENABLE) + { + ((L2PcInstance) this).sendMessage("Cant attack a player from your faction"); + sendPacket(ActionFailed.STATIC_PACKET); + return; + } + if (((L2PcInstance) this).issfaction() && ((L2PcInstance) target).issfaction() && Config.FACTION_SYSTEM_ENABLE) + { + ((L2PcInstance) this).sendMessage("Cant attack a player from your faction"); + sendPacket(ActionFailed.STATIC_PACKET); + return; + } // Checking if target has moved to peace zone if (target.isInsidePeaceZone((L2PcInstance)this)) { Try this code :)
  17. you whant to translate the configs ? if you do you can use google translate or try to post them here I know russian :)
  18. you are using a l2jserver interlude custom version for the augment skills you will need core support couse lot of them are CHANCE skills there is the needed support if you have core for the CHANCE skills you can easy fix the rest of the skills :)
  19. maybe the skill is NOTDONE ? couse in the branch I thing that the skill is NOTDONE try to post us the xml part of the skill
  20. great looking wings :) thanks for the share
  21. if you dont test you will never know ;D
  22. Index: /Server/GameServer/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java =================================================================== --- /Server/GameServer/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (revision 13) +++ /Server/GameServer/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java (revision 15) @@ -4410,4 +4410,11 @@ // Check if it's pvp + String player1 = getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress(); + String player1target = targetPlayer.getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress(); + if (player1.equals(player1target)) + return; if ( (
  23. In multisell you must add: <ingredient id="ITEM ID" count="COUNT" /> <production id="ARMOR UP" count="1" /> <production id="ARMOR DOWN" count="1" /> <production id="ARMOR HELM" count="1" /> <production id="ARMOR GLOVES" count="1" /> <production id="ARMOR BOOTS" count="1" /> Change them to your IDs/count save,exit and reload ;D Have fun
  24. you can add it in updatepvpflag so when the player flag the skill will dissapear
×
×
  • Create New...