cataleeeccctic Posted March 5, 2021 Share Posted March 5, 2021 (edited) Hello everyone, can somebody help me fix my script compilation error please? I am not very good at fixing this. It has only one line of error but I don't know how to fix it. Please help me. Thanks.Mods Merged(in actor.ws) :- E3 Improved Combat Animations at The Witcher 3 Nexus - Mods and community- Combat Speed Mod - Faster or Slower Animations at The Witcher 3 Nexus - Mods and community- Better Parries - Parry and Counter Heavy Attacks - Update at The Witcher 3 Nexus - Mods and community Error [mod0000_mergedfiles]game\actor.ws(7091): Found unexpected '}' Pasetebin:actor.ws problem - Pastebin.com Edited March 5, 2021 by cataleeeccctic Link to comment Share on other sites More sharing options...
sc0urge Posted March 11, 2021 Share Posted March 11, 2021 (edited) Since line 7091 has the terminating brace for the CActor class, it's a mismatched terminating brace somewhere in that class. Mismatched merges are common, especially with more complicated mods. The best way is to start from the top or bottom and read through it to find where that happened, or do that every time you diff so it's not so hard to find. Start by searching for comments ('//' or '/*') and that will show you where most mods begin and end. You have an extra } on line 1280 before the return statement for CalculateFinalAnimationSpeedMultiplier() . Delete that and it should work. Edited March 11, 2021 by sc0urge Link to comment Share on other sites More sharing options...
Recommended Posts