Ignore:
Timestamp:
Jan 16, 2012 7:56:19 AM (4 months ago)
Author:
MELERIX
Message:

STABLE: Sync with BETA [8629]

Location:
trunk/L2J_DataPack
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/L2J_DataPack

  • trunk/L2J_DataPack/dist/game/data/scripts/ai/group_template/StakatoNest.java

    r7670 r8630  
    3333{ 
    3434        // List of all mobs just for register 
    35         private static final int[] _stakato_mobs = { 18793, 18794, 18795, 18796, 18797, 18798, 22617, 22618, 22619, 22620, 22621, 22622, 22623, 22624, 22625, 22626, 22627, 22628, 22629, 22630, 22631, 22632, 22633, 25667 }; 
     35        private static final int[] _stakato_mobs = 
     36        { 
     37                18793, 18794, 18795, 18796, 18797, 18798, 22617, 22618, 22619, 22620, 22621, 22622, 22623, 22624, 22625, 22626, 22627, 22628, 22629, 22630, 22631, 22632, 22633, 25667 
     38        }; 
    3639        // Coocons 
    37         private static final int[] _cocoons = { 18793, 18794, 18795, 18796, 18797, 18798 }; 
     40        private static final int[] _cocoons = 
     41        { 
     42                18793, 18794, 18795, 18796, 18797, 18798 
     43        }; 
    3844         
    3945        // Cannibalistic Stakato Leader 
     
    112118                { 
    113119                        L2MonsterInstance _leader = ((L2MonsterInstance) npc).getLeader(); 
    114                         if(_leader != null && !_leader.isDead()) 
     120                        if (_leader != null && !_leader.isDead()) 
    115121                        { 
    116122                                startQuestTimer("nurse_change", 5000, _leader, killer); 
     
    129135                { 
    130136                        L2MonsterInstance _leader = ((L2MonsterInstance) npc).getLeader(); 
    131                         if(_leader != null && !_leader.isDead()) 
     137                        if (_leader != null && !_leader.isDead()) 
    132138                        { 
    133139                                startQuestTimer("male_change", 5000, _leader, killer); 
     
    165171                if ((npc == null) || (player == null)) 
    166172                        return null; 
    167                 if(npc.isDead()) 
     173                if (npc.isDead()) 
    168174                        return null; 
    169175                 
Note: See TracChangeset for help on using the changeset viewer.