Jump to content
  • 0

[Help]Restart In oly


Question

Posted

Ξέρει κανένας το Java code που όταν κάποιος από τους δύο Players κάνει restart χάνει τους πόντους?Έκανα search δεν βρήκα κάτι...Pack=L2j(Compiled Pack)

 

 

UPDATE:Δεν θέλω να μην τους επιτρέπει να κάνουν restart.Θέλω όταν κάνουν restart να χάνουν points....

15 answers to this question

Recommended Posts

  • 0
Posted

Ορίστε,βάλε αυτό για να μην μπορεί να κάνει restart(Είναι ποιο εύκολο από αυτό που ζητάς + ποιο αποτελεσματικο)

 

requestrestart.java

if (activeChar.isInOlympiadMode())
  {
     activeChar.sendMessage("You cant restart atm noob");
     return false;
   }

  • 0
Posted

Ορίστε,βάλε αυτό για να μην μπορεί να κάνει restart(Είναι ποιο εύκολο από αυτό που ζητάς + ποιο αποτελεσματικο)

 

requestrestart.java

if (activeChar.isInOlympiadMode())ama kanei omws o allos kleisimo apo deiaxirish ergasiwn?den tha trwei katethian critical?
  {
     activeChar.sendMessage("You cant restart atm noob");
     return false;
   }

ama omws kanei kleisimo apo  diaxirish ergasiwn den tha trwei critical?
  • 0
Posted

Ορίστε,βάλε αυτό για να μην μπορεί να κάνει restart(Είναι ποιο εύκολο από αυτό που ζητάς + ποιο αποτελεσματικο)

 

requestrestart.java

if (activeChar.isInOlympiadMode())
  {
     activeChar.sendMessage("You cant restart atm noob");
     return false;
   }

σκετο return; οχι return false,θα το παρει λαθος.Τωρα για το αλλο εγω νομιζω που αυτος που βγει,αυτος χανει ποντους :/
  • 0
Posted

σκετο return; οχι return false,θα το παρει λαθος.Τωρα για το αλλο εγω νομιζω που αυτος που βγει,αυτος χανει ποντους :/

dld ti code akrivws na valw?
  • 0
Posted

ayto edw 

 

if (activeChar.isInOlympiadMode())
  {
     activeChar.sendMessage("You cant restart atm noob");
     return false;
   }

 

 

alla etsi

 

if (activeChar.isInOlympiadMode())
  {
     activeChar.sendMessage("You cant restart atm noob");
     return;
   }

 

ektos apo ayto  ama 8umamai kala ama o char to  kanei ayto to bug pali tha kanei point

  • 0
Posted

ayto edw 

 

if (activeChar.isInOlympiadMode())
  {
     activeChar.sendMessage("You cant restart atm noob");
     return false;
   }

 

 

alla etsi

 

if (activeChar.isInOlympiadMode())
  {
     activeChar.sendMessage("You cant restart atm noob");
     return;
   }

 

ektos apo ayto  ama 8umamai kala ama o char to  kanei ayto to bug pali tha kanei point

se pia seira to grafw?
  • 0
Posted

Vale edw to arxio sou na dw  se poia sira na to valeis...

Den asxoloume me IL pack mono me Freya

/*

* This program is free software; you can redistribute it and/or modify

* it under the terms of the GNU General Public License as published by

* the Free Software Foundation; either version 2, or (at your option)

* any later version.

*

* This program is distributed in the hope that it will be useful,

* but WITHOUT ANY WARRANTY; without even the implied warranty of

* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the

* GNU General Public License for more details.

*

* You should have received a copy of the GNU General Public License

* along with this program; if not, write to the Free Software

* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA

* 02111-1307, USA.

*

* http://www.gnu.org/copyleft/gpl.html

*/

package net.sf.l2j.gameserver.clientpackets;

 

import java.util.logging.Logger;

 

import net.sf.l2j.Config;

import net.sf.l2j.gameserver.Olympiad;

import net.sf.l2j.gameserver.SevenSignsFestival;

import net.sf.l2j.gameserver.communitybbs.Manager.RegionBBSManager;

import net.sf.l2j.gameserver.datatables.SkillTable;

import net.sf.l2j.gameserver.model.L2Party;

import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;

import net.sf.l2j.gameserver.model.entity.TvTEvent;

import net.sf.l2j.gameserver.network.L2GameClient;

import net.sf.l2j.gameserver.network.SystemMessageId;

import net.sf.l2j.gameserver.network.L2GameClient.GameClientState;

import net.sf.l2j.gameserver.serverpackets.ActionFailed;

import net.sf.l2j.gameserver.serverpackets.CharSelectInfo;

import net.sf.l2j.gameserver.serverpackets.RestartResponse;

import net.sf.l2j.gameserver.serverpackets.SystemMessage;

import net.sf.l2j.gameserver.taskmanager.AttackStanceTaskManager;

 

/**

* This class ...

*

* @version $Revision: 1.11.2.1.2.4 $ $Date: 2005/03/27 15:29:30 $

*/

public final class RequestRestart extends L2GameClientPacket

{

    private static final String _C__46_REQUESTRESTART = "[C] 46 RequestRestart";

    private static Logger _log = Logger.getLogger(RequestRestart.class.getName());

 

 

    @Override

protected void readImpl()

    {

    // trigger

    }

 

    @Override

protected void runImpl()

    {

        L2PcInstance player = getClient().getActiveChar();

        if (player == null)

        {

            _log.warning("[RequestRestart] activeChar null!?");

            return;

        }

 

        if (player.isInOlympiadMode() || Olympiad.getInstance().isRegistered(player))

        {

            player.sendMessage("You cant logout in olympiad mode");

            return;

        }

 

        player.getInventory().updateDatabase();

 

        if (player.getPrivateStoreType() != 0)

        {

            player.sendMessage("Cannot restart while trading");

            return;

        }

 

        if (player.getActiveRequester() != null)

        {

            player.getActiveRequester().onTradeCancel(player);

            player.onTradeCancel(player.getActiveRequester());

        }

 

        if (AttackStanceTaskManager.getInstance().getAttackStanceTask(player))

        {

            if (Config.DEBUG)

                _log.fine("Player " + player.getName() + " tried to logout while fighting.");

 

            player.sendPacket(new SystemMessage(SystemMessageId.CANT_RESTART_WHILE_FIGHTING));

            player.sendPacket(new ActionFailed());

            return;

        }

 

        // Prevent player from restarting if they are a festival participant

        // and it is in progress, otherwise notify party members that the player

        // is not longer a participant.

        if (player.isFestivalParticipant())

        {

            if (SevenSignsFestival.getInstance().isFestivalInitialized())

            {

                player.sendPacket(SystemMessage.sendString("You cannot restart while you are a participant in a festival."));

                player.sendPacket(new ActionFailed());

                return;

            }

            L2Party playerParty = player.getParty();

 

            if (playerParty != null)

                player.getParty().broadcastToPartyMembers(

                                                          SystemMessage.sendString(player.getName()

                                                              + " has been removed from the upcoming festival."));

        }

        if (player.isFlying())

        {

        player.removeSkill(SkillTable.getInstance().getInfo(4289, 1));

        }

 

        L2GameClient client = getClient();

 

        // detach the client from the char so that the connection isnt closed in the deleteMe

        player.setClient(null);

 

        TvTEvent.onLogout(player);

        RegionBBSManager.getInstance().changeCommunityBoard();

 

        // removing player from the world

        player.deleteMe();

        L2GameClient.saveCharToDisk(client.getActiveChar());

 

 

        getClient().setActiveChar(null);

 

        // return the client to the authed status

        client.setState(GameClientState.AUTHED);

 

        RestartResponse response = new RestartResponse();

        sendPacket(response);

 

        // send char list

        CharSelectInfo cl = new CharSelectInfo(client.getAccountName(),

          client.getSessionId().playOkID1);

        sendPacket(cl);

        client.setCharSelection(cl.getCharInfo());

    }

 

    /* (non-Javadoc)

    * @see net.sf.l2j.gameserver.clientpackets.ClientBasePacket#getType()

    */

    @Override

public String getType()

    {

        return _C__46_REQUESTRESTART;

    }

}

  • 0
Posted

oriste file mou pes mou ama einai ok

    if (player.getActiveRequester() != null)
        {
            player.getActiveRequester().onTradeCancel(player);
            player.onTradeCancel(player.getActiveRequester());
        }
+   if (activeChar.isInOlympiadMode())
+   {
+     activeChar.sendMessage("You cant restart atm noob");
+    return;
+   }

  • 0
Posted

oriste file mou pes mou ama einai ok

    if (player.getActiveRequester() != null)
        {
            player.getActiveRequester().onTradeCancel(player);
            player.onTradeCancel(player.getActiveRequester());
        }
+   if (activeChar.isInOlympiadMode())
+   {
+     activeChar.sendMessage("You cant restart atm noob");
+    return;
+   }

gt m vgazei error ?:(
  • 0
Posted

Ξέρει κανένας το Java code που όταν κάποιος από τους δύο Players κάνει restart χάνει τους πόντους?Έκανα search δεν βρήκα κάτι...Pack=L2j(Compiled Pack)

 

 

UPDATE:Δεν θέλω να μην τους επιτρέπει να κάνουν restart.Θέλω όταν κάνουν restart να χάνουν points....

(sorry for spam)

Guest
This topic is now closed to further replies.


  • Posts

    • Purchase Telegram Stars at a favorable price with minimal markup. New auctions from Telegram are expected, and our bot will help you prepare in advance. Active links: Telegram bot for purchasing Telegram Stars: Go to – fast and profitable purchase of Stars in Telegram. Other services: Digital goods store (Website): Go to Store Telegram bot: Go to – convenient access to the store via the Telegram messenger. Virtual numbers service: Go to SMM Panel: Go to – promotion of your social media accounts. We want to present to you the current list of promotions and special offers for purchasing products and services of our service: 1. You can use a promo code for your first purchase: SOCNET (15% discount) 2. Get $1 on your store balance or a 10–20% discount — just send your username after registering on our website using the following template: "SEND ME BONUS, MY USERNAME IS..." — you need to write this in our forum thread! 3. Get $1 for the first trial launch of the SMM Panel: just open a ticket with the subject “Get Trial Bonus” on our website (Support). 4. Weekly Telegram Stars giveaways in our Telegram channel and in our bot for purchasing stars! News: ➡ Telegram channel: https://t.me/accsforyou_shop ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord server: https://discord.gg/y9AStFFsrh Contacts and support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • Purchase Telegram Stars at a favorable price with minimal markup. New auctions from Telegram are expected, and our bot will help you prepare in advance. Active links: Telegram bot for purchasing Telegram Stars: Go to – fast and profitable purchase of Stars in Telegram. Other services: Digital goods store (Website): Go to Store Telegram bot: Go to – convenient access to the store via the Telegram messenger. Virtual numbers service: Go to SMM Panel: Go to – promotion of your social media accounts. We want to present to you the current list of promotions and special offers for purchasing products and services of our service: 1. You can use a promo code for your first purchase: SOCNET (15% discount) 2. Get $1 on your store balance or a 10–20% discount — just send your username after registering on our website using the following template: "SEND ME BONUS, MY USERNAME IS..." — you need to write this in our forum thread! 3. Get $1 for the first trial launch of the SMM Panel: just open a ticket with the subject “Get Trial Bonus” on our website (Support). 4. Weekly Telegram Stars giveaways in our Telegram channel and in our bot for purchasing stars! News: ➡ Telegram channel: https://t.me/accsforyou_shop ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord server: https://discord.gg/y9AStFFsrh Contacts and support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • Purchase Telegram Stars at a favorable price with minimal markup. New auctions from Telegram are expected, and our bot will help you prepare in advance. Active links: Telegram bot for purchasing Telegram Stars: Go to – fast and profitable purchase of Stars in Telegram. Other services: Digital goods store (Website): Go to Store Telegram bot: Go to – convenient access to the store via the Telegram messenger. Virtual numbers service: Go to SMM Panel: Go to – promotion of your social media accounts. We want to present to you the current list of promotions and special offers for purchasing products and services of our service: 1. You can use a promo code for your first purchase: SOCNET (15% discount) 2. Get $1 on your store balance or a 10–20% discount — just send your username after registering on our website using the following template: "SEND ME BONUS, MY USERNAME IS..." — you need to write this in our forum thread! 3. Get $1 for the first trial launch of the SMM Panel: just open a ticket with the subject “Get Trial Bonus” on our website (Support). 4. Weekly Telegram Stars giveaways in our Telegram channel and in our bot for purchasing stars! News: ➡ Telegram channel: https://t.me/accsforyou_shop ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord server: https://discord.gg/y9AStFFsrh Contacts and support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • 亲爱的合作伙伴! 目前我们非常需要以下项目: ➡ WhatsApp 老账户 ➡ Twitter 带粉丝和帖子账户(老账户) 请通过以下联系方式与我们联系。我们很高兴与您合作! 我们项目的有效链接: 数字商品商店(网站): 前往 商店 Telegram 机器人: 前往 – 通过 Telegram 信使方便访问商店。 虚拟号码服务: 前往 用于购买 Telegram Stars 的 Telegram 机器人: 前往 – 在 Telegram 中快速且优惠地购买 Stars。 SMM 面板: 前往 – 推广您的社交媒体账户。 联系方式和支持: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
    • Dear partners! At the moment we are in great need of the following positions: ➡ WhatsApp OLD Accounts ➡ Twitter accounts with followers and posts (old accounts) Contact us via the details below. We will be glad to cooperate! Active links to our projects: Digital goods store (Website): Go to Store Telegram bot: Go to – convenient access to the store via the Telegram messenger. Virtual numbers service: Go to Telegram bot for purchasing Telegram Stars: Go to – fast and profitable purchase of Stars in Telegram. SMM Panel: Go to – promotion of your social media accounts. Contacts and support: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: 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