The character control system won't work for me, it says something about can't convert string.
You mean "Type Mismatch: Cannot convert 'const string' to 'string'"?
The problem is, the plugin hasn't been updated in a while and has problems with recent versions of AGS. You can try working around the error message by converting all function calls from (for example)
ccCreateCommand("MOVE:190,100;");
to
string tempvar;
StrCopy(tempvar, "MOVE:190,100;");
ccCreateCommand(tempvar);
You can also try my CharacterControl script module (http://www.adventuregamestudio.co.uk/yabb/index.php?topic=28821).
thanks for the help ill use your mod
Edit:
It worked :D
Glad to hear it. Let me know how it goes.