Advertisement
Guest User

Untitled

a guest
Nov 11th, 2013
798
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 21.12 KB | None | 0 0
  1. ### Eclipse Workspace Patch 1.0
  2. #P L2J_DataPack_BETA
  3. Index: dist/game/data/xsd/zones.xsd
  4. ===================================================================
  5. --- dist/game/data/xsd/zones.xsd    (revision 9185)
  6. +++ dist/game/data/xsd/zones.xsd    (working copy)
  7. @@ -145,6 +145,7 @@
  8.                                     <xs:enumeration value="TerritoryWarZone" />
  9.                                     <xs:enumeration value="TownZone" />
  10.                                     <xs:enumeration value="WaterZone" />
  11. +                                   <xs:enumeration value="MultiFunctionZone" />
  12.                                 </xs:restriction>
  13.                             </xs:simpleType>
  14.                         </xs:attribute>
  15. Index: dist/game/data/zones/peace.xml
  16. ===================================================================
  17. --- dist/game/data/zones/peace.xml  (revision 9185)
  18. +++ dist/game/data/zones/peace.xml  (working copy)
  19. @@ -948,4 +948,10 @@
  20.         <node X="-113768" Y="-150965" />
  21.         <node X="-115424" Y="-150965" />
  22.     </zone>
  23. +   <zone name="Custom" type="MultiFunctionZone" shape="NPoly" minZ="-15000" maxZ="-10000">
  24. +       <node X="130000" Y="160000" />
  25. +       <node X="130000" Y="130000" />
  26. +       <node X="160000" Y="130000" />
  27. +       <node X="160000" Y="160000" />
  28. +   </zone>
  29.  </list>
  30. \ No newline at end of file
  31. #P L2J_Server_BETA
  32. Index: java/com/l2jserver/gameserver/network/serverpackets/Die.java
  33. ===================================================================
  34. --- java/com/l2jserver/gameserver/network/serverpackets/Die.java    (revision 5639)
  35. +++ java/com/l2jserver/gameserver/network/serverpackets/Die.java    (working copy)
  36. @@ -29,6 +29,8 @@
  37.  import com.l2jserver.gameserver.model.entity.Fort;
  38.  import com.l2jserver.gameserver.model.entity.TvTEvent;
  39.  import com.l2jserver.gameserver.model.entity.clanhall.SiegableHall;
  40. +import com.l2jserver.gameserver.model.zone.ZoneId;
  41. +import com.l2jserver.gameserver.model.zone.type.L2MultiFunctionZone;
  42.  
  43.  public class Die extends L2GameServerPacket
  44.  {
  45. @@ -55,7 +57,7 @@
  46.            
  47.         }
  48.         _charObjId = cha.getObjectId();
  49. -       _canTeleport = !((cha.isPlayer() && TvTEvent.isStarted() && TvTEvent.isPlayerParticipant(_charObjId)) || cha.isPendingRevive());
  50. +       _canTeleport = !((cha.isPlayer() && TvTEvent.isStarted() && TvTEvent.isPlayerParticipant(_charObjId)) || cha.isPendingRevive() || (cha.isInsideZone(ZoneId.MULTI_FUNCTION) && L2MultiFunctionZone.revive));
  51.         if (cha.isL2Attackable())
  52.         {
  53.             _sweepable = ((L2Attackable) cha).isSweepActive();
  54. Index: java/com/l2jserver/gameserver/network/clientpackets/UseItem.java
  55. ===================================================================
  56. --- java/com/l2jserver/gameserver/network/clientpackets/UseItem.java    (revision 5639)
  57. +++ java/com/l2jserver/gameserver/network/clientpackets/UseItem.java    (working copy)
  58. @@ -39,6 +39,8 @@
  59.  import com.l2jserver.gameserver.model.items.type.L2WeaponType;
  60.  import com.l2jserver.gameserver.model.skills.L2Skill;
  61.  import com.l2jserver.gameserver.model.skills.L2SkillType;
  62. +import com.l2jserver.gameserver.model.zone.ZoneId;
  63. +import com.l2jserver.gameserver.model.zone.type.L2MultiFunctionZone;
  64.  import com.l2jserver.gameserver.network.SystemMessageId;
  65.  import com.l2jserver.gameserver.network.serverpackets.ActionFailed;
  66.  import com.l2jserver.gameserver.network.serverpackets.ExUseSharedGroupItem;
  67. @@ -121,6 +123,12 @@
  68.         if (item == null)
  69.             return;
  70.        
  71. +       if (getClient().getActiveChar().isInsideZone(ZoneId.MULTI_FUNCTION) && !L2MultiFunctionZone.checkItem(item))
  72. +       {
  73. +           getClient().getActiveChar().sendMessage("You cannot use "+item.getName()+" inside this zone.");
  74. +           return;
  75. +       }
  76. +      
  77.         if (item.getItem().getType2() == L2Item.TYPE2_QUEST)
  78.         {
  79.             activeChar.sendPacket(SystemMessageId.CANNOT_USE_QUEST_ITEMS);
  80. Index: java/com/l2jserver/gameserver/network/clientpackets/Logout.java
  81. ===================================================================
  82. --- java/com/l2jserver/gameserver/network/clientpackets/Logout.java (revision 5639)
  83. +++ java/com/l2jserver/gameserver/network/clientpackets/Logout.java (working copy)
  84. @@ -23,6 +23,8 @@
  85.  import com.l2jserver.gameserver.model.L2Party;
  86.  import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
  87.  import com.l2jserver.gameserver.model.entity.L2Event;
  88. +import com.l2jserver.gameserver.model.zone.ZoneId;
  89. +import com.l2jserver.gameserver.model.zone.type.L2MultiFunctionZone;
  90.  import com.l2jserver.gameserver.network.SystemMessageId;
  91.  import com.l2jserver.gameserver.network.serverpackets.ActionFailed;
  92.  import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
  93. @@ -85,6 +87,13 @@
  94.             return;
  95.         }
  96.        
  97. +       if (player.isInsideZone(ZoneId.MULTI_FUNCTION) && !L2MultiFunctionZone.logout_zone)
  98. +       {
  99. +           player.sendMessage("You cannot logout while inside a Multifunction zone.");
  100. +           player.sendPacket(ActionFailed.STATIC_PACKET);
  101. +           return;
  102. +       }
  103. +      
  104.         // Prevent player from logging out if they are a festival participant
  105.         // and it is in progress, otherwise notify party members that the player
  106.         // is not longer a participant.
  107. Index: java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java
  108. ===================================================================
  109. --- java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java    (revision 5639)
  110. +++ java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java    (working copy)
  111. @@ -205,6 +205,7 @@
  112.  import com.l2jserver.gameserver.model.zone.L2ZoneType;
  113.  import com.l2jserver.gameserver.model.zone.ZoneId;
  114.  import com.l2jserver.gameserver.model.zone.type.L2BossZone;
  115. +import com.l2jserver.gameserver.model.zone.type.L2MultiFunctionZone;
  116.  import com.l2jserver.gameserver.model.zone.type.L2NoRestartZone;
  117.  import com.l2jserver.gameserver.network.L2GameClient;
  118.  import com.l2jserver.gameserver.network.SystemMessageId;
  119. @@ -5863,6 +5864,8 @@
  120.             // Add karma to attacker and increase its PK counter
  121.             setPvpKills(getPvpKills() + 1);
  122.            
  123. +           L2MultiFunctionZone.givereward(this);
  124. +          
  125.             // Send a Server->Client UserInfo packet to attacker with its Karma and PK Counter
  126.             sendPacket(new UserInfo(this));
  127.             sendPacket(new ExBrExtraUserInfo(this));
  128. Index: java/com/l2jserver/gameserver/model/zone/type/L2MultiFunctionZone.java
  129. ===================================================================
  130. --- java/com/l2jserver/gameserver/model/zone/type/L2MultiFunctionZone.java  (revision 0)
  131. +++ java/com/l2jserver/gameserver/model/zone/type/L2MultiFunctionZone.java  (working copy)
  132. @@ -0,0 +1,345 @@
  133. +/*
  134. + * This program is free software: you can redistribute it and/or modify it under
  135. + * the terms of the GNU General Public License as published by the Free Software
  136. + * Foundation, either version 3 of the License, or (at your option) any later
  137. + * version.
  138. + *
  139. + * This program is distributed in the hope that it will be useful, but WITHOUT
  140. + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  141. + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  142. + * details.
  143. + *
  144. + * You should have received a copy of the GNU General Public License along with
  145. + * this program. If not, see <http://www.gnu.org/licenses/>.
  146. + */
  147. +/*
  148. + * This program is free software: you can redistribute it and/or modify it under
  149. + * the terms of the GNU General Public License as published by the Free Software
  150. + * Foundation, either version 3 of the License, or (at your option) any later
  151. + * version.
  152. + *
  153. + * This program is distributed in the hope that it will be useful, but WITHOUT
  154. + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  155. + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  156. + * details.
  157. + *
  158. + * You should have received a copy of the GNU General Public License along with
  159. + * this program. If not, see <http://www.gnu.org/licenses/>.
  160. + */
  161. +package com.l2jserver.gameserver.model.zone.type;
  162. +
  163. +import java.io.File;
  164. +import java.io.FileInputStream;
  165. +import java.util.ArrayList;
  166. +import java.util.List;
  167. +import java.util.Properties;
  168. +import javolution.util.FastList;
  169. +import com.l2jserver.gameserver.ThreadPoolManager;
  170. +import com.l2jserver.gameserver.datatables.SkillTable;
  171. +import com.l2jserver.gameserver.model.actor.L2Character;
  172. +import com.l2jserver.gameserver.model.actor.L2Summon;
  173. +import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
  174. +import com.l2jserver.gameserver.model.itemcontainer.PcInventory;
  175. +import com.l2jserver.gameserver.model.items.instance.L2ItemInstance;
  176. +import com.l2jserver.gameserver.model.skills.L2Skill;
  177. +import com.l2jserver.gameserver.model.zone.ZoneId;
  178. +import com.l2jserver.util.Rnd;
  179. +
  180. +/**
  181. + *
  182. + * @author Wyatt
  183. + * @version 1.3
  184. + *
  185. + */
  186. +
  187. +public class L2MultiFunctionZone extends L2RespawnZone
  188. +{
  189. +  
  190. +   public L2MultiFunctionZone(int id)
  191. +   {
  192. +       super(id);
  193. +       loadConfigs();
  194. +   }
  195. +  
  196. +   public static boolean pvp_enabled, restart_zone, store_zone, logout_zone, revive_noblesse, revive_heal, revive, remove_buffs, remove_pets, give_noblesse;
  197. +   static int radius, enchant, revive_delay;
  198. +   static int[][] spawn_loc;
  199. +   L2Skill noblesse = SkillTable.getInstance().getInfo(1323, 1);
  200. +   private static List<String> items = new FastList<>();
  201. +   private static List<String> grades = new FastList<>(), classes = new FastList<>();
  202. +   public static List<int[]> rewards;
  203. +   static String[] gradeNames = {"","D","C","B","A","S","S80","S84"};
  204. +  
  205. +   @Override
  206. +   protected void onEnter(L2Character character)
  207. +   {
  208. +       character.setInsideZone(ZoneId.NO_SUMMON_FRIEND, true);
  209. +       character.setInsideZone(ZoneId.MULTI_FUNCTION, true);
  210. +       if(!store_zone)
  211. +           character.setInsideZone(ZoneId.NO_STORE, true);
  212. +      
  213. +       if (character instanceof L2PcInstance)
  214. +       {
  215. +           L2PcInstance activeChar = ((L2PcInstance) character);
  216. +           if(classes != null && classes.contains(""+activeChar.getClassId().getId()))
  217. +           {
  218. +               activeChar.teleToLocation(83597,147888,-3405);
  219. +               activeChar.sendMessage("Your class is not allowed in the MultiFunction zone.");
  220. +               return;
  221. +           }
  222. +          
  223. +           for(L2ItemInstance o : activeChar.getInventory()._items)
  224. +           {
  225. +               if(o.isEquipable() && o.isEquipped() && !checkItem(o))
  226. +               {
  227. +                   int slot = activeChar.getInventory().getSlotFromItem(o);
  228. +                   activeChar.getInventory().unEquipItemInBodySlot(slot); 
  229. +                   activeChar.sendMessage(o.getName()+" unequiped because is not allowed inside this zone.");
  230. +               }
  231. +           }
  232. +           activeChar.sendMessage("You entered in a MultiFunction zone.");
  233. +           clear(activeChar);
  234. +           if(give_noblesse)
  235. +               noblesse.getEffects(activeChar, activeChar);  
  236. +           if(pvp_enabled)
  237. +               activeChar.updatePvPFlag(1);               
  238. +       }
  239. +   }
  240. +  
  241. +   @Override
  242. +   protected void onExit(L2Character character)
  243. +   {
  244. +       character.setInsideZone(ZoneId.NO_SUMMON_FRIEND, false);
  245. +       character.setInsideZone(ZoneId.MULTI_FUNCTION, false);
  246. +       if(!store_zone)
  247. +           character.setInsideZone(ZoneId.NO_STORE, false);
  248. +      
  249. +       if (character instanceof L2PcInstance)
  250. +       {
  251. +           L2PcInstance activeChar = ((L2PcInstance) character);
  252. +           activeChar.sendMessage("You left from a MultiFunction zone.");
  253. +          
  254. +           if(pvp_enabled)
  255. +               activeChar.stopPvPFlag();  
  256. +       }
  257. +   }
  258. +  
  259. +   @Override
  260. +   public void onDieInside(final L2Character character)
  261. +   {
  262. +       if (character instanceof L2PcInstance)
  263. +       {
  264. +           final L2PcInstance activeChar = ((L2PcInstance) character);
  265. +           if(revive)
  266. +           {
  267. +               ThreadPoolManager.getInstance().scheduleGeneral(new Runnable()
  268. +               {
  269. +                   @Override
  270. +                   public void run()
  271. +                   {
  272. +                       activeChar.doRevive();
  273. +                       heal(activeChar);
  274. +                       int[] loc = spawn_loc[Rnd.get(spawn_loc.length)];
  275. +                       activeChar.teleToLocation(loc[0]+Rnd.get(-radius,radius), loc[1]+Rnd.get(-radius,radius), loc[2]);
  276. +                   }
  277. +               },revive_delay*1000);  
  278. +           }
  279. +       }
  280. +   }
  281. +
  282. +   @Override
  283. +   public void onReviveInside(L2Character character)
  284. +   {  
  285. +       if (character instanceof L2PcInstance)
  286. +       {
  287. +           L2PcInstance activeChar = ((L2PcInstance) character);
  288. +           if(revive_noblesse)
  289. +               noblesse.getEffects(activeChar, activeChar);  
  290. +           if(revive_heal)
  291. +               heal(activeChar);
  292. +       }
  293. +   }
  294. +  
  295. +   private void clear (L2PcInstance player)
  296. +   {
  297. +       if(remove_buffs)
  298. +       {
  299. +           player.stopAllEffectsExceptThoseThatLastThroughDeath();
  300. +           if(remove_pets)
  301. +           {
  302. +               L2Summon pet = player.getPet();
  303. +               if(pet!= null)
  304. +               {
  305. +                   pet.stopAllEffectsExceptThoseThatLastThroughDeath();
  306. +                   pet.unSummon(player);  
  307. +               }  
  308. +           }
  309. +       }
  310. +       else
  311. +       {
  312. +           if(remove_pets)
  313. +           {
  314. +               L2Summon pet = player.getPet();
  315. +               if(pet!= null)
  316. +               {
  317. +                   pet.unSummon(player);  
  318. +               }  
  319. +           }
  320. +       }
  321. +   }
  322. +  
  323. +   static void heal(L2PcInstance activeChar)
  324. +   {
  325. +       activeChar.setCurrentHp(activeChar.getMaxHp());
  326. +       activeChar.setCurrentCp(activeChar.getMaxCp());
  327. +       activeChar.setCurrentMp(activeChar.getMaxMp());
  328. +   }
  329. +  
  330. +   public static void givereward(L2PcInstance player)
  331. +   {
  332. +       if(player.isInsideZone(ZoneId.MULTI_FUNCTION))
  333. +       {
  334. +           for (int[] reward : rewards)
  335. +           {
  336. +               PcInventory inv = player.getInventory();
  337. +               inv.addItem("Custom Reward", reward[0], reward[1], player,  player);   
  338. +           }
  339. +       }
  340. +   }
  341. +  
  342. +   public static boolean checkItem (L2ItemInstance item)
  343. +   {
  344. +       int o = item.getItem().getCrystalType();
  345. +       int e = item.getEnchantLevel();
  346. +      
  347. +       if(enchant != 0 && e >= enchant)
  348. +       {
  349. +           return false;
  350. +       }
  351. +      
  352. +       if(grades.contains(gradeNames[o]))
  353. +           return false;
  354. +
  355. +       if(items != null && items.contains(""+item.getItemId()))
  356. +           return false;
  357. +       return true;
  358. +   }
  359. +  
  360. +   private static void loadConfigs()
  361. +   {
  362. +       try
  363. +       {
  364. +           Properties prop = new Properties();
  365. +           prop.load(new FileInputStream(new File("./config/MultiFunctionZone.properties")));
  366. +           pvp_enabled = Boolean.parseBoolean(prop.getProperty("EnablePvP", "False"));
  367. +           spawn_loc = parseItemsList(prop.getProperty("SpawnLoc", "150111,144740,-12248"));
  368. +           revive_delay = Integer.parseInt(prop.getProperty("ReviveDelay", "10"));
  369. +           if(revive_delay != 0)
  370. +           {
  371. +               revive = true;
  372. +           }
  373. +           give_noblesse = Boolean.parseBoolean(prop.getProperty("GiveNoblesse", "False"));
  374. +           String[] propertySplit = prop.getProperty("Items", "").split(",");
  375. +           if (propertySplit.length != 0)
  376. +           {
  377. +               for(String i : propertySplit)
  378. +               {
  379. +                   items.add(i);
  380. +               }
  381. +           }
  382. +           propertySplit = prop.getProperty("Grades", "").split(",");
  383. +           if (propertySplit.length != 0)
  384. +           {
  385. +               for(String i : propertySplit)
  386. +               {
  387. +                   if(i.equals("D") || i.equals("C") || i.equals("B") || i.equals("A") || i.equals("S") || i.equals("S80") || i.equals("S84"))
  388. +                       grades.add(i);
  389. +               }
  390. +           }
  391. +           propertySplit = prop.getProperty("Classes", "").split(",");
  392. +           if (propertySplit.length != 0)
  393. +           {
  394. +               for(String i : propertySplit)
  395. +               {
  396. +                   classes.add(i);
  397. +               }
  398. +           }
  399. +           radius =  Integer.parseInt(prop.getProperty("RespawnRadius", "500"));
  400. +           enchant =  Integer.parseInt(prop.getProperty("Enchant", "0"));
  401. +           remove_buffs = Boolean.parseBoolean(prop.getProperty("RemoveBuffs", "False"));
  402. +           remove_pets = Boolean.parseBoolean(prop.getProperty("RemovePets", "False"));
  403. +           restart_zone = Boolean.parseBoolean(prop.getProperty("NoRestartZone", "False"));
  404. +           store_zone = Boolean.parseBoolean(prop.getProperty("NoStoreZone", "False"));
  405. +           logout_zone = Boolean.parseBoolean(prop.getProperty("NoLogoutZone", "False"));
  406. +           revive_noblesse = Boolean.parseBoolean(prop.getProperty("ReviveNoblesse", "False"));
  407. +           revive_heal = Boolean.parseBoolean(prop.getProperty("ReviveHeal", "False"));
  408. +           rewards = new ArrayList<>();
  409. +           propertySplit = prop.getProperty("Rewards", "57,100000").split(";");
  410. +           for (String reward : propertySplit)
  411. +           {
  412. +               String[] rewardSplit = reward.split(",");
  413. +               if (rewardSplit.length == 2)
  414. +               {
  415. +                   try
  416. +                   {
  417. +                       rewards.add(new int[]{Integer.parseInt(rewardSplit[0]), Integer.parseInt(rewardSplit[1])});
  418. +                   }
  419. +                   catch (NumberFormatException nfe)
  420. +                   {
  421. +                   }
  422. +               }
  423. +           }
  424. +       }
  425. +       catch(Exception e)
  426. +       {
  427. +           e.printStackTrace();
  428. +       }
  429. +   }  
  430. +  
  431. +   private static int[][] parseItemsList(String line)
  432. +   {
  433. +       final String[] propertySplit = line.split(";");
  434. +       if (propertySplit.length == 0)
  435. +           return null;
  436. +
  437. +       int i = 0;
  438. +       String[] valueSplit;
  439. +       final int[][] result = new int[propertySplit.length][];
  440. +       for (String value : propertySplit)
  441. +       {
  442. +           valueSplit = value.split(",");
  443. +           if (valueSplit.length != 3)
  444. +           {
  445. +               return null;
  446. +           }
  447. +
  448. +           result[i] = new int[3];
  449. +           try
  450. +           {
  451. +               result[i][0] = Integer.parseInt(valueSplit[0]);
  452. +           }
  453. +           catch (NumberFormatException e)
  454. +           {
  455. +               return null;
  456. +           }
  457. +           try
  458. +           {
  459. +               result[i][1] = Integer.parseInt(valueSplit[1]);
  460. +           }
  461. +           catch (NumberFormatException e)
  462. +           {
  463. +               return null;
  464. +           }
  465. +           try
  466. +           {
  467. +               result[i][2] = Integer.parseInt(valueSplit[2]);
  468. +           }
  469. +           catch (NumberFormatException e)
  470. +           {
  471. +               return null;
  472. +           }
  473. +           i++;
  474. +       }
  475. +       return result;
  476. +   }
  477. +}
  478. \ No newline at end of file
  479. Index: java/com/l2jserver/gameserver/network/clientpackets/RequestRestart.java
  480. ===================================================================
  481. --- java/com/l2jserver/gameserver/network/clientpackets/RequestRestart.java (revision 5639)
  482. +++ java/com/l2jserver/gameserver/network/clientpackets/RequestRestart.java (working copy)
  483. @@ -26,6 +26,8 @@
  484.  import com.l2jserver.gameserver.instancemanager.AntiFeedManager;
  485.  import com.l2jserver.gameserver.model.L2Party;
  486.  import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
  487. +import com.l2jserver.gameserver.model.zone.ZoneId;
  488. +import com.l2jserver.gameserver.model.zone.type.L2MultiFunctionZone;
  489.  import com.l2jserver.gameserver.network.L2GameClient;
  490.  import com.l2jserver.gameserver.network.L2GameClient.GameClientState;
  491.  import com.l2jserver.gameserver.network.SystemMessageId;
  492. @@ -89,6 +91,13 @@
  493.             return;
  494.         }
  495.        
  496. +       if (player.isInsideZone(ZoneId.MULTI_FUNCTION) && !L2MultiFunctionZone.restart_zone)
  497. +       {
  498. +           player.sendMessage("You cannot restart while inside a Multifunction zone.");
  499. +           sendPacket(RestartResponse.valueOf(false));
  500. +           return;
  501. +       }
  502. +      
  503.         // Prevent player from restarting if they are a festival participant
  504.         // and it is in progress, otherwise notify party members that the player
  505.         // is not longer a participant.
  506. Index: java/com/l2jserver/gameserver/model/itemcontainer/ItemContainer.java
  507. ===================================================================
  508. --- java/com/l2jserver/gameserver/model/itemcontainer/ItemContainer.java    (revision 5639)
  509. +++ java/com/l2jserver/gameserver/model/itemcontainer/ItemContainer.java    (working copy)
  510. @@ -42,7 +42,7 @@
  511.  {
  512.     protected static final Logger _log = Logger.getLogger(ItemContainer.class.getName());
  513.    
  514. -   protected final List<L2ItemInstance> _items;
  515. +   public final List<L2ItemInstance> _items;
  516.    
  517.     protected ItemContainer()
  518.     {
  519. Index: dist/game/config/MultiFunctionZone.properties
  520. ===================================================================
  521. --- dist/game/config/MultiFunctionZone.properties   (revision 0)
  522. +++ dist/game/config/MultiFunctionZone.properties   (working copy)
  523. @@ -0,0 +1,60 @@
  524. +# ---------------------------------------------------------------------------
  525. +# MultiFunctionZone - custom addon for your server
  526. +# ---------------------------------------------------------------------------
  527. +# This option will turn on PvP flag to all people when entering to the zone
  528. +EnablePvP = True
  529. +
  530. +# If set to false, zone will be no-restart zone
  531. +NoRestartZone = False
  532. +
  533. +# If set to false, zone will be no-logout zone
  534. +NoLogoutZone = False
  535. +
  536. +# If set to false, zone will be no-store zone
  537. +NoStoreZone = False
  538. +
  539. +# Give noblesse after revive?
  540. +ReviveNoblesse = False
  541. +
  542. +# Heal after revive?
  543. +ReviveHeal = False
  544. +
  545. +# Delay, in seconds, to wait before revive
  546. +# 0 to disable
  547. +ReviveDelay = 10
  548. +
  549. +# Set the spawn points where players will be teleported on revive, if enabled
  550. +# example:150111,144740,-12248;143665,144418,-12022;144443,147685,-12139
  551. +SpawnLoc = 150111,144740,-12248;143665,144418,-12022;144443,147685,-12139
  552. +
  553. +# Random respawn radius
  554. +RespawnRadius = 500
  555. +
  556. +# If set to true, players will take noblesse blessing when entering
  557. +GiveNoblesse = True
  558. +
  559. +# Remove buffs when entering to the zone
  560. +RemoveBuffs = False
  561. +
  562. +# Remove pets when entering to the zone
  563. +RemovePets = False
  564. +
  565. +# Special rewards when hunting inside this zone
  566. +# example: 57,100000;14720,1
  567. +Rewards = 57,100000;14720,1
  568. +
  569. +# List of Items(id's) that won't be usable inside this area and also will be unequiped when entering
  570. +# (armor, weapons, scrolls, potions, etc), example: 728,7575, 6383, 1538
  571. +Items = 728,7575,6383,1538
  572. +
  573. +# List of Grades that won't be usable inside this area and also will be unequiped when entering
  574. +# example: D,C,B,A,S,S80,S84
  575. +Grades = C,B,A
  576. +
  577. +# Items with this enchant or more won't be usable inside this area and also will be unequiped when entering
  578. +# 0 to disable
  579. +Enchant = 0
  580. +
  581. +# Players with one of that classes won't be able to enter to the zone
  582. +# example: 93,85,12
  583. +Classes = 92
  584. \ No newline at end of file
  585. Index: java/com/l2jserver/gameserver/model/zone/ZoneId.java
  586. ===================================================================
  587. --- java/com/l2jserver/gameserver/model/zone/ZoneId.java    (revision 5639)
  588. +++ java/com/l2jserver/gameserver/model/zone/ZoneId.java    (working copy)
  589. @@ -42,7 +42,8 @@
  590.     ALTERED(19),
  591.     NO_BOOKMARK(20),
  592.     NO_ITEM_DROP(21),
  593. -   NO_RESTART(22);
  594. +   NO_RESTART(22),
  595. +   MULTI_FUNCTION(23);
  596.    
  597.     private final int _id;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement