Post subject: Problem with frame advance
Former player
Joined: 10/1/2006
Posts: 1102
Location: boot_camp
I'm currently working on Mission Impossible for the GBC, and in that game you can run by holding A and a direction button. You can also run diagonally by holding A + up/down + left/right. Now when I'm playing the game in real time, I can run diagonally just fine. However, when I'm in frame advance mode, I hold down A + down + right, and then press the frame advance button, and the character doesn't move at all. In fact, I can hold down the frame advance button (which simulates real time) and he still won't move. Is this just a game-specific problem or is it a problem with VBA itself?
Borg Collective wrote:
Negotiation is irrelevant. Self-determination is irrelevant. You will be assimilated.
Former player
Joined: 8/1/2004
Posts: 2687
Location: Seattle, WA
___________________________________________ /\/\SHIELD FROM ABOVE/\/\ It's your keyboard. It can't accept that many button presses at once, or you have your keys mapped too close together (keyboard safety measure for people with sausages for fingers). Remap your keys further apart or use the auto-hold function. \/\/ EVERYONE BELOW THIS LINE IS A LOSER \/\/
hi nitrodon streamline: cyn-chine
Joined: 1/31/2005
Posts: 95
Your keyboard might not be able to handle pressing that many keys at once. Try binding all the keys you want to use to one button and then pressing frame advance. (edit: I blame laughing_gas)
Joined: 7/26/2006
Posts: 1215
_________________________________________________ /\ /\ /\ /\ ONLY MAUR IS A LOSER your keyboard doesn't like that combinations of keypresses. try mapping some of them to CTRL or Shift and other non-character keys. also using a gamepad would fix that.
Former player
Joined: 10/1/2006
Posts: 1102
Location: boot_camp
All right, binding two directions to the same key seems to work. Thanks for the responses.
Borg Collective wrote:
Negotiation is irrelevant. Self-determination is irrelevant. You will be assimilated.
Experienced player (612)
Joined: 4/24/2005
Posts: 612
I changed my directional buttons to:
   Up = p
 Down = ;
 Left = l
Right = '
To be able to press multiple directionals and buttons at the same time.