View Single Post
  #3  
Old 05-02-2010, 04:16 AM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
Whenever I can't figure out a Keypressed I usually use the following script:

PHP Code:
//#CLIENTSIDE
function onKeyPressed(keycode,keystring,scancode)  {
  echo(
"Keycode: " keycode);
  echo(
"Keystring: " keystring);
  echo(
"Scancode: " scancode);

Then from there you can find the right keycode or scancode and form the proper if statement.

Edit: Looks like Switch already posted that.
__________________
Quote:
Reply With Quote