forked from mirror/openmw-tes3mp
Merge pull request #1133 from MiroslavR/gmst-defaults
Fix default values of some GMSTs
This commit is contained in:
commit
0f97d856ab
2 changed files with 6 additions and 5 deletions
|
@ -422,14 +422,15 @@ namespace MWWorld
|
||||||
gmst["fNPCHealthBarTime"] = ESM::Variant(5.f);
|
gmst["fNPCHealthBarTime"] = ESM::Variant(5.f);
|
||||||
gmst["fNPCHealthBarFade"] = ESM::Variant(1.f);
|
gmst["fNPCHealthBarFade"] = ESM::Variant(1.f);
|
||||||
gmst["fFleeDistance"] = ESM::Variant(3000.f);
|
gmst["fFleeDistance"] = ESM::Variant(3000.f);
|
||||||
|
gmst["sMaxSale"] = ESM::Variant("Max Sale");
|
||||||
|
|
||||||
// Werewolf (BM)
|
// Werewolf (BM)
|
||||||
gmst["fWereWolfRunMult"] = ESM::Variant(1.f);
|
gmst["fWereWolfRunMult"] = ESM::Variant(1.3f);
|
||||||
gmst["fWereWolfSilverWeaponDamageMult"] = ESM::Variant(1.f);
|
gmst["fWereWolfSilverWeaponDamageMult"] = ESM::Variant(2.f);
|
||||||
gmst["iWerewolfFightMod"] = ESM::Variant(1);
|
gmst["iWerewolfFightMod"] = ESM::Variant(100);
|
||||||
gmst["iWereWolfFleeMod"] = ESM::Variant(100);
|
gmst["iWereWolfFleeMod"] = ESM::Variant(100);
|
||||||
gmst["iWereWolfLevelToAttack"] = ESM::Variant(20);
|
gmst["iWereWolfLevelToAttack"] = ESM::Variant(20);
|
||||||
gmst["iWereWolfBounty"] = ESM::Variant(10000);
|
gmst["iWereWolfBounty"] = ESM::Variant(1000);
|
||||||
gmst["fCombatDistanceWerewolfMod"] = ESM::Variant(0.3f);
|
gmst["fCombatDistanceWerewolfMod"] = ESM::Variant(0.3f);
|
||||||
|
|
||||||
std::map<std::string, ESM::Variant> globals;
|
std::map<std::string, ESM::Variant> globals;
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
</Widget>
|
</Widget>
|
||||||
|
|
||||||
<Widget type="AutoSizedButton" skin="MW_Button" position="0 60 60 24" name="MaxSaleButton" align="Left Top">
|
<Widget type="AutoSizedButton" skin="MW_Button" position="0 60 60 24" name="MaxSaleButton" align="Left Top">
|
||||||
<Property key="Caption" value="Max. Sale"/> <!-- GMST sMaxSale doesn't work -->
|
<Property key="Caption" value="#{sMaxSale}"/>
|
||||||
</Widget>
|
</Widget>
|
||||||
</Widget>
|
</Widget>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue