Results 1 to 3 of 3

Thread: Middle Mouse Button

  1. #1
    Private First Class YuriJurek's Avatar
    Join Date
    Jun 2013
    Posts
    219
    Thanks
    152
    Thanked 88 Times in 47 Posts

    Middle Mouse Button

    Think it is pretty straight forward question but could not find anything on that.

    How to find if someone is pressing "middle mouse button" ?

  2. #2
    Sergeant serthy's Avatar
    Join Date
    Nov 2012
    Posts
    450
    Thanks
    96
    Thanked 296 Times in 188 Posts
    either:

    /bind MOUSE3 "openscriptmenu blabla MOUSE3"

    PHP Code:
    onMenuResponse()
    {
        
    self endon"disconnect" );

        while( 
    true )
        {
            
    self waittill"menuresponse" menu response );

            if( 
    response == "MOUSE3" )
            {
                
    //...
            
    }
        }

    or use libcod
    Last edited by serthy; 30th September 2013 at 18:17.

  3. The Following 2 Users Say Thank You to serthy For This Useful Post:

    Ni3ls (1st October 2013),YuriJurek (30th September 2013)

  4. #3
    Private First Class YuriJurek's Avatar
    Join Date
    Jun 2013
    Posts
    219
    Thanks
    152
    Thanked 88 Times in 47 Posts
    Thanks for quick help, I forgot that cod2 is so simple I can just do it with MOUSE3. ;lol

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •