Jump to content

Tw3ty

Members
  • Posts

    59
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Tw3ty

  1. //invis on L2j & //hide on Off extender ... :) shut up ^^ beep
  2. wich pack do u use ? if l2j epilogue / freya so edit methode playerstatusback ... in olympiadgame :) as i wrote
  3. it isn't good idea and solution 'cause i have this error with L2j brasil, L2j teon and with equal too so problem is not with DP
  4. yes u can but 1g is really enought for startserver
  5. right click on startGameServer.bat -> choose Edit and find Xmx ang change it to 1g
  6. write killall java and try it again ..
  7. wrong selection + u can make protection yourself !
  8. I'm not sure but on interlude it works 'cause that u said that it isnt work i fix it http://www.maxcheaters.com/forum/index.php?topic=180932
  9. are u kidding me ? :D my dear ... you're lams as i see ... lrhand si only for arrows but the weapon is in rhand ! JUST try it & after that u can say smth. like this
  10. It must have lots of "if" checks 'cause tanks are paladin,phoenix,hell knight,dark avavger etc.
  11. No my dear it works ! and i've never told that is retail like ! IF YOU BE PALADIN or smth. you cannot use bow ( you cant put it on ) ! Yust read the code ( UseItem.java ) and another lines is for bug with this ....
  12. That tanks with bow f. ex. on interlude is very good and everyone play only tanks on pvp servers !
  13. Just read -> This code means that a tanker classes cannot put on a bow if they are not in Olympiad ! if you dont understand this i try explain it better :D it means that all tanks can put on bow only in Olympiad.
  14. You can use my feature -> http://www.maxcheaters.com/forum/index.php?topic=180932.0 ! That tanks can use bow only in olympiad !
  15. This code means that a tanker classes cannot put on a bow if they are not in Olympiad ! 1. Step ! Go to com.l2jserver.gameserver.network.clientpackets & find packet UseItem & add this if ((activeChar.getInventory().getItemByObjectId(_objectId) != null && item.getItemType() == L2WeaponType.BOW) && ((activeChar.getClassId().getId() == 5) || (activeChar.getClassId().getId() == 6) || (activeChar.getClassId().getId() == 90) || (activeChar.getClassId().getId() == 91) || (activeChar.getClassId().getId() == 20) || (activeChar.getClassId().getId() == 99) || (activeChar.getClassId().getId() == 33) || (activeChar.getClassId().getId() == 106))) { if (!activeChar.isInOlympiadMode()) { activeChar.sendMessage("While you are a tanker class, you cant use a bow"); return; } } 2. Step ! Go to com.l2jserver.gameserver.model.actor.instance & find L2ClassManagerInstance & add these imports import com.l2jserver.gameserver.model.L2ItemInstance; import com.l2jserver.gameserver.model.itemcontainer.Inventory; import com.l2jserver.gameserver.network.serverpackets.InventoryUpdate; after that find this line private static final boolean checkAndChangeClass(L2PcInstance player, int val) & add L2ItemInstance rhand = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND); if (rhand != null) { L2ItemInstance[] unequipped = player.getInventory().unEquipItemInBodySlotAndRecord(rhand.getItem().getBodyPart()); InventoryUpdate iu = new InventoryUpdate(); for (L2ItemInstance element : unequipped) iu.addModifiedItem(element); player.sendPacket(iu); } L2ItemInstance lhand = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_LHAND); if (lhand != null) { L2ItemInstance[] unequipped = player.getInventory().unEquipItemInBodySlotAndRecord(lhand.getItem().getBodyPart()); InventoryUpdate iu = new InventoryUpdate(); for (L2ItemInstance element : unequipped) iu.addModifiedItem(element); player.sendPacket(iu); } L2ItemInstance lrhand = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_LRHAND); if (lrhand != null) { L2ItemInstance[] unequipped = player.getInventory().unEquipItemInBodySlotAndRecord(lrhand.getItem().getBodyPart()); InventoryUpdate iu = new InventoryUpdate(); for (L2ItemInstance element : unequipped) iu.addModifiedItem(element); player.sendPacket(iu); } 3. Step ! Go to com.l2jserver.gameserver.model.olympiad & find OlympiadGame & add this import import com.l2jserver.gameserver.model.itemcontainer.Inventory; after that add find this line protected void PlayersStatusBack() & add these lines L2ItemInstance rhand = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND); if (rhand != null) { L2ItemInstance[] unequipped = player.getInventory().unEquipItemInBodySlotAndRecord(rhand.getItem().getBodyPart()); InventoryUpdate iu = new InventoryUpdate(); for (L2ItemInstance element : unequipped) iu.addModifiedItem(element); player.sendPacket(iu); } L2ItemInstance lhand = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_LHAND); if (lhand != null) { L2ItemInstance[] unequipped = player.getInventory().unEquipItemInBodySlotAndRecord(lhand.getItem().getBodyPart()); InventoryUpdate iu = new InventoryUpdate(); for (L2ItemInstance element : unequipped) iu.addModifiedItem(element); player.sendPacket(iu); } L2ItemInstance lrhand = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_LRHAND); if (lrhand != null) { L2ItemInstance[] unequipped = player.getInventory().unEquipItemInBodySlotAndRecord(lrhand.getItem().getBodyPart()); InventoryUpdate iu = new InventoryUpdate(); for (L2ItemInstance element : unequipped) iu.addModifiedItem(element); player.sendPacket(iu); } AND HAVE FUN WITH THIS ! Credits to me !
  16. reinstall door tables in database & try it again
  17. data/stats/skill and ID skill ,witch the potion use and let's edit it :) of do u have AllowManaPotions = True ? :D
  18. no my dear :D it works correctly ... on x64 :) but u must have 64bit java ( i think that u have it ) so please write the problem ... i need gameserver is not good information to solve it :D
  19. Just press SEARCH button ! :D on MXC are lots of fix ... trabe bug, hero weapon stored, damage bug,PHX,echant bug,warehouse bug,l2 walker protection ! (for IG) & L2j killer + attacker too ( GameClient.java files ) SO JUST PRESS SEARCH
  20. Install database right ! missing table class_index
  21. add them to data/stats/skills folder + make sure effect code to core !
  22. yes ! for all knight classes only 2 skills ( acitve ) & 2 create skills for maestro
  23. HERE: http://www.lineage2.com/news/freya_07.html & just code the functions of thehe skills !
  24. I have this problem ! When server is online, after 60 minutes people get mass disconnect and can't re login again (account under using) I can only kill the server by -9 command in linux :/ Machine info -> Intel Core duo 2x, 6GB RAM, Debian, latest update ! like this: http://trac.l2jserver.com/ticket/4141 ! I need fix :/ thnx
  25. U're wrong ... for epilogue is com.l2jserver
×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..