Jump to content

User talk:Zeofolium: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 12: Line 12:
# Pickpocket Weight calu (Pickpocket Skill level) * 200 + (STR) * 100 + 1000
# Pickpocket Weight calu (Pickpocket Skill level) * 200 + (STR) * 100 + 1000
# Gold Armour Shrines are considered bless *enchant armour* scrolls so go up to 5 (grey are +2)
# Gold Armour Shrines are considered bless *enchant armour* scrolls so go up to 5 (grey are +2)
Bed Quality for Pets
<syntaxhighlight lang="c#" line="1">
if (traitBed != null)
{
num += 30 + traitBed.owner.GetTotalQuality() + traitBed.owner.Evalue(750<sup>Comfort</sup>);
}
public int GetTotalQuality(bool applyBonus = true)
{
int num = 5 + LV + material.quality;
if (applyBonus)
{
num = num * (100 + Quality) / 100;
}
return num;
}
</syntaxhighlight>




35

edits