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

    • My official facebook profile!: https://www.facebook.com/spectrumL2 Specifications: Revamped L2JACIS revision FROM the core Private project!!! Revision that has been receiving corrections for over 3 years!!! Events already installed in the revision: TVT CTF KTB PARTY FARM SPOIL EVENT CRAZY RATES TOURNAMENT TIME ZONE (INSTANCE) All working correctly!!! SIEGE ESSENTIAL FEATURES: Walls fix Gates fix Flags fix 100% functional: OLYMPIADS: Implemented settings Hero receives enchanted Weapons with equal status PvP Weapons Optional /true/false Hero can acquire all Hero Weapons Optional true/false OTHER IMPLEMENTATIONS: Teleport fixed (directly to Giran) Teleport effect classic Vip skins vip collor name Pack NPCs with effect already configured BOSES already configured Mobs already configured CLASS BALANCE SPECIAL SYSTEM We have a SPECIAL system developed for Class Balance with only 1 digit in XML %tage of configurable debuffs Player limitation system in BOSES or PvP zones BS blocking system in FLEG zones or events Among others dozens of improvements made in the review... price: 390 USD !  OBS: WE CAN CHANGE THE BANNER AND NAME OF THE SERVICE TO THE ONE OF YOUR PREFERENCE BUT THE SETTINGS MUST BE KEPT ANY CHANGES REQUIRE ADDITION        
    • Server is Online – 1,000+ Active Players! We’re excited to announce the addition of a Europe Proxy to improve connectivity for our EU players! Clans can now benefit from VIP Access to help you catch up faster. 🎯 If you're a clan leader with at least 9 active members, join our Discord and open a ticket to claim your VIP rewards!  
    • The Telegram team is rolling out a new batch of Stars-only gifts you’ll be able to mint as NFTs. Don’t miss your chance to join the next Telegram trend and earn from it! Buy Telegram Stars cheap and KYC-free 1 Star from $0.0149 (min. 50 Stars, bulk discounts available) Promo code STARS5 — 5 % off Pay any way you like: bank cards · crypto · other popular methods How to purchase: ➡Online Store — Click ➡ Telegram bot — Click Other services: ➡ SMM panel — Click Regular buyers get extra discounts and promo codes. Support: ➡ Telegram: https://t.me/solomon_bog ➡ Telegram channel: https://t.me/accsforyou_shop ➡ Discord: https://discord.gg/y9AStFFsrh ➡ WhatsApp: https://wa.me/79051904467 ➡ Email: solomonbog@socnet.store Use these contacts to discuss wholesale orders, partnerships (current list: https://socnet.bgng.io/partners) or to become a supplier. SocNet — your shop for digital goods and premium subscriptions
    • The Telegram team is rolling out a new batch of Stars-only gifts you’ll be able to mint as NFTs. Don’t miss your chance to join the next Telegram trend and earn from it! Buy Telegram Stars cheap and KYC-free 1 Star from $0.0149 (min. 50 Stars, bulk discounts available) Promo code STARS5 — 5 % off Pay any way you like: bank cards · crypto · other popular methods How to purchase: ➡Online Store — Click ➡ Telegram bot — Click Other services: ➡ SMM panel — Click Regular buyers get extra discounts and promo codes. Support: ➡ Telegram: https://t.me/solomon_bog ➡ Telegram channel: https://t.me/accsforyou_shop ➡ Discord: https://discord.gg/y9AStFFsrh ➡ WhatsApp: https://wa.me/79051904467 ➡ Email: solomonbog@socnet.store Use these contacts to discuss wholesale orders, partnerships (current list: https://socnet.bgng.io/partners) or to become a supplier. SocNet — your shop for digital goods and premium subscriptions
  • 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