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.
Продам почты БЕЗ ПАРОЛЕЙ. Много уника.
Не валидированы, валид 20-40%. Гео - в основном ЕУ.
Selling emails WITHOUT PASSWORDS. Lots of uniques.
Not validated, valid 20-40%. Geo - mostly EU.
tg
@poslob
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.