Well I stayed up last night reading through the Online Manual and I have sorted a lot of stuff out, the pragma_path still wont work but oh well.
I have improved the control system a lot! its much smoother than it was the only thing I have to do now is animate the model but it doesn't have a bone structure and I tried to use the manual but mine never turns out like that so could someone be kind and create a skeleton structure for the model if I upload it?
Also I have a .wmv file I want to play on startup, it plays but I would also like it so when you press enter it stops the movie and returns to the game I have in function main()
var mhandle = media_play("intro.avi",NULL,100);
I have a seperate script for my player controls so what would I have to do in order to make ENTER stop the video? I tried
function movie_control()
{
if (key_i)
{
media_stop(mhandle);
}
}
but that didnt work.