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

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

    • This update resaves 25_25 from the original (with sounds) (without the cave below) Some emitter fixes (removed waterfalls with high-poly meshes) The geodata is old, but it works Everything else is unchanged Download P.S. The effect files are taken from the high client for Interlude, so if you're experiencing critical skills, use the default ones for your Version.  
    • GX-Ext Which file of the svn files should i edit to make blow skills to have 100% chance so i can add the settings in the IlExt.ini? because when im changing it from the skilldata.txt it just helps
    • 我们感谢您的 反馈 并希望让服务变得更加 优秀! 如果您使用过我们的服务并愿意分享您的体验(任何体验——积极或建设性),请在Trustpilot上留下评价,并获得$1作为感谢。 链接: https://www.trustpilot.com/review/socnet.pro 如何获得奖励: 1. 前往Trustpilot并留下您的评价 2. 向我们发送发布确认截图,以及带有与评价用户名一致的授权账户截图。 3. 指定哪个商店应收到这 $1 奖励。根据商店不同,可能需要您的用户名/电子邮箱。 您的反馈帮助我们成长,并让项目对社区中的每一位成员变得更好。感谢您与我们同行! 条款: 此活动仅适用于一个唯一用户。不允许多账号行为。 项目有效链接: 数字商品商店(网站): 前往 商店 Telegram 机器人: 前往 – 通过 Telegram 方便访问商店。 虚拟号码服务: 前往 用于购买 Telegram Stars 的 Telegram 机器人: 前往 – 在 Telegram 中快捷且优惠地购买 Stars。 SMM 面板: 前往 – 推广您的社交媒体账户。 我们想向您展示当前的 促销和特别优惠列表 用于购买我们提供的产品与服务: 1. 您可在首次购买时使用优惠码:SOCNET(15% 折扣) 2. 获得 $1 商店余额或 10–20% 折扣——只需在我们网站注册后,按照模板填写您的用户名:“SEND ME BONUS, MY USERNAME IS...”并在我们的论坛主题中发布! 3. 首次启动 SMM 面板可获得 $1:只需在我们的网站(Support)提交主题为 “Get Trial Bonus” 的工单。 4. 我们的 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 ➡ ✉ Email: solomonbog@socnet.store
    • 我们感谢您的 反馈 并希望让服务变得更加 优秀! 如果您使用过我们的服务并愿意分享您的体验(任何体验——积极或建设性),请在Trustpilot上留下评价,并获得$1作为感谢。 链接: https://www.trustpilot.com/review/socnet.pro 如何获得奖励: 1. 前往Trustpilot并留下您的评价 2. 向我们发送发布确认截图,以及带有与评价用户名一致的授权账户截图。 3. 指定哪个商店应收到这 $1 奖励。根据商店不同,可能需要您的用户名/电子邮箱。 您的反馈帮助我们成长,并让项目对社区中的每一位成员变得更好。感谢您与我们同行! 条款: 此活动仅适用于一个唯一用户。不允许多账号行为。 项目有效链接: 数字商品商店(网站): 前往 商店 Telegram 机器人: 前往 – 通过 Telegram 方便访问商店。 虚拟号码服务: 前往 用于购买 Telegram Stars 的 Telegram 机器人: 前往 – 在 Telegram 中快捷且优惠地购买 Stars。 SMM 面板: 前往 – 推广您的社交媒体账户。 我们想向您展示当前的 促销和特别优惠列表 用于购买我们提供的产品与服务: 1. 您可在首次购买时使用优惠码:SOCNET(15% 折扣) 2. 获得 $1 商店余额或 10–20% 折扣——只需在我们网站注册后,按照模板填写您的用户名:“SEND ME BONUS, MY USERNAME IS...”并在我们的论坛主题中发布! 3. 首次启动 SMM 面板可获得 $1:只需在我们的网站(Support)提交主题为 “Get Trial Bonus” 的工单。 4. 我们的 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 ➡ ✉ 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