Jump to content
  • 0

Gatekeeper > Bsoe


Question

7 answers to this question

Recommended Posts

  • 0
Posted
36 minutes ago, Dhrayn said:

9c2748d885a7acc309f7327e3160d2bb30.png

 

Hello. I want to ask how to make using gatekeeper teleports like bsoe animation?

 

Go in

L2TeleportInstance.java

find the line that teleport the player, it should look like "activeChar.teleToLocation" or something

and add a line to broadcast the soe animation.

  • 0
Posted
40 minutes ago, Kara` said:

 

Go in


L2TeleportInstance.java

find the line that teleport the player, it should look like "activeChar.teleToLocation" or something

and add a line to broadcast the soe animation.

Here is nothing with that:

 

public final class L2TeleporterInstance extends L2FolkInstance
{
    // private static Logger LOGGER = Logger.getLogger(L2TeleporterInstance.class);
    
    /** The Constant COND_ALL_FALSE. */
    private static final int COND_ALL_FALSE = 0;
    
    /** The Constant COND_BUSY_BECAUSE_OF_SIEGE. */
    private static final int COND_BUSY_BECAUSE_OF_SIEGE = 1;
    
    /** The Constant COND_OWNER. */
    private static final int COND_OWNER = 2;
    
    /** The Constant COND_REGULAR. */
    private static final int COND_REGULAR = 3;
    
    /**
     * Instantiates a new l2 teleporter instance.
     * @param objectId the object id
     * @param template the template
     */
    public L2TeleporterInstance(final int objectId, final L2NpcTemplate template)
    {
        super(objectId, template);
    }
    
    /*
     * (non-Javadoc)
     * @see com.l2jfrozen.gameserver.model.actor.instance.L2FolkInstance#onBypassFeedback(com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance, java.lang.String)
     */
    @Override
    public void onBypassFeedback(final L2PcInstance player, final String command)
    {
        player.sendPacket(ActionFailed.STATIC_PACKET);
        
        if (Olympiad.getInstance().isRegisteredInComp(player))
        {
            player.sendMessage("You are not allowed to use a teleport while registered in olympiad game.");
            return;
        }
        
        if (player.isAio() && !Config.ALLOW_AIO_USE_GK)
        {
            player.sendMessage("Aio Buffers Can't Use Teleports");
            return;
        }
        
        final int condition = validateCondition(player);
        
        StringTokenizer st = new StringTokenizer(command, " ");
        String actualCommand = st.nextToken(); // Get actual command
        
        if (actualCommand.equalsIgnoreCase("goto"))
        {
            final int npcId = getTemplate().npcId;
            
            switch (npcId)
            {
                case 31095: //
                case 31096: //
                case 31097: //
                case 31098: // Enter Necropolises
                case 31099: //
                case 31100: //
                case 31101: //
                case 31102: //
                    
                case 31114: //
                case 31115: //
                case 31116: // Enter Catacombs
                case 31117: //
                case 31118: //
                case 31119: //
                    player.setIsIn7sDungeon(true);
                    break;
                case 31103: //
                case 31104: //
                case 31105: //
                case 31106: // Exit Necropolises
                case 31107: //
                case 31108: //
                case 31109: //
                case 31110: //
                    
                case 31120: //
                case 31121: //
                case 31122: // Exit Catacombs
                case 31123: //
                case 31124: //
                case 31125: //
                    player.setIsIn7sDungeon(false);
                    break;
            }
            
            if (st.countTokens() <= 0)
                return;
            
            final int whereTo = Integer.parseInt(st.nextToken());
            if (condition == COND_REGULAR)
            {
                doTeleport(player, whereTo);
                return;
            }
            else if (condition == COND_OWNER)
            {
                int minPrivilegeLevel = 0; // NOTE: Replace 0 with highest level when privilege level is implemented
                if (st.countTokens() >= 1)
                {
                    minPrivilegeLevel = Integer.parseInt(st.nextToken());
                }
                
                if (10 >= minPrivilegeLevel)
                {
                    doTeleport(player, whereTo);
                }
                else
                {
                    player.sendMessage("You don't have the sufficient access level to teleport there.");
                }
                
                return;
            }
        }
        
        st = null;
        actualCommand = null;
        super.onBypassFeedback(player, command);
    }
    
    /*
     * (non-Javadoc)
     * @see com.l2jfrozen.gameserver.model.actor.instance.L2NpcInstance#getHtmlPath(int, int)
     */
    @Override
    public String getHtmlPath(final int npcId, final int val)
    {
        String pom = "";
        if (val == 0)
        {
            pom = "" + npcId;
        }
        else
        {
            pom = npcId + "-" + val;
        }
        
        return "data/html/teleporter/" + pom + ".htm";
    }
    
    /*
     * (non-Javadoc)
     * @see com.l2jfrozen.gameserver.model.actor.instance.L2NpcInstance#showChatWindow(com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance)
     */
    @Override
    public void showChatWindow(final L2PcInstance player)
    {
        String filename = "data/html/teleporter/castleteleporter-no.htm";
        
        final int condition = validateCondition(player);
        if (condition == COND_REGULAR)
        {
            super.showChatWindow(player);
            return;
        }
        else if (condition > COND_ALL_FALSE)
        {
            if (condition == COND_BUSY_BECAUSE_OF_SIEGE)
            {
                filename = "data/html/teleporter/castleteleporter-busy.htm"; // Busy because of siege
            }
            else if (condition == COND_OWNER)
            {
                filename = getHtmlPath(getNpcId(), 0); // Owner message window
            }
        }
        
        NpcHtmlMessage html = new NpcHtmlMessage(getObjectId());
        html.setFile(filename);
        html.replace("%objectId%", String.valueOf(getObjectId()));
        html.replace("%npcname%", getName());
        player.sendPacket(html);
        
        filename = null;
        html = null;
    }
    
    /**
     * Do teleport.
     * @param player the player
     * @param val the val
     */
    private void doTeleport(final L2PcInstance player, final int val)
    {
        L2TeleportLocation list = TeleportLocationTable.getInstance().getTemplate(val);
        if (list != null)
        {
            // you cannot teleport to village that is in siege
            if (!SiegeManager.getInstance().is_teleport_to_siege_allowed() && SiegeManager.getInstance().getSiege(list.getLocX(), list.getLocY(), list.getLocZ()) != null && !player.isNoble())
            {
                player.sendPacket(new SystemMessage(SystemMessageId.NO_PORT_THAT_IS_IN_SIGE));
                return;
            }
            else if (!SiegeManager.getInstance().is_teleport_to_siege_town_allowed() && TownManager.getInstance().townHasCastleInSiege(list.getLocX(), list.getLocY()) && !player.isNoble())
            {
                player.sendPacket(new SystemMessage(SystemMessageId.NO_PORT_THAT_IS_IN_SIGE));
                return;
            }
            else if (!player.isGM() && !Config.FLAGED_PLAYER_CAN_USE_GK && player.getPvpFlag() > 0)
            {
                player.sendMessage("Don't run from PvP! You will be able to use the teleporter only after your flag is gone.");
                return;
            }
            else if (player.isAio() && !Config.ALLOW_AIO_USE_GK)
            {
                player.sendMessage("Aio Buffers are not allowed to use GateKeepers.");
                return;
            }
            else if (!Config.ALT_GAME_KARMA_PLAYER_CAN_USE_GK && player.getKarma() > 0) // karma
            {
                SystemMessage sm = new SystemMessage(SystemMessageId.S1_S2);
                sm.addString("Go away, you're not welcome here.");
                player.sendPacket(sm);
                sm = null;
                return;
            }
            else if (list.getIsForNoble() && !player.isNoble())
            {
                String filename = "data/html/teleporter/nobleteleporter-no.htm";
                NpcHtmlMessage html = new NpcHtmlMessage(getObjectId());
                html.setFile(filename);
                html.replace("%objectId%", String.valueOf(getObjectId()));
                html.replace("%npcname%", getName());
                player.sendPacket(html);
                html = null;
                filename = null;
                return;
            }
            else if (player.isAlikeDead())
            {
                player.sendMessage("You can't use teleport when you are dead.");
                return;
            }
            else if (player.isSitting())
            {
                player.sendMessage("You can't use teleport when you are sitting.");
                return;
            }
            else if (list.getTeleId() == 9982 && list.getTeleId() == 9983 && list.getTeleId() == 9984 && getNpcId() == 30483 && player.getLevel() >= Config.CRUMA_TOWER_LEVEL_RESTRICT)
            {
                // Chars level XX can't enter in Cruma Tower. Retail: level 56 and above
                final int maxlvl = Config.CRUMA_TOWER_LEVEL_RESTRICT;
                
                String filename = "data/html/teleporter/30483-biglvl.htm";
                NpcHtmlMessage html = new NpcHtmlMessage(getObjectId());
                html.setFile(filename);
                html.replace("%allowedmaxlvl%", "" + maxlvl + "");
                player.sendPacket(html);
                filename = null;
                html = null;
                return;
            }
            // Lilith and Anakim have BossZone, so players must be allowed to enter
            else if (list.getTeleId() == 450)
            {
                if (Config.DEBUG)
                {
                    LOGGER.debug("Teleporting player " + player.getName() + " to new location: " + list.getLocX() + ":" + list.getLocY() + ":" + list.getLocZ());
                }
                final L2BossZone _zone = GrandBossManager.getInstance().getZone(list.getLocX(), list.getLocY(), list.getLocZ());
                _zone.allowPlayerEntry(player, 300);
                player.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ(), true);
            }
            else if (!list.getIsForNoble() && (Config.ALT_GAME_FREE_TELEPORT || player.reduceAdena("Teleport", list.getPrice(), this, true)))
            {
                if (Config.DEBUG)
                {
                    LOGGER.debug("Teleporting player " + player.getName() + " to new location: " + list.getLocX() + ":" + list.getLocY() + ":" + list.getLocZ());
                }
                player.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ(), true);
            }
            else if (list.getIsForNoble() && (Config.ALT_GAME_FREE_TELEPORT || player.destroyItemByItemId("Noble Teleport", 6651, list.getPrice(), this, true)))
            {
                if (Config.DEBUG)
                {
                    LOGGER.debug("Teleporting player " + player.getName() + " to new location: " + list.getLocX() + ":" + list.getLocY() + ":" + list.getLocZ());
                }
                player.teleToLocation(list.getLocX(), list.getLocY(), list.getLocZ(), true);
            }
        }
        else
        {
            LOGGER.warn("No teleport destination with id:" + val);
        }
        player.sendPacket(ActionFailed.STATIC_PACKET);
        list = null;
    }
    
    /**
     * 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
            return COND_REGULAR; // Regular access
        else if (getCastle().getSiege().getIsInProgress()) // Teleporter is on castle ground and siege is in progress
            return COND_BUSY_BECAUSE_OF_SIEGE; // Busy because of siege
        else if (player.getClan() != null) // Teleporter is on castle ground and player is in a clan
        {
            if (getCastle().getOwnerId() == player.getClanId()) // Clan owns castle
                return COND_OWNER; // Owner
        }
        
        return COND_ALL_FALSE;
    }
}

 

  • 0
Posted
55 minutes ago, Kara` said:

How it has no 


activeChar.teleToLocation

I already seen it 3 times and i didn't even hit Control + F. 

There isn't, there is only player.teleToLocation :(

  • 0
Posted
1 hour ago, Kara` said:

How it has no 


activeChar.teleToLocation

I already seen it 3 times and i didn't even hit Control + F. 

and how it must looks like? Because i don't know what to do here.

  • 0
Posted
7 minutes ago, Dhrayn said:

and how it must looks like? Because i don't know what to do here.

 

That some basic knowledge of java. Obviously the variable name (i refer to activeChar) wont be the same. In your case is player.teleToLocation().

 

Now after that you can add the line you can get from BSOE which broadcast the animation.

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • Where I can buy a cheap domain .com? cheapest I found was on Godaddy for 12 euro and Hostinger for 10 euro.
    • Hello everyone, here's a simple and useful idea for any type of server.   This code applies a discount when a player makes a purchase inside a clan’s castle or clan hall, offering a benefit to clan members who own a castle or clan hall. Important: Merchant transactions must be handled through multisell, not buylist. The discount is directly applied within the multisell, so the price shown is already reduced.   "For example, if a scroll costs 1000 Adena and you set a 20% discount in the config, the final price when purchasing inside a castle or clan hall will be 800 Adena."   This code is developed on the public aCis 401 revision.   public static int CLAN_BASE_OWNERSHIP_MERCHANT_DISCOUNT; CLAN_BASE_OWNERSHIP_MERCHANT_DISCOUNT = clans.getProperty("ClanBaseOwnershipMechantDiscount", 20); # If clan owns a clan hall or castle, all members have a discount of X% at merchant transactions (multisell). # Discount applies only inside the base (castle or clan hall). ClanBaseOwnershipMechantDiscount = 20   /** diff --git a/aCis_gameserver/java/net/sf/l2j/gameserver/data/xml/MultisellData.java b/aCis_gameserver/java/net/sf/l2j/gameserver/data/xml/MultisellData.java index 556e111..bbf8e69 100644 --- a/aCis_gameserver/java/net/sf/l2j/gameserver/data/xml/MultisellData.java +++ b/aCis_gameserver/java/net/sf/l2j/gameserver/data/xml/MultisellData.java @@ -101,7 +101,7 @@ do { // send list at least once even if size = 0 - player.sendPacket(new MultiSellList(list, index)); + player.sendPacket(new MultiSellList(list, index, player)); index += PAGE_SIZE; } while (index < list.getEntries().size()); diff --git a/aCis_gameserver/java/net/sf/l2j/gameserver/network/clientpackets/MultiSellChoose.java b/aCis_gameserver/java/net/sf/l2j/gameserver/network/clientpackets/MultiSellChoose.java index 7c82c5b..1654abc 100644 --- a/aCis_gameserver/java/net/sf/l2j/gameserver/network/clientpackets/MultiSellChoose.java +++ b/aCis_gameserver/java/net/sf/l2j/gameserver/network/clientpackets/MultiSellChoose.java @@ -6,6 +6,7 @@ import net.sf.l2j.Config; import net.sf.l2j.gameserver.enums.FloodProtector; import net.sf.l2j.gameserver.enums.StatusType; +import net.sf.l2j.gameserver.enums.ZoneId; import net.sf.l2j.gameserver.enums.items.CrystalType; import net.sf.l2j.gameserver.model.Augmentation; import net.sf.l2j.gameserver.model.actor.Player; @@ -225,6 +226,20 @@ return; } + if (player.isInsideZone(ZoneId.CLAN_HALL) && player.getClan() != null && player.getClan().hasClanHall()) + { + e.setItemCount(e.getItemCount() * (100 - Config.CLAN_BASE_OWNERSHIP_MERCHANT_DISCOUNT) / 100); + if (e.getItemCount() == 0) + e.setItemCount(1); + } + + if (player.isInsideZone(ZoneId.CASTLE) && player.getClan() != null && player.getClan().hasCastle()) + { + e.setItemCount(e.getItemCount() * (100 - Config.CLAN_BASE_OWNERSHIP_MERCHANT_DISCOUNT) / 100); + if (e.getItemCount() == 0) + e.setItemCount(1); + } + if (Config.BLACKSMITH_USE_RECIPES || !e.getMaintainIngredient()) { // if it's a stackable item, just reduce the amount from the first (only) instance that is found in the inventory diff --git a/aCis_gameserver/java/net/sf/l2j/gameserver/network/serverpackets/MultiSellList.java b/aCis_gameserver/java/net/sf/l2j/gameserver/network/serverpackets/MultiSellList.java index 9269b06..c6102a0 100644 --- a/aCis_gameserver/java/net/sf/l2j/gameserver/network/serverpackets/MultiSellList.java +++ b/aCis_gameserver/java/net/sf/l2j/gameserver/network/serverpackets/MultiSellList.java @@ -2,6 +2,9 @@ import static net.sf.l2j.gameserver.data.xml.MultisellData.PAGE_SIZE; +import net.sf.l2j.Config; +import net.sf.l2j.gameserver.enums.ZoneId; +import net.sf.l2j.gameserver.model.actor.Player; import net.sf.l2j.gameserver.model.multisell.Entry; import net.sf.l2j.gameserver.model.multisell.Ingredient; import net.sf.l2j.gameserver.model.multisell.ListContainer; @@ -15,7 +18,9 @@ private boolean _finished; - public MultiSellList(ListContainer list, int index) + private Player _player; + + public MultiSellList(ListContainer list, int index, Player player) { _list = list; _index = index; @@ -28,6 +33,8 @@ } else _finished = true; + + _player = player; } @Override @@ -74,7 +81,14 @@ { writeH(ing.getItemId()); writeH(ing.getTemplate() != null ? ing.getTemplate().getType2() : 65535); - writeD(ing.getItemCount()); + + if (_player.isInsideZone(ZoneId.CLAN_HALL) && _player.getClan() != null && _player.getClan().hasClanHall()) + writeD((ing.getItemCount() * (100 - Config.CLAN_BASE_OWNERSHIP_MERCHANT_DISCOUNT) / 100) < 1 ? 1 : ing.getItemCount() * 80 / 100); + else if (_player.isInsideZone(ZoneId.CASTLE) && _player.getClan() != null && _player.getClan().hasCastle()) + writeD((ing.getItemCount() * (100 - Config.CLAN_BASE_OWNERSHIP_MERCHANT_DISCOUNT) / 100) < 1 ? 1 : ing.getItemCount() * 80 / 100); + else + writeD(ing.getItemCount()); + writeH(ing.getEnchantLevel()); writeD(0x00); // TODO: i.getAugmentId() writeD(0x00); // TODO: i.getManaLeft()  
    • DISCORD : utchiha_market telegram : https://t.me/utchiha_market SELLIX STORE : https://utchihamkt.mysellix.io/ Join our server for more products : https://discord.gg/uthciha-services https://campsite.bio/utchihaamkt
    • WTB EXP ETERNAL 10x new dm.
    • This project is based on the latest public aCis sources (revision 401) and supports a multi-client system (C4 & IL), making it suitable for custom usage but not for retail.   You can configure the SelectedClient option in server.properties and loginserver.properties to switch between C4 and IL.  Both clients are fully synchronized, including login, server selection, packets, and geodata.   Notable Features: - Completed the login and server selection phase for both clients. - Synchronized all packets to support both clients (including some specific features). - Reworked the datapack and SQL files (excluding HTML files) to work seamlessly with both clients. - Added geodata support for both clients. - Adapted nearly all AI, scripts, bosses, HTML, and MULTISELL files to match C4 functionality. - Reduced the maximum clan level from 8 to 5 (C4 feature). - Rewrote clan HTML to remove C5-C6 features.   Disabled the following C5 and C6 features: - Divine Inspiration (C6 feature). - Clan skills and clan reputation points (C5 feature). - Pledge class (C5 feature). - Hero skills (C5 feature). - Dueling system (C6 feature). - Augmentations (C6 feature). - Cursed weapons (C5-C6 feature).   General Improvements: - Performed a general HTML cleanup and optimized features based on the client version. - Added an option to display the remaining time of disabled skills. - Skill timestamps now update when using the skill list.   This flexibility allows you to create a unique progression system tailored to your needs. The price for the diff patch, which can be applied to aCis public sources, is €150. For inquiries, please contact me via PM or Discord (ID: @Luminous).
  • Topics

×
×
  • Create New...