Filip_G Posted April 6, 2024 Share Posted April 6, 2024 Hello everyone. Is here anyone able and wiilling to make a mod (or editted script or whatever is necessary) with weaker Wilson please? I´m thinking about Wilson with some of Wes´ stats, namely: Lower health/hunger/sanity Damage penalty Faster freezing/overheating Attracting lightning more than others Slower recovery from grogginess Less efficient while using tools You might say "play as Wes then" but Wes sux I love Wilson, his quotes, beard and everything...Everyone has a fav character. *Maybe an idea for future updates? - adding an option for each character to play their weaker counterparts? Some challenging mode. 1 Link to comment https://forums.kleientertainment.com/forums/topic/155489-mod-request-weaker-wilson/ Share on other sites More sharing options...
Filip_G Posted April 7, 2024 Author Share Posted April 7, 2024 So I managed to set health/hunger/sanity to 75 with "GLOBAL.TUNING.WILSON_SANITY = 75" etc. I tried to copy and modify other lines from Wes´ or tuning.lua scripts but it didn´t work at all. Spoiler Something like GLOBAL.TUNING.WILSON_LIGHTNING_TARGET_CHANCE = 0.6 GLOBAL.TUNING.WILSON_DAMAGE_MULT = .75 GLOBAL.TUNING.WILSON_GROGGINESS_DECAY_RATE = 0.01 * 0.75, --GROGGINESS_DECAY_RATE = .01 GLOBAL.TUNING.WILSON_WORKEFFECTIVENESS_MODIFIER = 0.75 GLOBAL.TUNING.WES_HOUND_TARGET_MULT = 2.0 Any ideas how to make it work, please? Link to comment https://forums.kleientertainment.com/forums/topic/155489-mod-request-weaker-wilson/#findComment-1709664 Share on other sites More sharing options...
Haruhi Kawaii Posted April 8, 2024 Share Posted April 8, 2024 10 hours ago, Filip_G said: So I managed to set health/hunger/sanity to 75 with "GLOBAL.TUNING.WILSON_SANITY = 75" etc. I tried to copy and modify other lines from Wes´ or tuning.lua scripts but it didn´t work at all. Hide contents Something like GLOBAL.TUNING.WILSON_LIGHTNING_TARGET_CHANCE = 0.6 GLOBAL.TUNING.WILSON_DAMAGE_MULT = .75 GLOBAL.TUNING.WILSON_GROGGINESS_DECAY_RATE = 0.01 * 0.75, --GROGGINESS_DECAY_RATE = .01 GLOBAL.TUNING.WILSON_WORKEFFECTIVENESS_MODIFIER = 0.75 GLOBAL.TUNING.WES_HOUND_TARGET_MULT = 2.0 Any ideas how to make it work, please? Copy this into your modmain local TUNING = GLOBAL.TUNING local ACTIONS = GLOBAL.ACTIONS AddPrefabPostInit("wilson", function(inst) if not GLOBAL.TheWorld.ismastersim then return inst end inst.components.health:SetMaxHealth(TUNING.WES_HEALTH) inst.components.hunger:SetMax(TUNING.WES_HUNGER) inst.components.sanity:SetMax(TUNING.WES_SANITY) inst.components.temperature.inherentinsulation = -TUNING.INSULATION_TINY inst.components.temperature.inherentsummerinsulation = -TUNING.INSULATION_TINY inst.components.grogginess.decayrate = TUNING.WES_GROGGINESS_DECAY_RATE inst.components.playerlightningtarget:SetHitChance(TUNING.WES_LIGHTNING_TARGET_CHANCE) inst.components.workmultiplier:AddMultiplier(ACTIONS.CHOP, TUNING.WES_WORKEFFECTIVENESS_MODIFIER, inst) inst.components.workmultiplier:AddMultiplier(ACTIONS.MINE, TUNING.WES_WORKEFFECTIVENESS_MODIFIER, inst) inst.components.workmultiplier:AddMultiplier(ACTIONS.HAMMER, TUNING.WES_WORKEFFECTIVENESS_MODIFIER, inst) if inst.components.efficientuser == nil then inst:AddComponent("efficientuser") end inst.components.efficientuser:AddMultiplier(ACTIONS.CHOP, TUNING.WES_WORKEFFECTIVENESS_MODIFIER, inst) inst.components.efficientuser:AddMultiplier(ACTIONS.MINE, TUNING.WES_WORKEFFECTIVENESS_MODIFIER, inst) inst.components.efficientuser:AddMultiplier(ACTIONS.HAMMER, TUNING.WES_WORKEFFECTIVENESS_MODIFIER, inst) inst.components.efficientuser:AddMultiplier(ACTIONS.ATTACK, TUNING.WES_DAMAGE_MULT, inst) inst.components.combat.damagemultiplier = TUNING.WES_DAMAGE_MULT end) 1 Link to comment https://forums.kleientertainment.com/forums/topic/155489-mod-request-weaker-wilson/#findComment-1709701 Share on other sites More sharing options...
Filip_G Posted April 8, 2024 Author Share Posted April 8, 2024 Wow, thank you very very much Link to comment https://forums.kleientertainment.com/forums/topic/155489-mod-request-weaker-wilson/#findComment-1709714 Share on other sites More sharing options...
Filip_G Posted September 21, 2024 Author Share Posted September 21, 2024 Hello again, how can this modmain be transfered to normal DS/RoG/SW/Ham please? Maybe it is just my impression, but i feel like DST is not DST anymore...too much of the new content is slowly killing the game. Link to comment https://forums.kleientertainment.com/forums/topic/155489-mod-request-weaker-wilson/#findComment-1749881 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now