Don't know if this is the right place for this but, it seems i found a fix to make Gear Gal and other traders compatible with Realism, here's what i did :
I went to Gear Gal mod file then i oppened the "db" folder, in there i opened "Base.json"
Code
i looked for this :
"gridHeight": 300,
"loyaltyLevels": [{
"minLevel": 1,
"minSalesSum": 0,
"minStanding": 0,
"buy_price_coef": 50,
"repair_price_coef": 150,
"insurance_price_coef": 10,
"exchange_price_coef": 0,
"heal_price_coef": 0
}
Display More
Code
Added this
},
{
"minLevel": 2,
"minSalesSum": 0,
"minStanding": 0,
"buy_price_coef": 50,
"repair_price_coef": 150,
"insurance_price_coef": 10,
"exchange_price_coef": 0,
"heal_price_coef": 0
},
{
"minLevel": 3,
"minSalesSum": 0,
"minStanding": 0,
"buy_price_coef": 50,
"repair_price_coef": 150,
"insurance_price_coef": 10,
"exchange_price_coef": 0,
"heal_price_coef": 0
},
{
"minLevel": 4,
"minSalesSum": 0,
"minStanding": 0,
"buy_price_coef": 50,
"repair_price_coef": 150,
"insurance_price_coef": 10,
"exchange_price_coef": 0,
"heal_price_coef": 0
Display More
Code
It should look like this when you are done :
"gridHeight": 300,
"loyaltyLevels": [{
"minLevel": 1,
"minSalesSum": 0,
"minStanding": 0,
"buy_price_coef": 50,
"repair_price_coef": 150,
"insurance_price_coef": 10,
"exchange_price_coef": 0,
"heal_price_coef": 0
},
{
"minLevel": 2,
"minSalesSum": 0,
"minStanding": 0,
"buy_price_coef": 50,
"repair_price_coef": 150,
"insurance_price_coef": 10,
"exchange_price_coef": 0,
"heal_price_coef": 0
},
{
"minLevel": 3,
"minSalesSum": 0,
"minStanding": 0,
"buy_price_coef": 50,
"repair_price_coef": 150,
"insurance_price_coef": 10,
"exchange_price_coef": 0,
"heal_price_coef": 0
},
{
"minLevel": 4,
"minSalesSum": 0,
"minStanding": 0,
"buy_price_coef": 50,
"repair_price_coef": 150,
"insurance_price_coef": 10,
"exchange_price_coef": 0,
"heal_price_coef": 0
}
Display More
For me it work, i think it's because traders like Gear Gal have no reputation level, adding this to the code pretty much make the trader have 4 reputation levels
I tested it with both Gear Gal and Priscilu and it worked for me.