Jump to content

vampir

Legendary Member
  • Posts

    1,899
  • Credits

  • Joined

  • Last visited

  • Days Won

    14
  • Feedback

    0%

Everything posted by vampir

  1. i dont know if i understood u good but problem may be with stackType
  2. u need to add that skill to database
  3. http://maxcheaters.com/forum/index.php?topic=163262.0
  4. 3 same topics? are u serious?
  5. there is a code for not loosing buffs after die, if u dont want only noblesses to lose buffs, just add if and it should work :)
  6. in pc instance from: if (isInsideZone(ZONE_PVP) || targetPlayer.isInsideZone(ZONE_PVP)) return; change to: if (isInsideZone(ZONE_PVP) || targetPlayer.isInsideZone(ZONE_PVP)){ increasePvpKills(target); return; } should be enough but u can still modify it
  7. Sad but True :(
  8. thats problem with java code, for sure u will need to compile to fix that, show code which run that msg
  9. u want option without compiling?
  10. in L2Npc.java in case 31113: // Merchant of Mammon change some things and u are done i think
  11. in L2EffectZone.java in onEnter, after if (character instanceof L2PcInstance){ put L2PcInstance player = (L2PcInstance) character; player.startPvPFlag(); i am not getting errors so its probably working:) hf
  12. Make backdoor :)
  13. and u want anything else?
  14. u could made some changes in code which is causing that error but since it is making server down, just not restarting i dont know
  15. latest server, latest datapack fully working checked with //server_restart 10
  16. u mean to weapon? since atm only 1 can be made, it will need many reworks in code
  17. i checked with server rev 4480 and its working well, i will check with latest.
  18. its core file which is compressed to 1 file after compiling, so if u dont use eclipse, u cant change that file and later compile it
  19. ofc, in latest l2jserver revision
  20. Hi i think its my first share, its not big but its usefull for servers with pk guards. If some1 have cursed weapon, guards will not attack him(ofc when he will hit them, they will hit back). Just in com.l2jserver.gameserver.ai.L2AttackableAI.java.java from: if (getActiveChar() instanceof L2GuardInstance) { // Check if the L2PcInstance target has karma (=PK) if (target instanceof L2PcInstance && ((L2PcInstance) target).getKarma() > 0) make if (getActiveChar() instanceof L2GuardInstance) { // Check if the L2PcInstance target has karma (=PK) if (target instanceof L2PcInstance && ((L2PcInstance) target).getKarma() > 0 && !target.getActingPlayer().isCursedWeaponEquipped()) and in same file from: if (target instanceof L2PcInstance && ((L2PcInstance) target).getKarma() > 0) return GeoData.getInstance().canSeeTarget(me, target); // Los Check else return false; } make if (target instanceof L2PcInstance && ((L2PcInstance) target).getKarma() > 0 && !target.getActingPlayer().isCursedWeaponEquipped()) return GeoData.getInstance().canSeeTarget(me, target); // Los Check else return false; } If u want players with cursed weapons be able to use gatekeeper, wh or other npcs change in com.l2jserver.gameserver.model.actor.l2Npc.java from: public void showChatWindow(L2PcInstance player, int val) { if (!player.isCursedWeaponEquipped() && (!(player.getTarget() instanceof L2ClanHallManagerInstance) || !(player.getTarget() instanceof L2DoormenInstance))) { player.setTarget(player); return; } if (player.getKarma() > 0) { to: public void showChatWindow(L2PcInstance player, int val) { if (!player.getActingPlayer().isCursedWeaponEquipped() && player.getKarma() > 0) :s i should make patch but no idea how :(
  21. click there http://www.maxcheaters.com/forum/index.php#9 later small loupe u have got place where u can write text for example "how to apply patches" and at right u have got cool button named Search, use it sometimes here u have link http://www.maxcheaters.com/forum/index.php?topic=73559.0 :) so nobody will say that my reply is worthless :)
  22. here u go: http://www.maxcheaters.com/forum/index.php?topic=180499.0 use search next time
  23. hi while checking out i have such error: Failed to load JavaHL Library. These are the errors that were encountered: C:\csvn\bin\libapr-1.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform C:\csvn\bin\libapriconv-1.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform C:\csvn\bin\libeay32.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform C:\csvn\bin\ssleay32.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform C:\csvn\bin\libaprutil-1.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform C:\csvn\bin\libsasl.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform C:\csvn\bin\libsvn_subr-1.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform C:\csvn\bin\libsvn_delta-1.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform C:\csvn\bin\libsvn_diff-1.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform C:\csvn\bin\libsvn_wc-1.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform C:\csvn\bin\libsvn_fs-1.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform C:\csvn\bin\libsvn_repos-1.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform C:\csvn\bin\libsvn_ra-1.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform C:\csvn\bin\libsvn_client-1.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform C:\csvn\bin\libsvnjavahl-1.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform no svnjavahl-1 in java.library.path no svnjavahl in java.library.path java.library.path = C:\Windows\system32;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\csvn\bin\;C:\csvn\Python25\;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files (x86)\QuickTime\QTSystem\ any1 know how to fix it?
  24. just use search for changing starting lvl. U can delete trees from database
  25. I think that u could give this mob skill with 100% resist to all kinds of weapon except weapon that u want to be able to make dmg. Should work :)
×
×
  • Create New...