Changeset 8630 for trunk/L2J_DataPack/dist/game/data/scripts/handlers/admincommandhandlers/AdminCHSiege.java
- Timestamp:
- Jan 16, 2012 7:56:19 AM (4 months ago)
- Location:
- trunk/L2J_DataPack
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
dist/game/data/scripts/handlers/admincommandhandlers/AdminCHSiege.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/L2J_DataPack
- Property svn:mergeinfo changed
/branches/unstable/L2J_DataPack_BETA merged: 8407-8426,8428-8480,8482-8491,8493-8588,8590-8629
- Property svn:mergeinfo changed
-
trunk/L2J_DataPack/dist/game/data/scripts/handlers/admincommandhandlers/AdminCHSiege.java
r8406 r8630 48 48 SiegableHall hall = null; 49 49 if(Config.ALT_DEV_NO_QUESTS) 50 { 50 51 activeChar.sendMessage("AltDevNoQuests = true; Clan Hall Sieges are disabled!"); 51 else if(split.length < 2) 52 return false; 53 } 54 if(split.length < 2) 55 { 52 56 activeChar.sendMessage("You have to specify the hall id at least"); 53 else if((hall = getHall(split[1], activeChar)) == null) 57 return false; 58 } 59 if((hall = getHall(split[1], activeChar)) == null) 60 { 54 61 activeChar.sendMessage("Couldnt find he desired siegable hall ("+split[1]+")"); 55 else if(hall.getSiege() == null) 62 return false; 63 } 64 if(hall.getSiege() == null) 65 { 56 66 activeChar.sendMessage("The given hall dont have any attached siege!"); 57 else if(split[0].equals(COMMANDS[1])) 67 return false; 68 } 69 70 if(split[0].equals(COMMANDS[1])) 58 71 { 59 72 if(hall.isInSiege())
Note: See TracChangeset
for help on using the changeset viewer.
