Ejemplo n.º 1
0
 private void LevelUP(ZoneCharacter character, params string[] param)
 {
     byte lvls = param.Length >= 2 ? byte.Parse(param[1]) : (byte)1;
     for (byte i = 0; i < lvls; i++)
     {
         character.LevelUP();
     }
 }