else { LOGGER.warn("No teleport destination with id:" + val); } player.sendPacket(ActionFailed.STATIC_PACKET); list = null; }
+@SuppressWarnings("unused") +private void doPartyTeleport(final L2PcInstance player, final int val) +{ + if (player.getParty() == null) + { + player.sendMessage("You must be in party of 5-9 members to use the teleport!"); + return; + } + + if (player.getObjectId() != player.getParty().getPartyLeaderOID()) + { + player.sendMessage("You must be party leader to use the teleport!"); + return; + } + + int NumberPartyMembers = 0; + for (final L2PcInstance temp : player.getParty().getPartyMembers()) + { + NumberPartyMembers++; + } + + if(NumberPartyMembers < 5 && NumberPartyMembers > 9) + { + player.sendMessage("You must be in party of 5-9 members to use the teleport!"); + return; + } + + L2TeleportLocation list = TeleportLocationTable.getInstance().getTemplate(val); + // Teleport ID must be 99999 + if (list.getTeleId() == 99999) + { + for (final L2PcInstance temp : player.getParty().getPartyMembers()) + { + temp.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ(), true); + } + } +}
/** * Validate condition. * @param player the player * @return the int */ private int validateCondition(final L2PcInstance player) { if (CastleManager.getInstance().getCastleIndex(this) < 0) // Teleporter isn't on castle ground
And I also created the html: with the id 919192 as it writes:
But it doesnt working it teleportes me even if I am alone (I tester it with a single character no GM) Also Plz tell me how to add an item in order to let someone teleport. Happy Chrismtass!
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Hello. You may encounter the Push item fail error when trying to pick up an item dropped on the ground by a mob.
or
You can throw something out of your inventory and pick it up again, several times.
Probably this is a quantum dependency) I don't understand at what point this happens, sometimes two items one after another experience push item errors, and sometimes I don't have enough thousands of attempts to repeat this trick)
In any case, this is just a visual error and after the relog, the item appears in the inventory. I think first i need to disconnect the extender and check it on a bare server. I still need time to check this, maybe it's not even about the autoloot function.
https://youtu.be/6mcfmdImofE
-----------
In general, I would like to thank our wonderful Emca Eressea for her deep knowledge in programming and reverse engineering. And for the fact that her work is open to everyone, this is very amazing, and incredibly valuable.
Question
alextoti13
hello I have this code:
And I also created the html: with the id 919192 as it writes:
(just to test it)
But it doesnt working it teleportes me even if I am alone (I tester it with a single character no GM) Also Plz tell me how to add an item in order to let someone teleport. Happy Chrismtass!
27 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.