• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

C++ This can make a problem?

Gicu

Well-Known Member
Joined
Feb 26, 2011
Messages
187
Reaction score
52
Code:
        case CONDITION_PARAM_SKILL_NEW15: {
            skills[SKILL_NEW15] = value;
            return true;
        }

        case CONDITION_PARAM_SKILL_NEWPERCENT15: {
            skillsPercent[SKILL_NEW15] = value;
            return true;
        }


I created new skills and i use SKILL_NEW15 <<< this numers can make problems?
Or better change for somethink like this SKILL_NEWA SKILL NEWB e.t.c >?
 
Real answer: Problem? No. Horrendous naming? Yes.
Name your variables or skills properly, not just "new".
 
Back
Top