Package l2p.gameserver.model.entity.residence

Examples of l2p.gameserver.model.entity.residence.Castle.saveSeedData()


        castle.setCropProcure(new GArray<CropProcure>(), CastleManorManager.PERIOD_CURRENT);
        castle.setCropProcure(new GArray<CropProcure>(), CastleManorManager.PERIOD_NEXT);
        castle.setSeedProduction(new GArray<SeedProduction>(), CastleManorManager.PERIOD_CURRENT);
        castle.setSeedProduction(new GArray<SeedProduction>(), CastleManorManager.PERIOD_NEXT);
        castle.saveCropData();
        castle.saveSeedData();
        activeChar.sendMessage("Manor data for " + castle.getName() + " was nulled");
      }
      else
      {
        for(Castle castle : CastleManager.getInstance().getCastles().values())
View Full Code Here


          castle.setCropProcure(new GArray<CropProcure>(), CastleManorManager.PERIOD_CURRENT);
          castle.setCropProcure(new GArray<CropProcure>(), CastleManorManager.PERIOD_NEXT);
          castle.setSeedProduction(new GArray<SeedProduction>(), CastleManorManager.PERIOD_CURRENT);
          castle.setSeedProduction(new GArray<SeedProduction>(), CastleManorManager.PERIOD_NEXT);
          castle.saveCropData();
          castle.saveSeedData();
        }
        activeChar.sendMessage("Manor data was nulled");
      }
      showMainPage(activeChar);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.