Jump to content

braian

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by braian

  1. braian

    cap_value

    Only the first skill work... Other skills not work... switch( skill_id ){ case MG_FIREBOLT: case MG_COLDBOLT: //... do not break, list of capped skill return cap_value(damage,0,6000); default: return damage; //other are not capped } Not work I put too this form.. switch( skill_id ){ case MG_FIREBOLT: //... do not break, list of capped skill return cap_value(damage,0,6000); default: return damage; //other are not capped } switch( skill_id ){ case MG_COLDBOLT: //... do not break, list of capped skill return cap_value(damage,0,6000); default: return damage; //other are not capped } It Not Work Too... Only the first skill work, another skill it not work...
  2. braian

    cap_value

    Show me how use with more than one skill return (skill_num == KN_BOWLINGBASH)?cap_value(damage,0,36000):damage; I repeat whit another skill, but not function... On this Topic http://rathena.org/board/topic/58038-question-how-to-put-max-cap-damage/ Help me pls...
×
×
  • Create New...