AndShepherdsWeShallBe Posted July 24, 2016 Posted July 24, 2016 Hello. I got this warning while loading up my mods via ScriptMerger. Any help would be appreciated. Error [mod0000_mergedfiles]game\player\playerinput.ws(33): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(33): 'actionLocks' is not a member of '&handle:CPlayerInput' Error [mod0000_mergedfiles]game\player\playerinput.ws(39): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(43): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(46): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(312): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(313): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(333): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(345): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(352): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(355): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(365): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(367): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(379): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(507): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(509): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(511): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(513): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(521): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(564): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(566): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(568): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(570): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(578): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(594): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(599): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(601): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(602): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(605): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(615): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(617): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(619): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(621): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(629): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(634): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(640): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(656): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(658): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(662): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(3095): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(3098): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(3115): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(3119): I dont know any 'actionLocks' Error [mod0000_mergedfiles]game\player\playerinput.ws(3387): I dont know any 'actionLocks' Warning [content0]engine\environment.ws(30): Global native function 'EnableDebugOverlayFilter' was not exported from C++ code. Warning [content0]engine\environment.ws(32): Global native function 'EnableDebugPostProcess' was not exported from C++ code. Warning [content0]engine\showflags.ws(11): Global native function 'DebugSetEShowFlag' was not exported from C++ code.
smalldjo Posted July 25, 2016 Posted July 25, 2016 the mods didn't merge correctly, were there any script conflicts that you had to solve manually ?
AndShepherdsWeShallBe Posted July 25, 2016 Author Posted July 25, 2016 (edited) On 7/25/2016 at 2:35 PM, smalldjo said: the mods didn't merge correctly, were there any script conflicts that you had to solve manually ? Yes, there was. There was a conflict between AutoLoot http://www.nexusmods.com/witcher3/mods/315/? and FriendlyHud http://www.nexusmods.com/witcher3/mods/365/? Edited July 25, 2016 by AndShepherdsWeShallBe
smalldjo Posted July 25, 2016 Posted July 25, 2016 ok try this: open "thewitcher\mods\mod0000_mergedfiles\game\player\playerinput.ws"add private saved var actionLocks : array<array<SInputActionLock>>; just under class CPlayerInput { //here so it will be like this:class CPlayerInput { private saved var actionLocks : array<array<SInputActionLock>>;
AndShepherdsWeShallBe Posted July 25, 2016 Author Posted July 25, 2016 On 7/25/2016 at 6:58 PM, smalldjo said: ok try this: open "thewitcher\mods\mod0000_mergedfiles\game\player\playerinput.ws"add private saved var actionLocks : array<array<SInputActionLock>>; just under class CPlayerInput { //here so it will be like this:class CPlayerInput { private saved var actionLocks : array<array<SInputActionLock>>; It worked. Thank you very much.
Deleted19408079User Posted October 20, 2017 Posted October 20, 2017 On 7/25/2016 at 6:58 PM, smalldjo said: ok try this: open "thewitcher\mods\mod0000_mergedfiles\game\player\playerinput.ws"add private saved var actionLocks : array<array<SInputActionLock>>; just under class CPlayerInput { //here so it will be like this:class CPlayerInput { private saved var actionLocks : array<array<SInputActionLock>>; I love you!
basddff Posted March 2, 2018 Posted March 2, 2018 А можно скрин где надо искать эту строчку? Там очень много написанно, я не могу найти
SirNuttzAlot Posted July 15, 2018 Posted July 15, 2018 the only error i have is Error [mod0000_mergedfiles]game\player\playerinput.ws(3813): Found unexpected '}' If i delete the } i just get a different error:Error [mod0000_mergedfiles]game\player\playerinput.ws(305): syntax error, unexpected TOKEN_GET_PLAYER, expecting TOKEN_FUNCTION, near 'thePlayer'Line 305 looks like this:(305:) thePlayer.SetupCombatAction( EBAT_CastSign, BS_Pressed );(306:) return true;
Boneapart Posted June 7, 2020 Posted June 7, 2020 On 7/25/2016 at 6:58 PM, smalldjo said: ok try this: open "thewitcher\mods\mod0000_mergedfiles\game\player\playerinput.ws"add private saved var actionLocks : array<array<SInputActionLock>>; just under class CPlayerInput { //here so it will be like this:class CPlayerInput { private saved var actionLocks : array<array<SInputActionLock>>; Four years later this fix helped me as well, thank you.
Recommended Posts