How to make menu when game paused???such as..
=> Resume
Option
Exit to Main Menu
Exit Game
And how to make the control changeable???Thank's a lot...

Bee-Ant wrote:How to make High Score record and list at the end of game???if the game are game over or if the game finished???
How to make menu when game paused???such as..
=> Resume
Option
Exit to Main Menu
Exit Game
And how to make the control changeable???Thank's a lot...
if(pause == 1)
{
directional_velocity = 0;
EventDisable("Event Actor", EVENTALL);
EventEnable("Event Actor", EVENTANIMATION);
}
if(pause == 0)
{
//yvelocity actions and the rest
//of your code =)
}
if(pause == 0)
{
direct = player.directional_velocity;
Angle = player.angle;
pause = 1;
}
else
{
pause = 0;
player.angle = Angle;
player.directional_velocity = direct;
}
if(pause == 0)
{
//enemy actions...
}
Bee-Ant wrote:Boss, scripts are just make me headache...send me these demo plizzz...I had downloaded your multi score with name and fighting game...but, I'm still confused with these scripts...
Users browsing this forum: No registered users and 1 guest