diff --git a/apps/openmw/mwscript/docs/vmformat.txt b/apps/openmw/mwscript/docs/vmformat.txt
index 005fb82c4..af80e88b0 100644
--- a/apps/openmw/mwscript/docs/vmformat.txt
+++ b/apps/openmw/mwscript/docs/vmformat.txt
@@ -347,5 +347,7 @@ op 0x2000217: BecomeWerewolf
 op 0x2000218: BecomeWerewolfExplicit
 op 0x2000219: UndoWerewolf
 op 0x200021a: UndoWerewolfExplicit
+op 0x200021b: SetWerewolfAcrobatics
+op 0x200021c: SetWerewolfAcrobaticsExplicit
 
-opcodes 0x200021b-0x3ffffff unused
+opcodes 0x200021d-0x3ffffff unused
diff --git a/apps/openmw/mwscript/statsextensions.cpp b/apps/openmw/mwscript/statsextensions.cpp
index e4bab47bd..0ae5bc74f 100644
--- a/apps/openmw/mwscript/statsextensions.cpp
+++ b/apps/openmw/mwscript/statsextensions.cpp
@@ -1069,6 +1069,18 @@ namespace MWScript
                 }
         };
 
+        template <class R>
+        class OpSetWerewolfAcrobatics : public Interpreter::Opcode0
+        {
+            public:
+
+                virtual void execute (Interpreter::Runtime& runtime)
+                {
+                    // What to do? Stats (attributes, skills) are already set and unset with
+                    // BecomeWerewolf and UndoWerewolf.
+                }
+        };
+
 
         void installOpcodes (Interpreter::Interpreter& interpreter)
         {
@@ -1194,6 +1206,8 @@ namespace MWScript
             interpreter.installSegment5 (Compiler::Stats::opcodeBecomeWerewolfExplicit, new OpSetWerewolf<ExplicitRef, true>);
             interpreter.installSegment5 (Compiler::Stats::opcodeUndoWerewolf, new OpSetWerewolf<ImplicitRef, false>);
             interpreter.installSegment5 (Compiler::Stats::opcodeUndoWerewolfExplicit, new OpSetWerewolf<ExplicitRef, false>);
+            interpreter.installSegment5 (Compiler::Stats::opcodeSetWerewolfAcrobatics, new OpSetWerewolfAcrobatics<ImplicitRef>);
+            interpreter.installSegment5 (Compiler::Stats::opcodeSetWerewolfAcrobaticsExplicit, new OpSetWerewolfAcrobatics<ExplicitRef>);
         }
     }
 }
diff --git a/components/compiler/extensions0.cpp b/components/compiler/extensions0.cpp
index 54bf6de2e..419755251 100644
--- a/components/compiler/extensions0.cpp
+++ b/components/compiler/extensions0.cpp
@@ -421,6 +421,7 @@ namespace Compiler
 
             extensions.registerInstruction("becomewerewolf", "", opcodeBecomeWerewolf, opcodeBecomeWerewolfExplicit);
             extensions.registerInstruction("undowerewolf", "", opcodeUndoWerewolf, opcodeUndoWerewolfExplicit);
+            extensions.registerInstruction("setwerewolfacrobatics", "", opcodeSetWerewolfAcrobatics, opcodeSetWerewolfAcrobaticsExplicit);
         }
     }
 
diff --git a/components/compiler/opcodes.hpp b/components/compiler/opcodes.hpp
index 5c61cee8b..2fdf1d2d2 100644
--- a/components/compiler/opcodes.hpp
+++ b/components/compiler/opcodes.hpp
@@ -350,6 +350,8 @@ namespace Compiler
         const int opcodeBecomeWerewolfExplicit = 0x2000218;
         const int opcodeUndoWerewolf = 0x2000219;
         const int opcodeUndoWerewolfExplicit = 0x200021a;
+        const int opcodeSetWerewolfAcrobatics = 0x200021b;
+        const int opcodeSetWerewolfAcrobaticsExplicit = 0x200021c;
         const int opcodeIsWerewolf = 0x20001fd;
         const int opcodeIsWerewolfExplicit = 0x20001fe;