Jump to content

Recommended Posts

Posted

update

 

Fix Trade pou eixate problima kai eixa 3exasi na anebaso to Dm event gi ayto mporei kapoia paidia na eixan kapoia error

 

Timeline

Flash 9a mpwrouses na m apantisis sto mnm pou s exw afisi gia t topic s? Thnx
Posted

Flash 9a mpwrouses na m apantisis sto mnm pou s exw afisi gia t topic s? Thnx

 

exo fix ayta me ta phx pou einai gnosta exo perasei kai ena java so warehouse  pou otan baleis items kai  pas na ta pareis 8elei 10s exo fix polla pragmata mporeis na deis kai st o timeline pou  edwsa poio pano  to noobish k ta server attacker  den ta exo fix akoma aytes tis meres 8a ta fix kai 8a einai ok to pack :P

Posted

exo fix ayta me ta phx pou einai gnosta exo perasei kai ena java so warehouse  pou otan baleis items kai  pas na ta pareis 8elei 10s exo fix polla pragmata mporeis na deis kai st o timeline pou  edwsa poio pano  to noobish k ta server attacker  den ta exo fix akoma aytes tis meres 8a ta fix kai 8a einai ok to pack :P

mporo na sta fix ego ;)

Posted

flash m vgazei ena error sto eclipse... sto com.Flash.gameserver.hadler kai akrivws sto AdminComandHadler.java ... ti error einai afto??? lookareto mia plzzz i pes m mipws einai diko m prob...

Posted
package com.Flash.gameserver.handler;

import java.io.FileInputStream;
import java.io.InputStream;
import java.util.Map;
import java.util.Properties;
import java.util.logging.Logger;

import javolution.util.FastMap;
import com.Flash.Config;
import com.Flash.gameserver.handler.admincommandhandlers.AdminDMEngine;   <------- edw einai to error..
import com.Flash.gameserver.model.actor.instance.L2PcInstance;

/**
* This class ...
*
* @version $Revision: 1.1.4.5 $ $Date: 2005/03/27 15:30:09 $
*/
public class AdminCommandHandler
{
private static Logger _log = Logger.getLogger(AdminCommandHandler.class.getName());

private static AdminCommandHandler _instance;

private Map<String, IAdminCommandHandler> _datatable;

   //Alt privileges setting
   private static Logger _priviLog = Logger.getLogger("AltPrivilegesAdmin");
   private static FastMap<String,Integer> _privileges;

public static AdminCommandHandler getInstance()
{
	if (_instance == null)
	{
		_instance = new AdminCommandHandler();
	}
	return _instance;
}

private AdminCommandHandler()
{
	_datatable = new FastMap<String, IAdminCommandHandler>();
	registerAdminCommandHandler(new AdminDMEngine());
}

public void registerAdminCommandHandler(IAdminCommandHandler handler)
{
	String[] ids = handler.getAdminCommandList();
	for (int i = 0; i < ids.length; i++)
	{
		if (Config.DEBUG) _log.fine("Adding handler for command "+ids[i]);
		_datatable.put(ids[i], handler);
	}
}

public IAdminCommandHandler getAdminCommandHandler(String adminCommand)
{
	String command = adminCommand;
	if (adminCommand.indexOf(" ") != -1) {
		command = adminCommand.substring(0, adminCommand.indexOf(" "));
	}
	if (Config.DEBUG)
		_log.fine("getting handler for command: "+command+
				" -> "+(_datatable.get(command) != null));
	return _datatable.get(command);
}

   /**
    * @return
    */
   public int size()
   {
       return _datatable.size();
   }

   public final boolean checkPrivileges(L2PcInstance player, String adminCommand)
   {
       //Only a GM can execute a admin command
       if (!player.isGM())
           return false;

       //Skip special privileges handler?
       if (!Config.ALT_PRIVILEGES_ADMIN || Config.EVERYBODY_HAS_ADMIN_RIGHTS)
           return true;

       if (_privileges == null)
           _privileges = new FastMap<String,Integer>();

       String command = adminCommand;
       if (adminCommand.indexOf(" ") != -1) {
           command = adminCommand.substring(0, adminCommand.indexOf(" "));
       }

       //The command not exists
       if (!_datatable.containsKey(command))
           return false;

       int requireLevel = 0;

       if (!_privileges.containsKey(command))
       {
           //Try to loaded the command config
           boolean isLoaded = false;

           try
           {
               Properties Settings   = new Properties();
               InputStream is          = new FileInputStream(Config.COMMAND_PRIVILEGES_FILE);
               Settings.load(is);
               is.close();

               String stringLevel = Settings.getProperty(command);

               if (stringLevel != null)
               {
                   isLoaded = true;
                   requireLevel = Integer.parseInt(stringLevel);
               }
           }
           catch (Exception e) { }

           //Secure level?
           if (!isLoaded)
           {
               if (Config.ALT_PRIVILEGES_SECURE_CHECK)
               {
                   _priviLog.info("The command '" + command + "' haven't got a entry in the configuration file. The command cannot be executed!!");
                   return false;
               }

               requireLevel = Config.ALT_PRIVILEGES_DEFAULT_LEVEL;
           }

           _privileges.put(command,requireLevel);
       }
       else
       {
           requireLevel = _privileges.get(command);
       }

       if (player.getAccessLevel() < requireLevel)
       {
           _priviLog.warning("<GM>" + player.getName() + ": have not access level to execute the command '" + command +"'");
           return false;
       }

       return true;
   }

gia lookare gt dn 3erw gt m to vgazei proti fora m to vgazei afto edw....

Posted

to fixara ego pedes.kante checkout pali.opos l2jattacker fixed.tora exoume to noobish error.se 5 lepta 8a ine gg

Posted

to fixara ego pedes.kante checkout pali.opos l2jattacker fixed.tora exoume to noobish error.se 5 lepta 8a ine gg

to fixares?? katse na dw k tha sou pw...
Guest
This topic is now closed to further replies.



  • Posts

    • If this is actually true, then it's not about a resource leak but a stuffed client data which you might have caused god knows how. On top of that you run Interlude which is extremely primitive in client-side tools to diagnose anything robust (aside from the standard emitter, render, script, net and stat on screen info output)
    • serverpackets/CharInfo               writeD(_activeChar.getAppearance().getSex() ? 1 : 0);             writeD(_activeChar.getBaseClass());             for (int slot : getPaperdollOrder())             {   +              switch (slot)   +             {   +                  case 6:   +                      writeD((_activeChar.getInventory().getPaperdollItemId(Inventory.PAPERDOLL_UNDERWEAR) == 0) ? _activeChar.getInventory().getPaperdollItemId(Inventory.PAPERDOLL_CHEST) : _activeChar.getInventory().getPaperdollItemId(Inventory.PAPERDOLL_UNDERWEAR));   +                      break;   +                  case 10:   +                      writeD((_activeChar.getInventory().getPaperdollItemId(Inventory.PAPERDOLL_UNDERWEAR) == 0) ? _activeChar.getInventory().getPaperdollItemId(Inventory.PAPERDOLL_GLOVES) : _activeChar.getInventory().getPaperdollItemId(Inventory.PAPERDOLL_UNDERWEAR));   +                      break;   +                  case 11:   +                      writeD((_activeChar.getInventory().getPaperdollItemId(Inventory.PAPERDOLL_UNDERWEAR) == 0) ? _activeChar.getInventory().getPaperdollItemId(Inventory.PAPERDOLL_LEGS) : _activeChar.getInventory().getPaperdollItemId(Inventory.PAPERDOLL_UNDERWEAR));   +                      break;   +                  case 12:   +                      writeD((_activeChar.getInventory().getPaperdollItemId(Inventory.PAPERDOLL_UNDERWEAR) == 0) ? _activeChar.getInventory().getPaperdollItemId(Inventory.PAPERDOLL_FEET) : _activeChar.getInventory().getPaperdollItemId(Inventory.PAPERDOLL_UNDERWEAR));   +                      break;   +                  default:   +                      writeD(_activeChar.getInventory().getPaperdollItemDisplayId(slot));   +              }   +          }                          for (int slot : getPaperdollOrder())             {                 writeD(_activeChar.getInventory().getPaperdollAugmentationId(slot));             } serverpackets/UserInfo         writeD(_activeChar.getCurrentLoad());         writeD(_activeChar.getMaxLoad());                  writeD(_activeChar.getActiveWeaponItem() != null ? 40 : 20); // 20 no weapon, 40 weapon equipped         for (int slot : getPaperdollOrder())         {    +         switch (slot)    +         {    +             case 6:    +                 writeD((_activeChar.getInventory().getPaperdollObjectId(Inventory.PAPERDOLL_UNDERWEAR) == 0) ? _activeChar.getInventory().getPaperdollObjectId(Inventory.PAPERDOLL_CHEST) : _activeChar.getInventory().getPaperdollObjectId(Inventory.PAPERDOLL_UNDERWEAR));    +                 break;    +             case 10:    +                 writeD((_activeChar.getInventory().getPaperdollObjectId(Inventory.PAPERDOLL_UNDERWEAR) == 0) ? _activeChar.getInventory().getPaperdollObjectId(Inventory.PAPERDOLL_GLOVES) : _activeChar.getInventory().getPaperdollObjectId(Inventory.PAPERDOLL_UNDERWEAR));    +                 break;    +             case 11:    +                 writeD((_activeChar.getInventory().getPaperdollObjectId(Inventory.PAPERDOLL_UNDERWEAR) == 0) ? _activeChar.getInventory().getPaperdollObjectId(Inventory.PAPERDOLL_LEGS) : _activeChar.getInventory().getPaperdollObjectId(Inventory.PAPERDOLL_UNDERWEAR));    +                 break;    +             case 12:    +                 writeD((_activeChar.getInventory().getPaperdollObjectId(Inventory.PAPERDOLL_UNDERWEAR) == 0) ? _activeChar.getInventory().getPaperdollObjectId(Inventory.PAPERDOLL_FEET) : _activeChar.getInventory().getPaperdollObjectId(Inventory.PAPERDOLL_UNDERWEAR));    +                 break;    +             default:    +                 writeD(_activeChar.getInventory().getPaperdollObjectId(slot));             }         }         for (int slot : getPaperdollOrder())         {    +         switch (slot)    +         {    +             case 6:    +                 writeD((_activeChar.getInventory().getPaperdollItemDisplayId(Inventory.PAPERDOLL_UNDERWEAR) == 0) ? _activeChar.getInventory().getPaperdollItemDisplayId(Inventory.PAPERDOLL_CHEST) : _activeChar.getInventory().getPaperdollItemDisplayId(Inventory.PAPERDOLL_UNDERWEAR));    +                 break;    +             case 10:    +                 writeD((_activeChar.getInventory().getPaperdollItemDisplayId(Inventory.PAPERDOLL_UNDERWEAR) == 0) ? _activeChar.getInventory().getPaperdollItemDisplayId(Inventory.PAPERDOLL_GLOVES) : _activeChar.getInventory().getPaperdollItemDisplayId(Inventory.PAPERDOLL_UNDERWEAR));    +                 break;    +             case 11:    +                 writeD((_activeChar.getInventory().getPaperdollItemDisplayId(Inventory.PAPERDOLL_UNDERWEAR) == 0) ? _activeChar.getInventory().getPaperdollItemDisplayId(Inventory.PAPERDOLL_LEGS) : _activeChar.getInventory().getPaperdollItemDisplayId(Inventory.PAPERDOLL_UNDERWEAR));    +                 break;    +             case 12:    +                 writeD((_activeChar.getInventory().getPaperdollItemDisplayId(Inventory.PAPERDOLL_UNDERWEAR) == 0) ? _activeChar.getInventory().getPaperdollItemDisplayId(Inventory.PAPERDOLL_FEET) : _activeChar.getInventory().getPaperdollItemDisplayId(Inventory.PAPERDOLL_UNDERWEAR));    +                 break;    +             default:    +                 writeD(_activeChar.getInventory().getPaperdollItemDisplayId(slot));             }         }         for (int slot : getPaperdollOrder())         {             writeD(_activeChar.getInventory().getPaperdollAugmentationId(slot));         }           
    • WTB Myext64 by @eressea missing adition OfflineShopRestore then server restart. Offer: 20 USD Payment with Crypto, then all working and tested in my live server. My discord: Jen2#1273
    • Hey, gamers!   I'm thinking about launching a High Five x30 server and would love to hear your thoughts! Would you play on a server with these features? 🔹 No Pay-to-Win – no items that give an unfair advantage. 🔹 Donations only for premium, noblesse, and skins – purely cosmetic or convenience-based. 🔹 Daily rewards from farming – active players get rewarded. 🔹 Only 1 dual box allowed – to keep the gameplay fair.   What do you think? Would you play on such a server? Any feedback or suggestions are welcome! Join our Discord to discuss: https://discord.gg/zeArBXcAxh
    • L2JHellas Test Server is Live!  If you want to test L2JHellas , you can check discord for the .ini file to connect. The test server will be online 24/7, so feel free to hop in anytime!  Accounts are auto created!
  • Topics

×
×
  • Create New...