PDA

View Full Version : con colors



nok
10-04-2002, 01:53 AM
The thread regarding the con table is pretty old now but I was hoping to contribute a small bit of info to help make showeq slightly more accurate for my fellow lowbies. At level 40, the correct greenRange is -14 and the correct cyanRange is -11. At level 41, the correct greenRange is -16 and cyanRange is -12.


else if (level() < 40)
{ // 43 - 44
greenRange = -14;
cyanRange = -11;
}

Should be :


else if (level() < 41)
{ // 37 - 40
greenRange = -14;
cyanRange = -11;
}
else if (level() < 45)
{ // 41- 44
greenRange = -16;
cyanRange = -12;
}

Edit : i cant subtract

nok
10-06-2002, 10:21 AM
nobody cares? if i make a patch will it eventually make it to the cvs so that i dont have to fix future patches?

high_jeeves
10-06-2002, 10:58 AM
Yes, if you want it fixed, then you need to make a patch on the patches page, and let the devs know. It will get included then.

--Jeeves

Ratt
10-06-2002, 12:56 PM
I already included it a couple days ago...