View Single Post
  #9  
Old 06-25-2006, 12:22 PM
JustBreathe JustBreathe is offline
Registered User
Join Date: Jun 2006
Posts: 59
JustBreathe is on a distinguished road
Quote:
Originally Posted by contiga
Then you could activate it with any mouse button.. (left, right, middle, etc);

PHP Code:
//#CLIENTSIDE
function onMouseDown(button) {
  if (
button "left"
    
putbomb(1,mousex,mousey);

I vote for button as param!

PHP Code:
function onMouseDown()
  {
  if ( 
params.size() < )
    return 
onMouseDown"left" );
  }

function 
onRightMouseDown()
  {
  
this.trigger("MouseDown""right" );
  }

function 
onMiddleMouseDown()
  {
  
this.trigger("MouseDown""middle" );
  } 
for the win!
Reply With Quote