lordbevan1 Posted November 8, 2018 Share Posted November 8, 2018 I want to make a ring that fortifies speed and acrobatics so long as the player isn't carrying more than 50% of their max carry weight of items. Any idea how to script that or something? Link to comment Share on other sites More sharing options...
Rizalgar Posted December 16, 2018 Share Posted December 16, 2018 (edited) Hmm... Maybe using the GetAVMod function? Number 11 is Encumberance. I've never thought to try something like this but it is interesting. I'm gonna play some Ring of Elysium with my brother, I'll write up a quick script and see what I can come up with after. Edit - Just realized I necro'd sooooo hard Edited December 16, 2018 by Rizalgar Link to comment Share on other sites More sharing options...
Rizalgar Posted December 16, 2018 Share Posted December 16, 2018 (edited) If you ever get this, this is as close as I can get it. I'm not sure how to get it to read a percentile, but it will read with a set value. So here is this. modify the encumbrance line with what you want. Attach it to a quest scn RizCarryOn short statefloat fQuestDelayTime begin gamemode let fQuestDelayTime := 10 if state == 0 if player.getequipped rizcarryring set state to 1 endif endif if state == 1 if player.GetActorValue Encumbrance >= 125 player.removespell rizfeatherring else player.addspell RizFeatherRing endif endif set state to 0 end -----EDIT----- I figured out a way to do it. Use this, attach to quest. On equip. However you want to do it. This is the base script that will work to add or remove the effects based on carry weight % short stateshort endureshort endure2float fQuestDelayTime begin gamemode let fQuestDelayTime := 10 set endure to player.GetBaseActorValue Encumbrance set endure2 to player.GetActorValue Encumbrance set endure to endure / 2 if endure2 <= endure player.addspell CarryWeightSpell endif if endure2 >= endure player.removespell CarryWeightSpell endif Edited December 17, 2018 by Rizalgar Link to comment Share on other sites More sharing options...
lordbevan1 Posted December 17, 2018 Author Share Posted December 17, 2018 Alright, I'll give this a go. Trying to create an homage to the Dark Wood Grain Ring from Dark Souls 1 Link to comment Share on other sites More sharing options...
Rizalgar Posted December 17, 2018 Share Posted December 17, 2018 Copy. You need any help, I'll be here. Link to comment Share on other sites More sharing options...
Recommended Posts