Page 2 of 2 FirstFirst 12
Results 16 to 22 of 22
  1. #16
    Vendetta773's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    12
    Quote Originally Posted by braydonkils View Post
    Is there any way to make this while holding shift?
    If you read the original post, I asked the same question. I'd like to know a way to do that too.

  2. #17
    Elixre's Avatar
    Join Date
    May 2011
    Gender
    male
    Posts
    35
    Reputation
    10
    Thanks
    11
    Holy shit I had to recover my account just to post this and help these newbies out:

    PS scripting languages is just like reading English, a little kid could figure out what each line does if YOU JUST READ!

    This will set your "key" to shift, rather than mouse button 1 (or left click).

    Code:
    Z:: Hotkey, $LShift, Toggle
    LShift::
    Loop
    {
    SetMouseDelay 80
    Click
    If (GetKeyState("LShift","P")=0)
    Break
    }
    Last edited by Elixre; 11-24-2014 at 02:36 PM.

  3. The Following User Says Thank You to Elixre For This Useful Post:

    stormdestroyer8 (09-06-2015)

  4. #18
    KVNG's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    6
    Thank you for the share man.

  5. #19
    rerdoze's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    1
    Hello guys, i take a look at this, and... OMFG!! AWESOME!!
    Then i was looking to how i could make it work with Shift and Ctrl, and i did it ^^, poorly made, but yes, i did!!

    The Original Code was:
    Z:: Hotkey, $LButton, Toggle
    $LButton::
    Loop
    {
    SetMouseDelay 80
    Click
    If (GetKeyState("LButton","P")=0)
    Break
    }
    What i did was:
    $+LButton::
    Loop
    {
    if (GetKeyState("LShift","P")=1)
    {
    SetMouseDelay 80
    Click
    If (GetKeyState("LButton","P")=0)
    Break
    }
    else
    Break
    }
    $^LButton::
    Loop
    {
    if (GetKeyState("LControl","P")=1)
    {
    SetMouseDelay 80
    Click
    If (GetKeyState("LButton","P")=0)
    Break
    }
    else
    Break
    }
    Q: What it will do?
    A: It will just Check if Shift(+) or Ctrl(^) is pressed, if it is pressed (=1) it will execute the code bellow.

    The whole code, just in case:
    Z:: Hotkey, $LButton, Toggle
    $LButton::
    Loop
    {
    SetMouseDelay 80
    Click
    If (GetKeyState("LButton","P")=0)
    Break
    }

    $+LButton::
    Loop
    {
    if (GetKeyState("LShift","P")=1)
    {
    SetMouseDelay 80
    Click
    If (GetKeyState("LButton","P")=0)
    Break
    }
    else
    Break
    }
    $^LButton::
    Loop
    {
    if (GetKeyState("LControl","P")=1)
    {
    SetMouseDelay 80
    Click
    If (GetKeyState("LButton","P")=0)
    Break
    }
    else
    Break
    }

  6. #20
    csgoskins's Avatar
    Join Date
    Dec 2014
    Gender
    male
    Location
    LOWES PARKINGLOT
    Posts
    82
    Reputation
    52
    Thanks
    194
    My Mood
    Mellow
    easy and nice script!

  7. #21
    ricardo0o's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Is there anything I can due to make it work while in crouch?

    EDIT: NVM, should have read first...
    Last edited by ricardo0o; 12-30-2014 at 04:07 PM.

  8. #22
    gibin01's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    VAC bans why I get when I use ?

    - - - Updated - - -

    VAC bans why I get when I use ?

Page 2 of 2 FirstFirst 12

Similar Threads

  1. I need a little bit of editing. CS:GO recoil AHK. [SCRIPT]
    By zagehh in forum Counter-Strike 2 Discussions
    Replies: 3
    Last Post: 12-10-2014, 02:31 AM
  2. [Request] Super Simple Auto-Disguise Script
    By andre02203 in forum Team Fortress 2 Hacks
    Replies: 7
    Last Post: 11-01-2012, 01:14 PM
  3. [Release] [CS 1.6] Super Simple Wall v6.7 by <:PrOdIgY:> AKA Jimster480
    By Jimster480 in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 0
    Last Post: 01-08-2010, 06:29 AM
  4. [Release] [CS 1.6] Super Simple Wall v6.6 by <:PrOdIgY:> AKA Jimster480
    By Jimster480 in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 10
    Last Post: 01-07-2010, 09:15 AM
  5. [Release] Super Simple Wall v6.5
    By rfbtgn in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 3
    Last Post: 12-10-2009, 08:35 AM