 
   ...
 ...But now, this game, is about this: You are an agent and you must to finish all 2 levels
and go to the finish.
Controls: ARROWS, X
Image:
Exe File:
.Ged file:
!!! ged file is working LOW in GE!!!
 
   ...
 ...

 
  
 




 
  
  
 

 But, with sensor... I dont know how to do
  But, with sensor... I dont know how to do 



 take it apart and youll understand it all in notime!
 take it apart and youll understand it all in notime! Here.zip
 Here.zip

char *key=GetKeyState();
if (key[KEY_LEFT]==1&&key[KEY_RIGHT]==0) x -= 2;
else if (key[KEY_LEFT]==0&&key[KEY_RIGHT]==1) x += 2;
yvelocity += .9;

char *key=GetKeyState();                            // Allows in script for key variables
if (key[KEY_LEFT]==1&&key[KEY_RIGHT]==0)            // If key left is pressed and key right is not
{
   x -= 2;                                          // move left 2
}
else if (key[KEY_LEFT]==0&&key[KEY_RIGHT]==1)       // If key right is pressed and key left is not
{
   x += 2;                                          // move right 2
}
yvelocity += .9;                                    // sets gravity

 
  
 






Users browsing this forum: No registered users and 1 guest