Jump to content

DLDL

Premium Member
  • Posts

    168
  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Everything posted by DLDL

  1. Hi guys , i'm trying to change this java code from java 7 to java 8 who can help me please change it . i want change it , for L2RO-TEAM source /* * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with * this program. If not, see <http://www.gnu.org/licenses/>. */ package com.l2jserver.gameserver.network.serverpackets; import java.util.ArrayList; import java.util.List; import com.l2jserver.ArabicUtilities; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.network.NpcStringId; import com.l2jserver.gameserver.network.SystemMessageId; /** * This class ... * * @version $Revision: 1.4.2.1.2.3 $ $Date: 2005/03/27 15:29:57 $ */ public final class CreatureSay extends L2GameServerPacket { // ddSS private static final String _S__4A_CREATURESAY = "[S] 4A CreatureSay"; private int _objectId; private int _textType; private String _charName = null; private int _charId = 0; private String _text = null; private int _npcString = -1; private List<String> _parameters; /** * @param objectId * @param messageType * @param charName * @param text */ public CreatureSay(int objectId, int messageType, String charName, String text) { _objectId = objectId; _textType = messageType; _charName = charName; _text = text; } public CreatureSay(int objectId, int messageType, int charId, NpcStringId npcString) { _objectId = objectId; _textType = messageType; _charId = charId; _npcString = npcString.getId(); } public CreatureSay(int objectId, int messageType, String charName, NpcStringId npcString) { _objectId = objectId; _textType = messageType; _charName = charName; _npcString = npcString.getId(); } public CreatureSay(int objectId, int messageType, int charId, SystemMessageId sysString) { _objectId = objectId; _textType = messageType; _charId = charId; _npcString = sysString.getId(); } /** * String parameter for argument S1,S2,.. in npcstring-e.dat * @param text */ public void addStringParameter(String text) { if (_parameters == null) _parameters = new ArrayList<>(); _parameters.add(text); } @Override protected final void writeImpl() { writeC(0x4a); writeD(_objectId); writeD(_textType); if (_charName != null) writeS(_charName); else writeD(_charId); writeD(_npcString); // High Five NPCString ID if (_text != null) {//only edit this if (ArabicUtilities.hasArabicLetters(_text)) { String ttext = ArabicUtilities.reshapeSentence(_text); writeS(ttext); } else { writeS(_text); } }//only edit this else { if (_parameters != null) { for (String s : _parameters) writeS(s); } } } @Override public final void runImpl() { L2PcInstance _pci = getClient().getActiveChar(); if (_pci != null) { _pci.broadcastSnoop(_textType,_charName,_text); } } @Override public String getType() { return _S__4A_CREATURESAY; } }
  2. Hi guys , i have error in Frintezza instance , when frintezza reach number 3 transform he didn't spawn , i mean players in instance still in camera mode , who can help me please reply fast i use L2-RO Ava sources .
  3. Hi guys i'm looking for file in client side which let me type russian words who can help me reply fast please .
  4. hi guys i want open 2 gamesevers in one login panel with Fandc ro files .. how ?
  5. sloved .. ty
  6. can you join with me team viewer ? try slove it , please if u can .
  7. i find it in the files
  8. i have this error , please help me fast my server online now , i don't know how this problem happen[29.05.18 05:39:27:607] ERROR npc.NpcTemplate: Unable to create instance of NPC 13042java.lang.IllegalArgumentExceptionat sun.reflect.GeneratedConstructorAccessor53.newInstance(Unknown Source)at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)at java.lang.reflect.Constructor.newInstance(Unknown Source)at l2ro.gameserver.templates.npc.NpcTemplate.getNewInstance(NpcTemplate.java:164)at l2ro.gameserver.model.Spawner.doSpawn0(Spawner.java:203)at l2ro.gameserver.model.HardSpawner.doSpawn(HardSpawner.java:54)at l2ro.gameserver.model.Spawner.init(Spawner.java:129)at l2ro.gameserver.instancemanager.SpawnManager.spawn(SpawnManager.java:202)at l2ro.gameserver.instancemanager.SpawnManager.spawnAll(SpawnManager.java:163)at l2ro.gameserver.GameServer.<init>(GameServer.java:246)at l2ro.gameserver.GameServer.main(GameServer.java:486)
  9. why when i run the game not start ? because i run loader or what ? tell me how i may slove this problem
  10. guys i have this problem when i run server panel and login panel < who know how i may slove it , i wish you tell me .
  11. ofc , give me your skype or discord for fast contact .
  12. i'm looking for any reply ..
  13. hi guys i'm looking for this website style if it's share or it's not .
  14. hello guys i'm trying to buy best java files for h5 server mid rate , please help me to find it .
  15. ty .. can i contact with you ? please check my pm
  16. i need to dev connect to my pc with teamviewer .. who care about help me .. please contact me .
  17. there h5 l2 off files shared ? i'm looking for it :D
  18. for fast support contact me .. Discord : HeliosQQ#1289 < Best Way Online 24/7 Skype : live:rasood.1515
  19. Files have macro ? i mean it's on "Spam"
  20. very good team .. you can test the files
  21. events don't have any problems i test it yesterday .. i'm sure bro . you must register with 2 players at least .. so if you want test it by yourself you must disable hwid engine for fight club you can find it in config/events/events.ini # Should only 1 player per HWID be able to join Event at the time? FightClubHwidCheck = false
×
×
  • 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