I want to completely remove this feature.

Whether that is removing the ability to use it or actually removing the property I'm not sure.

There is tonnes of insurance reference throughout the files, but I'm wondering what the "cleanest" way would be so that players simply can't insure items?

Cheers!

Nick
 
Take out the context menu entry in PlayerMobile for ToggleInsurance. Not sure if there is any other way to insure items. ;)
 
Go to scripts\Misc\CurrentExpansion.cs

Find:

C#:
Mobile.InsuranceEnabled = Core.AOS && !Siege.SiegeShard;

and replace it with:

C#:
Mobile.InsuranceEnabled = false;

This is the cleanest way to do it friend.
 
Go to scripts\Misc\CurrentExpansion.cs

Find:

C#:
Mobile.InsuranceEnabled = Core.AOS && !Siege.SiegeShard;

and replace it with:

C#:
Mobile.InsuranceEnabled = false;

This is the cleanest way to do it friend.

This way worked PERFECTLY! Removes context menu's automatically etc.

Thank you Tasanar :)
 
If you are using the newest repo it is now called ShardSettings

Scripts/Misc = ShardSettings.cs

Just change the true to false for insurance, if you want to disable it.
 
Back