elafrosicky Posted July 20, 2016 Share Posted July 20, 2016 there is a way to make a mod for disable jumping or reduce jump heigth but only when you are in combat? i think that is the fastest way to prevent abuse the enemies because they cant jump over obstacles. thanks! Link to comment Share on other sites More sharing options...
elafrosicky Posted July 20, 2016 Author Share Posted July 20, 2016 i'm having some problems, trying to implement a script fot this, this is the error when i compile: Starting 1 compile threads for 1 files...Compiling "NoJumpInCombat"...A:\Juegos\The Elder Scrolls V Skyrim - Legendary Edition\Data\Scripts\Source\NoJumpInCombat.psc(11,7): no viable alternative at input '.'No output generated for NoJumpInCombat.psc, compilation failed. Batch compile of 1 files finished. 0 succeeded, 1 failed.Failed on NoJumpInCombat.psc and this is the script: scriptname NoJumpInCombat ;InputEnableLayer myLayer;myLayer.create();myLayer.EnableJumping();InputEnableLayer myLayer = EnableJumping.Create();InputEnableLayer myLayer = InputEnableLayer.Create();myLayer.EnableJumping() InputEnableLayer myLayermyLayer.create()myLayer.EnableJumping() Event OnCombatStateChanged(Actor akTarget, int aeCombatState)if (akTarget == Game.GetPlayer())if (aeCombatState== 0);We have left combatmyLayer.EnableJumping(true)elseif (aeCombatState == 1);We have entered combatmyLayer.EnableJumping(false)elseif (aeCombatState == 2);We are searching...myLayer.EnableJumping(false)endifelseendifendEvent Link to comment Share on other sites More sharing options...
Gamer921 Posted April 28, 2017 Share Posted April 28, 2017 Umm it looks like it dont reference anything on line 1. Link to comment Share on other sites More sharing options...
Recommended Posts