Umm... I'm not exactly sure (haven't tested), but this may work:
void ProcessPlayer()
{
int i;
for(i=0; i<=entities; i++)
{
if(i!=player) entity.movestring[i]="";
}
}
That way it nulls all other move strings, or something, making the player the only one to move.