I think Rick means that the setview command would change the resetfocus coordinates. For example:
NPC Code:
//#CLIENTSIDE
function onCreated() {
setfocus(5,5); //would change the view to coordinates (5,5)
resetfocus(); // would change the view back to the player
setview(20,20); // would change resetfocus coordinates to (20,20)
setfocus(5,5); // change view to coordinates (5,5) again
resetfocus(); // this time it would change view to 20,20 as opposed to player coordinates
resetview(); // and resetview to change the coordinates setview() has set back to player coordinates.
}