View Single Post
  #1  
Old 05-29-2012, 03:36 AM
blackbeltben blackbeltben is offline
Registered User
Join Date: Aug 2011
Posts: 83
blackbeltben is on a distinguished road
Multiple KeyPresses

Can someone tell me why this won't work? And how to fix it.
I want it so you have to press all three keys for it to do the action.

PHP Code:
//#CLIENTSIDE
function onKeyPressed(codekey)

 if (
key "b"
 {
  if (
key "v")
  {
    if (
key "c")
    {
     
player.chat "Activate";
     }
    }
   }
  } 
Reply With Quote