Index: /xmlTools/trunk/posUpdate/ParametersParser.cs
===================================================================
--- /xmlTools/trunk/posUpdate/ParametersParser.cs	(revision 860)
+++ /xmlTools/trunk/posUpdate/ParametersParser.cs	(revision 861)
@@ -51,9 +51,9 @@
             [Parameter(Required = true, Description = "The new first value of the chain. All the chain will be updated based on this value")] string newValue,
             [Parameter(Description = "Value which have some kind of relation with -newVal \n Together with -newVal updates all the values based on the" +
-                "-newVal and another position specified on -valRelation parameter (basically starts with (newVal-valRelation) ) Is especially useful when" +
+                "-newvalue and another position specified on -valrelation parameter (basically starts with (newvalue-valrelation) ) Is especially useful when" +
                 "updating multiple related chains (on different files), like multiple objects from one position to another. Don't use with -filename, because" +
-                "it will only update one file. \nExample: xmlTools.exe -newVal \"1 1 1\" -valRelation \"4 4 4\" -valElement Translation -valParentElement" +
+                "it will only update one file. \nExample: xmlTools.exe updatechainvalues -filename:OBANheli_body_center.xml -newvalue:\"1 1 1\" -valrelation:\"4 4 4\" -element:Translation -parelement:" +
                 "OBANKeyFrame")] string valRelation,
-            [Parameter(Description = "Only update specific positions. Positions starts with 0, separted multiple positions with space. Example: valPositions=0 1 4")] [MoreThan(-1)]  string valPositions
+            [Parameter(Description = "Only update specific positions. Positions starts with 0, separted multiple positions with space. Example: valpositions=\"0 1 4\"")] [MoreThan(-1)]  string valPositions
             )
         {
Index: /xmlTools/trunk/posUpdate/Program.cs
===================================================================
--- /xmlTools/trunk/posUpdate/Program.cs	(revision 860)
+++ /xmlTools/trunk/posUpdate/Program.cs	(revision 861)
@@ -11,5 +11,5 @@
     class Program
     {
-        public static readonly string toolsVersion = "0.8d";
+        public static readonly string toolsVersion = "0.8e";
         private static appErrors lastError = appErrors.NO_ERROR;
 
Index: /xmlTools/trunk/posUpdate/XmlTools.cs
===================================================================
--- /xmlTools/trunk/posUpdate/XmlTools.cs	(revision 860)
+++ /xmlTools/trunk/posUpdate/XmlTools.cs	(revision 861)
@@ -230,5 +230,5 @@
             Util.getAllSpecificElements(xdoc.DocumentElement, ref myElements, this.posElement, this.posParentElement); //Returns all after "Oni" element
 
-            if (valuePositions == "")
+            if (valuePositions == null)
             {
                 newXmlLastPos = new XmlNumberValue(newValue);
@@ -239,5 +239,5 @@
             }
 
-            if (valuePositions != "")
+            if (valuePositions != null)
             {
                 checkValidSpecificPositions(valuePositions, newValue, myElements[0].InnerText);
@@ -258,5 +258,5 @@
                     else
                     { // first time just assign to last value
-                        if (valueRelation != "")
+                        if (valueRelation != null)
                         {
                             newXmlLastPos = XmlNumberValue.difference(newXmlLastPos, XmlNumberValue.difference(new XmlNumberValue(valueRelation), xmlCurrValue));
Index: /xmlTools/trunk/posUpdate/xmlTools.csproj.user
===================================================================
--- /xmlTools/trunk/posUpdate/xmlTools.csproj.user	(revision 860)
+++ /xmlTools/trunk/posUpdate/xmlTools.csproj.user	(revision 861)
@@ -2,5 +2,6 @@
 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
   <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
-    <StartArguments>versions</StartArguments>
+    <StartArguments>updatechainvalues -filename:OBANheli_body_center.xml -newvalue:"20 10 30" -element:Translation -parelement:OBANKeyFrameversions</StartArguments>
+    <StartWorkingDirectory>C:\games\Oni\AE\Tools</StartWorkingDirectory>
   </PropertyGroup>
   <PropertyGroup>
@@ -15,5 +16,6 @@
   </PropertyGroup>
   <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
-    <StartArguments>replacealsl -element:FirstLevel -value:0 -nobackups -filename:"C:\Users\home\Documents\Visual Studio 2012\Projects\posUpdate\posUpdate\bin\Debug\%2a.xml"</StartArguments>
+    <StartArguments>updatechainvalues -filename:OBANheli_body_center.xml -newvalue:"20 10 30" -element:Translation -parelement:OBANKeyFrame</StartArguments>
+    <StartWorkingDirectory>C:\games\Oni\AE\Tools</StartWorkingDirectory>
   </PropertyGroup>
 </Project>
