Package com.l2jfrozen.gameserver.model.entity.siege

Examples of com.l2jfrozen.gameserver.model.entity.siege.Castle.saveSeedData()


        castle.setSeedProduction(new FastList<SeedProduction>(), CastleManorManager.PERIOD_NEXT);

        if(Config.ALT_MANOR_SAVE_ALL_ACTIONS)
        {
          castle.saveCropData();
          castle.saveSeedData();
        }

        activeChar.sendMessage("Manor data for " + castle.getName() + " was nulled");
      }
      else
View Full Code Here


          castle.setSeedProduction(new FastList<SeedProduction>(), CastleManorManager.PERIOD_NEXT);

          if(Config.ALT_MANOR_SAVE_ALL_ACTIONS)
          {
            castle.saveCropData();
            castle.saveSeedData();
          }
        }

        activeChar.sendMessage("Manor data was nulled");
      }
View Full Code Here

        Castle castle = CastleManager.getInstance().getCastleById(_clan.getHasCastle());
        if(!Config.ALT_MANOR_SAVE_ALL_ACTIONS)
        {
          if(_runCount % Config.ALT_MANOR_SAVE_PERIOD_RATE == 0)
          {
            castle.saveSeedData();
            castle.saveCropData();
            String text = "Manor System: all data for " + castle.getName() + " saved";
            Log.add(text, "Manor_system");
          }
        }
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.