VPet-Simulator

VPet-Simulator

功能增加与强化
Showing 1-10 of 23 entries
< 1  2  3 >
Update: Jan 23, 2024 @ 4:04pm

Update: Jan 23, 2024 @ 3:43pm

Two new text documents have been added:
One is the Russian language interaction (which requires manually replacing the old documentation and restarting the mod to work), and the other explains how to customize the language and event content.

Update: Jan 23, 2024 @ 3:41pm

Update: Nov 10, 2023 @ 10:46am

Update: Oct 27, 2023 @ 8:12am

New:
Learn --> Dance
Now you can see little loli dancing without music

Update: Oct 26, 2023 @ 12:48pm

The following content is from Microsoft Translation

Updated - Perfect fit version 1.09
(2023/10/26)
MOD Changes:
(Test level--- character level 1034)
1. Decreased interaction income (work - 100lv dreaming, normal income 6, MOD income 9)
2. Add 2 new high-level dreaming (work - 500lv dreaming, normal 6, MOD income 33)
3.The higher the income, the higher the need for water, make sure your pet doesn't die of thirst



Briefly about the calculation change:
Get get legacy calculations:
var get = (work. MoneyBase + work. MoneyLevel * 10) * (work. MoneyLevel + 1) * (1 + work. FinishBonus / 2);
Now the game developer has selected 10 levels and calculated the average of these 10 levels to determine whether it is a supermodel
new int[] { 1, 5, 10, 20, 30, 40, 50, 75, 100, 200 };
{get += (work. MoneyBase + Math.Sqrt(lv) * work. MoneyLevel) * (1 + work. FinishBonus / 2); }
get /= WorkCalLevel.Length;
if (work. Type != Work.WorkType.Work){
get /= 12; Experience point conversion
}
var rel = get / spend;

For the obtained value, the new calculation method is reduced by half:
old calculation formulas;
if (Math.Abs(get) > (work. LevelLimit + 4) * 6) // LevelAcquisition Rate Limit;
New calculation formula;
if (Math.Abs(get) > (work. LevelLimit + 4) * 3) // LevelAcquisition Rate Limit;

Update: Sep 18, 2023 @ 6:09am

Fix: Supermodel issue
Changes;
1. Dreaming is divided into three levels (developers link income to the lowest level, so they can only be divided into levels)
2. Updated Excel supermodel calculation formula

Update: Sep 18, 2023 @ 6:08am

Update: Sep 13, 2023 @ 2:02pm

!!!High income is temporarily invalidated!!!

Update: Sep 12, 2023 @ 9:40am