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

    • I’ve seen tools like Find Person Name by Photo come in handy for creators who want to understand their audience better or spot fake accounts trying to piggyback on their growth. Pairing something like that with a solid SMM panel can make your workflow feel way smoother, especially if you're trying to grow without getting tangled in guesswork.
    • Join our discord: https://www.lineage2.cz/discord  
    • You should buy it then I’ll make a discount  
    • Hi everyone,   In 2014, I completely stepped away from developing L2 servers and doing L2J-related work. Since then, I’ve only opened this server about once a year and helped a few servers and individuals for free. I haven’t taken on any paid L2J work since then.   LINEAGE2.GOLD is a project that has reached about Season 6. The first season launched at the end of 2020 and was a fully rebuilt Gold-style server on the Classic client (protocol 110). It featured many custom systems and enhancements. After several seasons, I decided to abandon the Mobius-based project and move to Lucera, as my goal was to get as close as possible to Interlude PTS behavior while still staying on the L2J platform.   The current project was once again completely rebuilt, this time on the Essence client (protocol 306), and is based on Lucera. Because of that, acquiring a license from Deazer is required.   My Lucera extender includes, but is not limited to: Formulas.java Basic anti-bot detection, which proved quite effective, we caught most Adrenaline users using relatively simple server-side logic, logged them, and took staff action. Simple admin account lookup commands based on IP, HWID, and similar identifiers. In-game Captcha via https://lineage2.gold/code, protected by Cloudflare, including admin commands for blacklisting based on aggression levels and whitelisting. Additional admin tools such as Auto-Play status checks, Enchanted Hero Weapon live sync, force add/remove clans from castle sieges, item listeners for live item monitoring, and more. A fully rewritten Auto-Play system with support for ExAutoPlaySetting, while still using the Auto-Play UI wheel, featuring: Debuff Efficiency Party Leader Assist Respectful Hunting Healer AI Target Mode Range Mode Summoner buff support Dwarf mechanics Reworked EffectDispelEffects to restore buffs after Cancellation. Raid Bomb item support. Reworked CronZoneSwitcher. Prime Time Raid Respawn Service. Community Board features such as Top rankings and RB/Epic status. Custom systems for Noblesse, Subclasses, support-class rewards, and much more.   Depending on the deal, the project can include: The lineage2.gold domain The website built on the Laravel PHP framework The server’s Discord Client Interface source Server files and extender source The server database (excluding private data such as emails and passwords)   I’m primarily looking for a serious team to continue the project, as it would be a shame to see this work abandoned. This is not cheap. You can DM me with offers. If you’re wondering why I’m doing this: I’ve felt a clear lack of appreciation from the L2 community, and I’m not interested in doing charity work for people who don’t deserve it. I’m simply not someone who tolerates BS. Server Info: https://lineage2.gold/info Server for test: https://lineage2.gold/download Over 110 videos YouTube playlist: https://www.youtube.com/watch?v=HO7BZaxUv2U&list=PLD9WZ0Nj-zstZaYeWxAxTKbX7ia2M_DUu&index=113
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..

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