I'm not an adult and don't have my own money to be able to spend on the net. Are there any free resources?
And I manged to find a solution. I used the camera script from David Lancaster's Kindom Hearts tutorial. Here is what I used (I tinkered with the values a little).
Code:
vec_set(camera.x,vector(my.x + fcos(my.pan,-466),my.y + fsin(my.pan,-466),my.z +
160));
vec_diff(temp.x,my.x,camera.x); //make the camera look towards the player
vec_to_angle(camera.pan,temp.x);//place the camera behind the player
}