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.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • Trust and Honesty   We don’t need to brag - what matters is that you actually feel the service works the way it should. No surprises, no stress. With Vibe SMS, you can focus on your tasks knowing everything runs smoothly. Like having a friend by your side calm, reliable, and without unnecessary words.   Website link — https://vibe-sms.net/ Our Telegram channel — https://t.me/vibe_sms
    • The old Trances packs were built using Java 7, which is outdated. Our server is running on the latest Java version, fully up-to-date for 2025
    • Experience L2Gold like never before – available ONLY on Saturdays & Sundays! Custom Armors: Dynasty, Apella Custom Weapons: L2Gold Weapons Custom Jewelry: L2Gold Jewelry Custom Teleport System & AIO Buffer Custom Zones, NPCs & Raidbosses This is not just another private server – it’s a limited-time battleground for the ultimate L2 experience! Play only on weekends Website: https://l2kandra.online/ Info & Contact: https://www.facebook.com/profile.php?id=61578869175323  
    • 突发新闻! Twitter Premium(推特高级版) 现以优惠价发售!立即尝试 — 限时优惠! ➡ Twitter Premium X 订阅(适用于您的推特账户),可选 1 个月 / 1 年(任选)。需要登录授权您的推特账户。价格:每月 $7–13(每年 $75) ➡ Twitter X Premium Plus 订阅 + GROK AI 助手(适用于您的推特账户),可选 1 个月 / 1 年(任选)。需要登录授权您的推特账户。价格:每月 $48–55(每年 $480) ➡ 2010–2023 年老推特账号,带蓝色认证标志(Tier 1/2/3 国家)| 提供完整访问权限(含登录名、密码和令牌)| 价格:起价 $9 ➡ 2010–2023 年老推特 NFT 账号,带蓝色认证标志(Tier 1/2/3 国家)| 提供完整访问权限(含登录名、密码和令牌)| 价格:起价 $9 ➡ 2010–2023 年老推特账号,带蓝色认证标志 + 真实粉丝(100–20000,可自选)| Tier 1/2/3 国家 | 提供完整访问权限(含登录名、密码和令牌)| 支持补充:30+ 天 | 价格:起价 $9.5 ➡ 2010–2023 年老推特账号,带广告管理器(ADS Manager)和蓝色认证标志,并绑定信用卡 | 区域:Tier 1 国家 | 提供完整访问权限(含登录名、密码和令牌)| 价格:起价 $35 您可以在我们的网站商店或通过 Telegram 机器人购买! ➡ 数字商品商店(网站):前往 ➡ 商店 Telegram 机器人:前往 ➡ Telegram Stars 购买机器人:前往 ➡ SMM 面板:前往 – 推广您的社交媒体账户。 我们为您呈现最新的优惠与特别活动,用于购买我们平台的商品和服务: 1. 使用优惠码 OCTOBER2025(8% 折扣)在十月于我们的网站或机器人中购物!首次购买还可使用优惠码 SOCNET(15% 折扣) 2. 注册后在我们网站的论坛主题中按以下格式留言,即可获得 $1 商店余额或 10–20% 折扣:"SEND ME BONUS, MY USERNAME IS..." 3. 首次试用 SMM 面板即可获得 $1:只需在网站支持中心提交标题为 “Get Trial Bonus” 的工单。 4. 我们的 Telegram 频道与 Telegram Stars 购买机器人每周举行 Telegram Stars 抽奖活动! 新闻资讯: ➡ Telegram 频道:https://t.me/accsforyou_shop✅ ➡ WhatsApp 频道:https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t✅ ➡ Discord 服务器:https://discord.gg/y9AStFFsrh✅ 联系方式与支持: ➡ Telegram:https://t.me/socnet_support✅ ➡ WhatsApp:https://wa.me/79051904467✅ ➡ Discord:socnet_support ✅ ➡ ✉ 邮箱:solomonbog@socnet.store ✅
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock