RimWorld
375 értékelés
Mad Skills+
2
2
   
Díjazás
Kedvenc
Kedvenc
Törlés
Mod, 1.4, 1.5, 1.6
Fájlméret:
Közzétéve:
Frissítve:
1.219 MB
2023. aug. 7., 8:04
aug. 3., 19:24
22 változásjegyzék ( megnézés )

Feliratkozás a letöltéshez
Mad Skills+

1 Cedaro készítette gyűjteményben
cedaro's mods
37 elem
Leírás
Mad Skills+ is a fork of Mad Skills originally by Ratys, aimming to extend features and compatibility. Distribute with permission.

Features
  • Compatible with Memory Implants
  • Integrated with Vanilla Skills Expanded
  • New customizable options:
    • Sleep stop decaying: Only awaken pawn will lose their skill XP
    • Retention: Pawn will stop losing skill XP in a short period after learning that skill
    • Experience: Each level pawn has ever reached in the past can reduce the skill decay potency
    • Lv.20+ Multiplier: Add a soft cap for endless growth

As its origin, safe to add or remove from existing game, and only has necessary minimal impact on performance.

Support languages:
- English
- Chinese

Licence (GPLv3)[www.gnu.org]
Github[github.com]
133 megjegyzés
[Br] Nasid szept. 21., 5:17 
ty
Sui-chan wa kyou mo kawaii aug. 28., 15:10 
Regardless of mod settings/load order, it completely stops skill degradation for skills greater than 20. I suspect this is caused by the lv.20+ multiplier, but changing that value in either direction doesn't fix this issue.
SP4RTAN aug. 19., 21:32 
There seem to be some times where skill degradation still happens when it shouldn't. It's hard to test but I've definitely noticed some pawns that were level 20 drop to 19
snake aug. 17., 12:51 
my offer:

switch (level)
{
case 10: return -0.1f;
case 11: return -0.2f;
case 12: return -0.4f;
case 13: return -0.6f;
case 14: return -1.0f;
case 15: return -1.8f;
case 16: return -2.8f;
case 17: return -4.0f;
case 18: return -6.0f;
case 19: return -8.0f;
case 20: return -12.0f;
default:
if(level > 20)
{
return -16.0f;
}

return 0.0f;
}
snake aug. 17., 12:44 
hey, in your code you default decay to 0:
switch (level)
{
case 10: return -0.1f;
case 11: return -0.2f;
case 12: return -0.4f;
case 13: return -0.6f;
case 14: return -1.0f;
case 15: return -1.8f;
case 16: return -2.8f;
case 17: return -4.0f;
case 18: return -6.0f;
case 19: return -8.0f;
case 20: return -12.0f;
default: return 0.0f;
}
if you have time maybe you could extrapolate it for higher levels too? since its conflicting with endless growth and makes decay to 0. or maybe make an if statement for levels higher than 20 to take the value of -12.0f while lower values than 10 still default to 0
Bloxxxi aug. 4., 9:02 
@Cedaro Thank you for the github link. Works perfectly now.
Apraxas aug. 4., 6:04 
Hey Cedaro, it's not your mod or your mistake that 1.6 folder is missing. It's the steam. 1.6 folder missing is not just your problem but it's been happening to multiple mods these days...
Cedaro  [készítő] aug. 4., 3:14 
download the release
frus-m aug. 4., 2:15 
github link - ver 1.5
Victor aug. 3., 20:46 
I have a 1.6 folder now, I think you fixed it.