Get Calculated by Shelllevel.
for Example
Max HPSl = 9
But when ShellLevel is >60
then multiplier = 0.5
so max hpsl on a shell with lvl >60 is 4.5
So the same like this
Code:
short CalculateEffect(short maximum)
{
if (maximum == 0)
{
return 1;
}
else
{
double multiplier = 0;
switch (Rare)
{
case 0:
case 1:
case 2:
multiplier = 0.6;
break;
case 3:
multiplier = 0.65;
break;
case 4:
multiplier = 0.75;
break;
case 5:
multiplier = 0.85;
break;
case 6:
multiplier = 0.95;
break;
case 7:
case 8:
multiplier = 1;
break;
}
}
// ...
}
I know that ShellLevel is set as Design so if Shell has ItemDesign = 80 its lvl 80. But idk how i add this to the source.
Sorry for Bad English and that i repeated me.
(I Speak German)
Thanks for your Help






Actually its upgrade Thanks you alot for the Help man!
