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

    • You invent yourself a life - bad for you, one of the inner core dev, fernandopm, which worked hard over aCis quests from 2011 to 2016 is argentinian. I teached him back in time to work and make proper quests. My dev team comes from 10+ countries and I'm myself french. "Racist/nationalist" card ? Not working bro.   Not sure why I should thank you to send me questions, and regarding bug reports, so far, I got none of yours in either discord, gitlab, or forums. I'm sorry if you feel "ignored", but that's more a psychanalyst you need to speak with if you put emotions towards someones' appreciation over a forum. I never ignore a bug report, and if so (like skills reports), it's because I got a bigger plan (skills refactor, in that case). In any case, I delivered cookies for the bug report/fix, even if it dated of months, with proper credits over changesets. "Victim card" ? Not really working, but ok, maybe you're "emotional".   I barely make money out of aCis, for the spent time - simply selling my services, or even coding/administrating a minecraft/L2J server would make far more money. Breaking intentionally things would be stupid. If you don't understand I'm not the only one working on that pack, I can't help you. Also, the scale of edits is sometimes extreme - AI L2OFF ? 1800 files added. How do you want everything works in a single shot ? "Exploiting noobz for money" card ? Still not working, or I'm a terrible businessman.   Meanwhile - you shadow advertise your project, L2JOne (since 2017 btw) - you should maybe start by the beginning saying you're a competitor and aCis is actually a spike in your foot. That also explains why you act like that. RusAcis got the exact same strategy, speaking bad of me, saying they got unique fixes (you speak about I break things, they break and recode things 4 times sometimes, btw), but successfully reselling latest revision with poorly executed stuff. "aCis is good, Tryskell is ok, but I solve all issues in extreme low time so I can piss over him" card ? Mmmmhhhh.   Our conversation ends here if you want, I don't force ppl to speak with me if they don't want - hopefully, people would understand I'm not the arrogant one and the one who doesn't want to talk, or even collaborate. :). I understand you got your own project and got no will to improve aCis.   NOTE : I'm extremely happy for your call of ExShowServerPrimitive with getValidGeoLocation, extremely impressive. Arrogant, no. Sarcastic ? Maybe.   Good night everyone.
    • Hi. @GX-Ext, svn does not work. is there anywhere else where we can get source code? Thank you so much.
    • new synchronized movement with neoengine obstacle correction I reported bugs to you and you completely ignored me because of my nationality. Yes, you were arrogant towards me. I sent you many questions on your forum and you didn't even thank me or say anything about it. I stopped using your updates a long time ago and focused on fixing my own aCis because you intentionally break the code. Just buy versions 401 to 409; you intentionally broke a lot of things for "IDIOTS" to buy from you. Anyway, our conversation ends here. Good luck with renaming and organizing; that probably makes you more money than fixing the basics. With this debug I created valid notes for monsters and NPCs, fixing the maxZ that you broke, and also corrected fly/water movements, making them more efficient. I only spent 2 months and I'm using Geoengine l2.j   NOTE: I'm not selling my GeoEngine, don't waste your time sending messages!
    • I'm on that same situation, but hey after almost 3600 commits it's almost playable! 😛
  • 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