Okay, we all know about the setfocus command, for making the Graal top-down camera look at different co-ordinates. But once you've used it, how do you make it switch back to the normal follow-player cam?
NPC Code:
setfocus players[0].x,players[0].y;
... is the solution I've been told in the past, but all this does is make the camera look at your player and stay locked on to that spot, without following the player around the level. Will I need a:
NPC Code:
if (timeout){
setfocus players[0].x,players[0].y;
timeout = 0.05;
}
to manually bring back the normal camera, or is there an easier way?