Hey
I use this
character[8].FollowCharacter(6, 5);
for character follow; but I get this error:
Type Dismatched: Cannot convert 'int' to 'Character*'
why?
thx
character[8].FollowCharacter(character[6], 5);
Or, if you use the script-O-names of the characters (say character[8] is cJohn, character[6] is cMary):
cJohn.FollowCharacter(cMary, 5);