Serial Reading and servo selection

yes, thats what i want to do,

another possibility is to send data and store it in an array with 2 numbers

something like

if(int i; i < 2; i++)
{
reading[i] = Serial.Read()
}

if(reading[0] == 201)
{
 Servo1.write(reading[1])
}


if(reading[0] == 202)
{
 Servo2.write(reading[1])
}


....

but this isnt working right now too....

any ideas?