Changeset 5089


Ignore:
Timestamp:
Nov 17, 2011 11:42:49 PM (6 months ago)
Author:
UnAfraid
Message:

BETA: Core Part for [DP8558]

Location:
branches/unstable/L2J_Server_BETA/java/com/l2jserver/gameserver
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/unstable/L2J_Server_BETA/java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java

    r5083 r5089  
    79297929                                        { 
    79307930                                                case HEAL_OVER_TIME: 
    7931                                                 case COMBAT_POINT_HEAL_OVER_TIME: 
     7931                                                case CPHEAL_OVER_TIME: 
    79327932                                                        // TODO: Fix me. 
    79337933                                                case HIDE: 
  • branches/unstable/L2J_Server_BETA/java/com/l2jserver/gameserver/model/actor/instance/L2PetInstance.java

    r5083 r5089  
    10001000                                        { 
    10011001                                                case HEAL_OVER_TIME: 
    1002                                                 case COMBAT_POINT_HEAL_OVER_TIME: 
     1002                                                case CPHEAL_OVER_TIME: 
    10031003                                                        // TODO: Fix me. 
    10041004                                                case HIDE: 
  • branches/unstable/L2J_Server_BETA/java/com/l2jserver/gameserver/model/actor/instance/L2SummonInstance.java

    r5013 r5089  
    359359                                        { 
    360360                                                case HEAL_OVER_TIME: 
    361                                                 case COMBAT_POINT_HEAL_OVER_TIME: 
     361                                                case CPHEAL_OVER_TIME: 
    362362                                                        // TODO: Fix me. 
    363363                                                case HIDE: 
     
    500500        static class SummonLifetime implements Runnable 
    501501        { 
    502                 private L2PcInstance _activeChar; 
    503                 private L2SummonInstance _summon; 
     502                private final L2PcInstance _activeChar; 
     503                private final L2SummonInstance _summon; 
    504504                 
    505505                SummonLifetime(L2PcInstance activeChar, L2SummonInstance newpet) 
  • branches/unstable/L2J_Server_BETA/java/com/l2jserver/gameserver/templates/skills/L2EffectType.java

    r5086 r5089  
    3636        MANA_DMG_OVER_TIME, 
    3737        MANA_HEAL_OVER_TIME, 
     38        CPHEAL, 
    3839        CPHEAL_PERCENT, 
    39         CPHEAL, 
    40         COMBAT_POINT_HEAL, 
    41         COMBAT_POINT_HEAL_OVER_TIME, 
     40        CPHEAL_OVER_TIME, 
    4241        CPDAMPERCENT, 
    4342        MP_CONSUME_PER_LEVEL, 
     
    4645        ROOT, 
    4746        SLEEP, 
    48         HATE, 
    4947        FAKE_DEATH, 
    5048        RANDOMIZE_HATE, 
     
    5452        FEAR, 
    5553        SILENT_MOVE, 
    56         SEED, 
    5754        PARALYZE, 
    5855        PHYSICAL_MUTE, 
     
    6663        BLUFF, 
    6764        CHARM_OF_LUCK, 
    68         LUCKY, 
    6965        INVINCIBLE, 
    7066        TRANSFORMATION, 
Note: See TracChangeset for help on using the changeset viewer.