Tw3ty
Members-
Posts
59 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Tw3ty
-
Help : Admin Commands..
Tw3ty replied to LordNicolaS's question in Request Server Development Help [L2J]
//invis on L2j & //hide on Off extender ... :) shut up ^^ beep -
[Share] Tanker classes with bow fixed !
Tw3ty replied to Tw3ty's topic in Server Shares & Files [L2J]
wich pack do u use ? if l2j epilogue / freya so edit methode playerstatusback ... in olympiadgame :) as i wrote -
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
-
Run L2 Java Server on a Windows 7 64bit.
Tw3ty replied to ScaredAngell's question in Request Server Development Help [L2J]
yes u can but 1g is really enought for startserver -
Run L2 Java Server on a Windows 7 64bit.
Tw3ty replied to ScaredAngell's question in Request Server Development Help [L2J]
right click on startGameServer.bat -> choose Edit and find Xmx ang change it to 1g -
write killall java and try it again ..
-
wrong selection + u can make protection yourself !
-
[Share] Tanker classes with bow fixed !
Tw3ty replied to Tw3ty's topic in Server Shares & Files [L2J]
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 -
[Share] Tanker classes with bow fixed !
Tw3ty replied to Tw3ty's topic in Server Shares & Files [L2J]
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 -
[Share] Tanker classes with bow fixed !
Tw3ty replied to Tw3ty's topic in Server Shares & Files [L2J]
It must have lots of "if" checks 'cause tanks are paladin,phoenix,hell knight,dark avavger etc. -
[Share] Tanker classes with bow fixed !
Tw3ty replied to Tw3ty's topic in Server Shares & Files [L2J]
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 .... -
[Share] Tanker classes with bow fixed !
Tw3ty replied to Tw3ty's topic in Server Shares & Files [L2J]
That tanks with bow f. ex. on interlude is very good and everyone play only tanks on pvp servers ! -
[Share] Tanker classes with bow fixed !
Tw3ty replied to Tw3ty's topic in Server Shares & Files [L2J]
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. -
You can use my feature -> http://www.maxcheaters.com/forum/index.php?topic=180932.0 ! That tanks can use bow only in olympiad !
-
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 !
-
[help]exception in thread main java.lang.nullpointerexception...
Tw3ty replied to besd's question in Request Server Development Help [L2J]
reinstall door tables in database & try it again -
[HELP]Freya Potions not working
Tw3ty replied to lorddragon2's question in Request Server Development Help [L2J]
data/stats/skill and ID skill ,witch the potion use and let's edit it :) of do u have AllowManaPotions = True ? :D -
Need game server 64 bit
Tw3ty replied to CarmineAngelo's question in Request Server Development Help [L2J]
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 -
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
-
gameserver errors in freya client
Tw3ty replied to madzkull's question in Request Server Development Help [L2J]
Install database right ! missing table class_index -
add them to data/stats/skills folder + make sure effect code to core !
-
yes ! for all knight classes only 2 skills ( acitve ) & 2 create skills for maestro
-
HERE: http://www.lineage2.com/news/freya_07.html & just code the functions of thehe skills !
-
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
-
U're wrong ... for epilogue is com.l2jserver
