Jump to content

Question

Posted

kalimera paidia..xrisimopiw l2j dot pack,ola mia xara doulevoune alla yparxei ena bug sthn oly,px ama paizoun 1 match kai o enas xasei,meta mporei na kanei rr h ctrl+alt+del h dc to modem t kai na mhn xasei oute 1 ponto,kai as eixe xasei sto match.....dn metraei ka8olou to match,mipos 3erete ti mporw na kanw?

7 answers to this question

Recommended Posts

  • 0
Posted

1 /*

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

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

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

5  * any later version.

6  *

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

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

9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the

10  * GNU General Public License for more details.

11  *

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

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

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

15  * 02111-1307, USA.

16  *

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

18  */

19 package com.l2dot.gameserver.network.clientpackets;

20 

21 import java.util.logging.Logger;

22 

23 import com.l2dot.Config;

24 import com.l2dot.gameserver.Olympiad;

25 import com.l2dot.gameserver.SevenSignsFestival;

26 import com.l2dot.gameserver.communitybbs.Manager.RegionBBSManager;

27 import com.l2dot.gameserver.datatables.SkillTable;

28 import com.l2dot.gameserver.model.L2Party;

29 import com.l2dot.gameserver.model.actor.instance.L2PcInstance;

30 import com.l2dot.gameserver.model.entity.TvTEvent;

31 import com.l2dot.gameserver.network.L2GameClient;

32 import com.l2dot.gameserver.network.SystemMessageId;

33 import com.l2dot.gameserver.network.L2GameClient.GameClientState;

34 import com.l2dot.gameserver.network.serverpackets.ActionFailed;

35 import com.l2dot.gameserver.network.serverpackets.CharSelectInfo;

36 import com.l2dot.gameserver.network.serverpackets.RestartResponse;

37 import com.l2dot.gameserver.network.serverpackets.SystemMessage;

38 import com.l2dot.gameserver.taskmanager.AttackStanceTaskManager;

39 

40 

41 /**

42  * This class ...

43  *

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

45  */

46 public final class RequestRestart extends L2GameClientPacket

47 {

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

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

50 

51 

52    @Override

53        protected void readImpl()

54    {

55        // trigger

56    }

57 

58    @Override

59        protected void runImpl()

60    {

61        L2PcInstance player = getClient().getActiveChar();

62        if (player == null)

63        {

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

65            return;

66        }

67 

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

69        {

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

71            return;

72        }

73                 

74                if (player.isTeleporting()) { 

75                        player.abortCast(); 

76                        player.setIsTeleporting(false); 

77                }                       

78                 

79        player.getInventory().updateDatabase();

80 

81        if (player.getPrivateStoreType() != 0)

82        {

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

84            return;

85        }

86 

87        if (player.getActiveRequester() != null)

88        {

89            player.getActiveRequester().onTradeCancel(player);

90            player.onTradeCancel(player.getActiveRequester());

91        }

92 

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

94        {

95            if (Config.DEBUG)

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

97 

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

99            player.sendPacket(new ActionFailed());

100            return;

101        }

102                 

103                // Prevent player from restarting during olympiad games

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

105                {

106                    player.sendMessage("You cannot logout while you are in olympiad mode^^");

107                        return;

108                }       

109 

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

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

112        // is not longer a participant.

113        if (player.isFestivalParticipant())

114        {

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

116            {

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

118                player.sendPacket(new ActionFailed());

119                return;

120            }

121            L2Party playerParty = player.getParty();

122 

123            if (playerParty != null)

124                player.getParty().broadcastToPartyMembers(

125                                                          SystemMessage.sendString(player.getName()

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

127        }

128        if (player.isFlying())

129        {

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

131        }

132 

133        L2GameClient client = getClient();

134 

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

136        player.setClient(null);

137 

138        TvTEvent.onLogout(player);

139        RegionBBSManager.getInstance().changeCommunityBoard();

140 

141        // removing player from the world

142        player.deleteMe();

143        L2GameClient.saveCharToDisk(client.getActiveChar());

144 

145 

146        getClient().setActiveChar(null);

147 

148        // return the client to the authed status

149        client.setState(GameClientState.AUTHED);

150 

151        RestartResponse response = new RestartResponse();

152        sendPacket(response);

153 

154        // send char list

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

156                                                                                    client.getSessionId().playOkID1);

157        sendPacket(cl);

158        client.setCharSelection(cl.getCharInfo());

159    }

160 

161    /* (non-Javadoc)

162      * @see com.l2dot.gameserver.clientpackets.ClientBasePacket#getType()

163      */

164    @Override

165        public String getType()

166    {

167        return _C__46_REQUESTRESTART;

168    }

169 }

 

  • 0
Posted

trunk/L2Dot_IL_GameServer/java/com/l2dot/gameserver/network/clientpackets/RequestRestart.java

 

 

100 100             return;  

101 101         }  

 102                  

 103                 // Prevent player from restarting during olympiad games  

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

 105                 {  

 106                     player.sendMessage("You cannot logout while you are in olympiad mode^^");  

 107                         return;  

 108                 }        

102 109  

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

 

 

Elpizw Na Se Help Man  Auta Vrika Einai UnTeSteD Alla prepei na douleuoun

  • 0
Posted

trunk/L2Dot_IL_GameServer/java/com/l2dot/gameserver/network/clientpackets/RequestRestart.java

 

 

100 100            return; 

101 101        } 

  102                 

  103                // Prevent player from restarting during olympiad games 

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

  105                { 

  106                    player.sendMessage("You cannot logout while you are in olympiad mode^^"); 

  107                        return; 

  108                }       

102 109 

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

 

 

Elpizw Na Se Help Man  Auta Vrika Einai UnTeSteD Alla prepei na douleuoun

ty re file alla auto einai gia na mn mporoun na kanoune rr,ston server m kanoun contrl alt delete kai vgenoun kai etsi paei tie to match oti k na exei ginei...

  • 0
Posted

re ci koita katarxin prin kati meres gurisa apo diakopes k eida pos i dot ksanaeklise tora dn 3erw t paizei k g na evazes to code ena update xreiazotane tora dn ginetai tpt omws dn exo to java patch na s dwsw na to kaneis apply soz

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

    • I wouldn't expect something less, since you work with Psadek (or I maybe mistake you with NightW0lf from itopz, in that case soz) Let's throw rocks at Java Golds and elevate "original L2OFF Golds", no?
    • We are delighted to announce our partnership with the leading resource, Active Anticheat, specializing in protection against bot programs, clickers, and additional modules for the game client that enhance the experience for both you and the players!   When you purchase Active Anticheat for our product, you will also receive a $50 discount.   Here's a brief overview of the features of Active Anticheat: Best protection against bots, including private and premium versions. Window limitation. HWID spoofing protection. Virtual machine protection. File hash protection for client files, preventing players from modifying them (e.g., interface files). Encryption of any game files. Integration with Discord to attract new players! Additional plugins: - Window with saved player logins/passwords. Players no longer need to enter them every time! - HWID sending to the game server. - Game window optimizer for quick switching. - Background FPS adjustment. - Window name customization in the format "%character_name% - %server_name%". - Ctrl+C/V permission. - Login and password saving (for Interlude -> High Five). - Launching the browser via server packets. - Launching interface events via server packets. - Interlude: fixing a known game bug (History: UpdateAnimation <- AActor::Tick <- TickAllActors <- ULevel::Tick <- (NetMode=0) <- TickLevel <- UGameEngine::Tick <- UpdateWorld <- MainLoop). - Interlude: debuff feature. 9) All of this is available without modifying the game server code (some plugins may require minor changes). Take note of newest plugin, which is highly useful: Guides section
    • The Lucera2 Multiprotocol is an advanced server branch for Lineage 2 that enables seamless support for multiple client versions on a single server instance. This allows players to connect and play using either the legacy (old) client or the newer Classic client simultaneously, without any compatibility issues or loss of functionality. Key Benefits Dual Client Support: Both the old Interlude client and Classic: Secret of Empire 2.6 client can run concurrently on the same server. All features from the Classic client (e.g., enhanced UI, new mechanics) remain fully available, while the old client retains its alternative features (e.g., simplified interfaces for lower-end hardware). Expanded Player Base: Ideal for regions with limited access to modern gaming setups, as it accommodates a wider range of devices and preferences, merging Legacy and Classic communities into one forum section for unified discussions. No Functionality Gaps: Extensive testing ensures zero disruptions—players on either client experience complete game integrity, including quests, PvP, raids, and custom Lucera2 subsystems. You can fully test and explore all aspects of Multiprotocol on the dedicated Test Server. Supported Protocols C6 (Old Client): Protocol versions 740–770. Classic Client (Secret of Empire 2.6): Protocol versions 166–192.
    • Connect to the server you need to >>>download<<< game client launch from /system_en/. Login server setup on auto registration, admin rights in game by default . Or you can use a patch specifying the l2.ini Connect to address classic.lucera2.com if you already have a game client Download updated patch All major/minor subsystems operate in a proper view. Absolutely ready to combat the server.
  • 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