06-22-2012, 07:54 AM
(06-22-2012, 12:28 AM)Angelo26 Wrote: Nothing occurred to me as to what to suggest to make this possible, sorry Madsiur
Dude you don't have to be sorry. It was a joke. I think I should put an

Nice finding Synchysi! It is simpler than I thought but I'll admit I didn't checked C2 either. Sometimes I tend to write long text for nothing.
If you absolutely want to be able to switch commands with no problem, there is a portion of code use for morph that could be adapted for this purpose. It checks where the morph command is and switch it to revert. I don't have access to C2 but it does the following (in pseudo-code):
Code:
Foreach (command com in ActiveCharacterCommands)
{
if (com.commandNumber == Morph.commandNumber)
{
com.commandNumber = Revert.commandNumber
}
}
All it does is loop for each slot and check where Morph is, with the command number. When it is found it switch the command number of the command in the specific slot. This way you can put Morph in whatever slot you want.