pause

Game Editor comments and discussion.

pause

Postby Scorpion50o1 » Wed Jun 23, 2010 2:05 pm

simple way to pause a game without pausing a pause menu or something
ok first off make a variable called pause> ok make a pause menu or something> you only want you actor to be paused not the pause menu so go to ur actor(s) go to draw actor>script editor and put this code

if
(pause==0);
EventEnable("Event Actor", EVENTALL);
if
(pause==1);
EventDisable("Event Actor", EVENTALL);

ok now only that actor will be paused(copy and paste that code to every actor u want that to apply to)
now go to ur pause menu button and go to mouse button down event> left or right click (doesnt matter) now go to script editor
and type

pause=1;

ok now for this u need a resume game button on ur pause menu and go to mouse button down event> left or right button> script editor type this in

pause=0;
OMG IM SO BORED <(^^)> (>^^)> (>^^)>
92% of teens have moved on to rap. If you are part of the 8% who still listen to real music, copy and paste this into your signature.
User avatar
Scorpion50o1
 
Posts: 246
Joined: Fri Apr 17, 2009 1:07 am
Location: TX
Score: 8 Give a positive score

Re: pause

Postby Bee-Ant » Wed Jun 23, 2010 2:27 pm

This wont work...
Just after it set :
Scorpion50o1 wrote:EventDisable("Event Actor", EVENTALL);

It won't accept any action from any event anymore...
So, although you've set :
Scorpion50o1 wrote:EventEnable("Event Actor", EVENTALL);

It wont return itself to enable state, because DrawActor is already disabled...

The right way is to use this code :
Code: Select all
if(pause==1)
{
    directional_velocity=0;
    ChangeAnimationDirection("Event Actor", STOPPED);
}
else
{
    ChangeAnimationDirection("Event Actor", FORWARD);   
}

:D
User avatar
Bee-Ant
 
Posts: 3723
Joined: Wed Apr 11, 2007 12:05 pm
Location: http://www.instagram.com/bee_ant
Score: 210 Give a positive score

Re: pause

Postby Hblade » Wed Jun 23, 2010 3:26 pm

PauseGameOn() ftw? o.o
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: pause

Postby Scorpion50o1 » Wed Jun 23, 2010 3:34 pm

then u cant do anything without unpausing this is for pausing certain actors
OMG IM SO BORED <(^^)> (>^^)> (>^^)>
92% of teens have moved on to rap. If you are part of the 8% who still listen to real music, copy and paste this into your signature.
User avatar
Scorpion50o1
 
Posts: 246
Joined: Fri Apr 17, 2009 1:07 am
Location: TX
Score: 8 Give a positive score

Re: pause

Postby Hblade » Wed Jun 23, 2010 3:35 pm

oh :P
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score


Return to GE - General

Who is online

Users browsing this forum: No registered users and 1 guest

cron