message+=`must be greater than or equal to ${min} and less than or equal to ${max}.`
message+=`must be greater than or equal to ${this.downsize(min.toString(10),scale)} and less than or equal to ${this.downsize(max.toString(10),scale)}.`
}elseif(min){
message+=`must be greater than or equal to ${min}.`
message+=`must be greater than or equal to ${this.downsize(min.toString(10),scale)}.`
}elseif(max){
message+=`must be less than or equal to ${max}.`
message+=`must be less than or equal to ${this.downsize(max.toString(10),scale)}.`