Who know how to fix ?

02/19/2018 14:05 xKrakyx#1
Hello epvp,
Please who know how to fix this problem? please? :)
Im mage and i have here icon from warrior

[Only registered and activated users can see links. Click Here To Register...]

Thank you for your help :)
02/19/2018 18:00 Crowlyseq#2
I don't remeber how these things works but I guess it would be just stupid switch like this:
switch(bClass):
{
case 0: //Warrior
{
pClass->SetCurImage(0);
}
break;
case 1: //next class
{
pClass->SetCurImage(1);
}
break;
}

Or easy syntax like this:
pClass->SetCurImage(bClass);