Compatibility Patch for using with my new mod Reputation System added in optional files.
To use the patch, install both mods first, then remove all the same .ws files from mod Reputation System that are also in the patch. Then overwrite the Florens - Orens - Crowns Economy System mod with the patch. After that, merge the scripts.
All compatibility patches have been updated to 4.6e version.
Uploaded a version for using with W3EE REDUX in optional files.
This version doesn't need the normal main version. To use it, remove all the same .ws files from mod W3EE REDUX (in the W3EE folder) that are also in my mod. Then install my mod( mod part goes to mods folder, and dlc part goes to DLC folder). After that, merge the scripts with other mods.
Also, added the patch using with W3EE Redux along with Vlad UI and their patch. To use this patch, follow the installation guide provided on the patch's page to install W3EE, Vlad UI and their patch. Then install the W3EE REDUX version of my mod, remove the whole scripts folder in its mod folder ( mod00FlorenEconomySystem_W3EE_REDUX\content\scripts), then install this patch to overwrite the files in W3EE and Vlad UI's patch ( I set their folder name and file path the same). After all of that, merge the scripts with other mods ( still following the installation guide provided on the patch's page).
Update: Updated for W3EE REDUX 1.42g. Thanks to MRAmers and darkmatrixxx for their feedback and helping to test the fixed versions for so many times.
To use the patches, install the mod above and my main mod first, then remove all the same .ws files from mod Cheaper Lore Friendlier Shop Prices / mod Deleveled Gear Buying Selling Servicing Prices that are also in the corresponding patch. Then overwrite my mod with the patch. After that, merge the scripts with other mods.
Pre-merged scripts for using with mod Lore Friendly Economy added in optional files.
To use the patch, install both mods first, then remove all the same .ws files from mod Lore Friendly Economy that are also in the patch. Then overwrite my mod with the patch. After that, merge the scripts with other mods.
The description of the Floren is the same as Oren’s description. What did I do wrong? I'm already in the middle of Toussaint, the language is set to English, and I’ve tried using only the mod without any other mods, but both coins still have the same description. Could you help me?
I use Friendly HUD, which shows the base value and comparison with the buy/sell price in the tooltip when at a merchant. If I want the base value shown to reflect the regional currency, will it suffice to add a line from this mod to the 2 parts in guiTooltipComponent.ws where Friendly HUD shows the base value?
This is what I have done and it seems to be working correctly, but I'd welcome any tweaks or corrections if I've done something wrong. If it's correct, confirmation would be great for both my own sake and for anyone else who would like to do this.
Hi.. thank you for the great mod. I’m using it along with the Reputation mod, and it’s working well. If I may ask, if I want to use three mods at the same time—FLORENS, REPUTATION, and Lore Friendly ECONOMY—which patch should I use?
W3ee+reputation+florens Jesus was it a Tricky merge. Honestly without knowledge of coding i couldn't have done it.
For any wondering you can at least make that combination work.with some editing of files code. Mostly fixing syntax stuff, and removal of duplicated functions. Probably made during your merging process
Any errors that say "Unexpected" will usually be syntax related. Anything that says "already exists" means you probably duplicated some code already present in the file.
But can i use one of the patch and it'll still work though? say if i just use the W3EE Redux and Vlad UI as well as the Reputation System patch of your mod will it work even if dont use the BIA and Gwwnt Redux patch?
Never mind, its a big pain in the ass merging them lol, always an error when compiling. Guess i just have to sacrifice one of those mods then, not this one or the reputation though, i cant play without them, these are great. Cheers.
474 comments
To use the patch, install both mods first, then remove all the same .ws files from mod Reputation System that are also in the patch.
Then overwrite the Florens - Orens - Crowns Economy System mod with the patch.
After that, merge the scripts.
All compatibility patches have been updated to 4.6e version.
This version doesn't need the normal main version.
To use it, remove all the same .ws files from mod W3EE REDUX (in the W3EE folder) that are also in my mod.
Then install my mod( mod part goes to mods folder, and dlc part goes to DLC folder).
After that, merge the scripts with other mods.
Also, added the patch using with W3EE Redux along with Vlad UI and their patch.
To use this patch, follow the installation guide provided on the patch's page to install W3EE, Vlad UI and their patch. Then install the W3EE REDUX version of my mod, remove the whole scripts folder in its mod folder ( mod00FlorenEconomySystem_W3EE_REDUX\content\scripts), then install this patch to overwrite the files in W3EE and Vlad UI's patch ( I set their folder name and file path the same). After all of that, merge the scripts with other mods ( still following the installation guide provided on the patch's page).
Update: Updated for W3EE REDUX 1.42g.
Thanks to MRAmers and darkmatrixxx for their feedback and helping to test the fixed versions for so many times.
To use the patches, install the mod above and my main mod first, then remove all the same .ws files from mod Cheaper Lore Friendlier Shop Prices / mod Deleveled Gear Buying Selling Servicing Prices that are also in the corresponding patch.
Then overwrite my mod with the patch.
After that, merge the scripts with other mods.
If using both mod Cheaper Lore Friendlier Shop Prices and Deleveled Gear Buying Selling Servicing Prices, then use the CLFSP - DGBSSP Pre-Merge patch instead. Remove the same files in the patch from both mods above. Then overwrite my main mod with the patch.
To use the patch, install both mods first, then remove all the same .ws files from mod Lore Friendly Economy that are also in the patch.
Then overwrite my mod with the patch.
After that, merge the scripts with other mods.
This causes your patch to throw an error at compile
I think the economy patch needs an update or is no longer needed.
I have one question, I started a new game and the prices selling/buying of the things is too high, it's part of the mod? Different from vanilla.
Like so:
//---=== modFriendlyHUD ===---
if(GetFHUDConfig().showTrueItemPrice)
{
weightValue = ((float)invItemPrice)*100.0f;
invItemPrice = itemInvComponent.GetItemPrice(item);
if( itemInvComponent.IsItemBolt( item ) ) invItemPrice /= 10;
invItemPrice = CeilF((float)invItemPrice * GetFlorenModCostMult()); //FlorensMod
weightValue /= ((float)invItemPrice);
invItemPriceString += " [" + invItemPrice + " : " + RoundMath(weightValue) + "%]";
}
//---=== modFriendlyHUD ===---
This is what I have done and it seems to be working correctly, but I'd welcome any tweaks or corrections if I've done something wrong. If it's correct, confirmation would be great for both my own sake and for anyone else who would like to do this.
If I may ask, if I want to use three mods at the same time—FLORENS, REPUTATION, and Lore Friendly ECONOMY—which patch should I use?
Thank you very much in advance.
thanks for your reply have nice day.
For any wondering you can at least make that combination work.with some editing of files code. Mostly fixing syntax stuff, and removal of duplicated functions. Probably made during your merging process
Any errors that say "Unexpected" will usually be syntax related.
Anything that says "already exists" means you probably duplicated some code already present in the file.