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

    • looking for someone who has cache cleaner for h5 
    • I’m looking to buy GeoEngine compatible with L2Scripts (Essence). A test server must be provided so I can verify functionality before purchase. DM here or through Telegram: @nick77737
    • fixed !.. thank you veru much @NevesOma  someone lock it
    • OFFICIAL DEVELOPERS Undetected since : Release Updated for last patch : 29/11/2025 After payment you will receive: Product download link1 Activation key for the selected period. Free support for the duration of the product subscription.   ✅AC - Undetected ▸WINDOWS 10/11 (All versions, even 24H2) ▸INTEL / AMD ▸Our software mainly targets player wanting to cheat legitimately. . Precision. Stealth. Performance.   The external ARC Raiders cheats from stern designed to elevate your gameplay without slowing your system. Fully compatible with Windows 10/11 — Intel & AMD ready.   Our Functions: AIMBOT **Enable Aim requires a mandatory confirmation popup, so there’s zero risk of activating it by accident for users who don’t want to use it. Aimbot Aimbot Drone Fov Aim (Draw fov circle) Target Line (Draw targetline) Arrow Fov (Draw arrow fov) Visible Check (Aim visible) Humanize (Aim randomize) Custom Aim Key Fov Value / Smooth Value / Aim Delay Arrow Size & Spacing VISUALS – PLAYERS Box ESP (2D / Corner) Health / Shield Bar Skeleton ESP Distance ESP Name ESP Tracers / Player Lines Visible & Invisible Check Squad Name ESP Draw Eyes Directions Radar ESP Radar Distance ESP Players Flags (corpse/knocked/exit/alive) VISUALS – ENTITY Pickup Base ESP Drone ESP Probe Crashed ESP Apricot ESP Mullein ESP Agave ESP MossRock ESP Crate ESP Salvage Container ESP Rsr Lockers ESP Raiders Cache Esp Bin Trash Esp Shredder Esp Fruit Basket ESP Ammo Box ESP Computer ESP Backpack ESP Leaper ESP Probe ESP Mushroom ESP Cargo Ship ESP Firewall ESP Assault Rifle ESP Battle Rifle ESP SMG ESP Grenade ESP Medical Bag ESP Turret ESP Sentinel Esp Weapon Case Esp Extraction ESP All Weapons ESP Max Distance & Fade distance MISC FOV Arrow Player Count Display Custom Arrow Size & Distance Streamproof (Invisible in recordings & screenshots) External (No injection) Maximum Privacy & Security 24/7 Support Available: replies within minutes Our prices: Prices must be checked directly on our website, as they may change at any time to control sales — however, we remain among the most competitive in the market.   Discover our website   GET GOOD, GET STERN
    • I paid this guy yesterday (i got screen for the payment for proof), he told me that someone will log to send me my adena. Then he said he had some problems and couldn't send me the adena. Waited and waited and waited until he replied that he can't find the guy and he will return the money i gave him. Today still no money returned and he doesn't reply to the discord messages. If he doesn't return the money i paid or send the adena he promised in game, i will report him in every single website and many more. Stay away. I have all the discussion screenshot on discord with him. He knows who i am so he better keep his promise legit.
  • 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