Hi all,

How to add powerscroll, i didnt find it with [add command, Also i want to change value of PS like 175 PS but im not sure where to change it in powerscroll.cs

Thx
 
Thx Milva for the command, why they dont appear in the searching box? About changing value of a power scroll i find that in basechampion.cs line 272 to 284

private static PowerScroll CreateRandomPowerScroll()
{
int level;
double random = Utility.RandomDouble();

if (0.05 >= random)
level = 150;
else if (0.4 >= random)
level = 135;
else
level = 120;

return PowerScroll.CreateRandomNoCraft(level, level);
}

There's a good way to change powerscroll value?
 
Back