1846
Modification Help / Re: "/" command help
« on: January 08, 2011, 03:50:00 PM »Code: [Select]
$remapDivision[$remapCount] = "Section Title";
$remapName[$remapCount] = "Bind Title";
$remapCmd[$remapCount] = "function";
$remapCount++;
Would make a keybind Called Bind Title under Section Title that when activated will execute the command: function();
If you wanted to add two binds to the same section:
Code: [Select]
$remapDivision[$remapCount] = "Some Section";
$remapName[$remapCount] = "Bind1";
$remapCmd[$remapCount] = "function";
$remapCount++;
$remapName[$remapCount] = "Bind2";
$remapCmd[$remapCount] = "function";
$remapCount++;