Page 5 of 12 FirstFirst ... 34567 ... LastLast
Results 61 to 75 of 178
  1. #61
    Janot's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Location
    Somewhere
    Posts
    167
    Reputation
    10
    Thanks
    17
    My Mood
    Hungover
    Hello, how can i apply it ?

  2. #62
    YOUCEFHam's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    Algeria
    Posts
    287
    Reputation
    24
    Thanks
    722
    My Mood
    Cool
    Quote Originally Posted by SaltySandy View Post
    Hey, good to see ur problem has been fixed. I play at mouse speed 8

    Here again the pic with the upgrade items



    Sry, about the pic, but always when i want to paste the pic like u wrote in another thread this forum tells me, that im not allowed to paste links
    Script for mouse speed 8:

    Code:
    ;
    ; AutoHotkey Version: 1.x
    ; Language:       English
    ; Platform:       Win9x/NT
    ; Author:         A.N.Other <myemail@nowhere.com>
    ;
    ; Script Function:
    ;    Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
    ;
    
    #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
    SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
    
    ;-----Please modify the two values only or the script will broken
    
    ;----------------Here the key for pause the script [AltGr + P]
    ^!p::Suspend
    ;----------------Here the key for reload the script [AltGr + O]
    ^!o::Reload
    
    ~LButton::
    {
    ;---if you want to change the key to "NumLock". (remplace "Capslock")
    if GetKeyState("Capslock", "T")=0
        {
            while GetKeyState("LButton", "P")=1
            {
                BlockInput, MouseMove
                DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
                Sleep, 1        ;you can change this two.
                ;~ Sleep, 1        ;you can change this two.
                ;~ Sleep, 1        ;you can change this two.
                BlockInput, MouseMoveoff
            }
            return
        }
    }
    return
    
    ;----------------Here the key for Exit the script [AltGr + M]
    ^!m::ExitApp

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

    SaltySandy (10-20-2014)

  4. #63
    YOUCEFHam's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    Algeria
    Posts
    287
    Reputation
    24
    Thanks
    722
    My Mood
    Cool

    Thumbs up No recoil for PP2000/MK 46/Sar-21

    Quote Originally Posted by trainerlover View Post
    Hi again,



    Mouse speed is 15

    Hello trainerlover,

    Sorry, i take a long time to reply.


    PP2000 (Don't use the switch key)

    PP2000.ahk
    Code:
    ;
    ; AutoHotkey Version: 1.x
    ; Language:       English
    ; Platform:       Win9x/NT
    ; Author:         A.N.Other <myemail@nowhere.com>
    ;
    ; Script Function:
    ;    Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
    ;
    
    #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
    SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
    
    ;-----Please modify the two values only or the script will broken
    
    ;----------------Here the key for pause the script [AltGr + P]
    ^!p::Suspend
    ;----------------Here the key for reload the script [AltGr + O]
    ^!o::Reload
    
    ~LButton::
    {
    ;---if you want to change the key to "NumLock". (remplace "Capslock")
    if GetKeyState("Capslock", "T")=0
        {
            while GetKeyState("LButton", "P")=1
            {
                BlockInput, MouseMove
                DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
                Sleep, 1        ;you can change this two.
                Sleep, 1        ;you can change this two.
                Sleep, 1        ;you can change this two.
                BlockInput, MouseMoveoff
            }
            return
        }
    }
    return

    MK 46 (Use the switch key)

    MK46.ahk

    Code:
    ;
    ; AutoHotkey Version: 1.x
    ; Language:       English
    ; Platform:       Win9x/NT
    ; Author:         A.N.Other <myemail@nowhere.com>
    ;
    ; Script Function:
    ;    Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
    ;
    
    #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
    SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
    
    ;-----Please modify the two values only or the script will broken
    
    ;----------------Here the key for pause the script [AltGr + P]
    ^!p::Suspend
    ;----------------Here the key for reload the script [AltGr + O]
    ^!o::Reload
    
    ~LButton::
    {
    ;---if you want to change the key to "NumLock". (remplace "Capslock")
    if GetKeyState("Capslock", "T")=0
        {
            while GetKeyState("LButton", "P")=1
            {
                BlockInput, MouseMove
                DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
                ;~ Sleep, 1        ;you can change this two.
                DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
                Sleep, 3        ;you can change this two.
                ;~ Sleep, 1        ;you can change this two.
                ;~ Sleep, 1        ;you can change this two.
                BlockInput, MouseMoveoff
            }
            return
        }
    else
        {
            while GetKeyState("LButton", "P")=1
            {
            DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
            Sleep, 1      ;you can change this two.
            Sleep, 1      ;you can change this two.
            ;~ Sleep, 1      ;you can change this two.
            ;~ Sleep, 1      ;you can change this two.
            }
            return
        }
    }
    return
    
    ;----------------Here the key for Exit the script [AltGr + M]
    ^!m::ExitApp
    Sar-21 (Use the switch key)

    SAR-21.ahk

    Code:
    ;
    ; AutoHotkey Version: 1.x
    ; Language:       English
    ; Platform:       Win9x/NT
    ; Author:         A.N.Other <myemail@nowhere.com>
    ;
    ; Script Function:
    ;    Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
    ;
    
    #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
    SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
    
    ;-----Please modify the two values only or the script will broken
    
    ;----------------Here the key for pause the script [AltGr + P]
    ^!p::Suspend
    ;----------------Here the key for reload the script [AltGr + O]
    ^!o::Reload
    
    ~LButton::
    {
    ;---if you want to change the key to "NumLock". (remplace "Capslock")
    if GetKeyState("Capslock", "T")=0
        {
            while GetKeyState("LButton", "P")=1
            {
                BlockInput, MouseMove
                ;~ Sleep, 1        ;you can change this two.
                DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
                DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
                ;~ Sleep, 1        ;you can change this two.
                DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
                Sleep, 1        ;you can change this two.
                Sleep, 1        ;you can change this two.
                ;~ Sleep, 1        ;you can change this two.
                BlockInput, MouseMoveoff
            }
            return
        }
    else
        {
            while GetKeyState("LButton", "P")=1
            {
            DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
            Sleep, 1      ;you can change this two.
            Sleep, 1      ;you can change this two.
            Sleep, 1      ;you can change this two.
            ;~ Sleep, 1      ;you can change this two.
            }
            return
        }
    }
    return
    
    ;----------------Here the key for Exit the script [AltGr + M]
    ^!m::ExitApp

    Tell me your feeling after you test it.

  5. The Following 2 Users Say Thank You to YOUCEFHam For This Useful Post:

    LycanTV (10-19-2014),trainerlover (10-19-2014)

  6. #64
    trainerlover's Avatar
    Join Date
    Sep 2014
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    2
    Quote Originally Posted by YOUCEFHam View Post

    Tell me your feeling after you test it.

    Thank you so much. has been wonderful. There is an amazing difference. it's like an injected norecoil dll.. regards to you.

  7. #65
    CatNyan's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    In space
    Posts
    23
    Reputation
    10
    Thanks
    5
    My Mood
    Bored
    Hi, great cheat and do you mind configuring for this weapon, mouse speed is 30.



    Thanks
    Attached Thumbnails Attached Thumbnails
    MTO02dc.png  

    oSO4oqO.png  

    Last edited by CatNyan; 10-19-2014 at 02:16 PM.

  8. #66
    nappa-nappa's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    5
    My Mood
    Bored
    I try a lot number with my P90 SD WAR ,but it seem it not "no recoil" as i aspect.and i keep confuse ^^
    will u configuring this weapon for me too.


    Attached Thumbnails Attached Thumbnails
    Capture.JPG  

    Captur1111e.JPG  


  9. #67
    nappa-nappa's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    5
    My Mood
    Bored
    sorry to be bothered you....
    Last edited by nappa-nappa; 10-20-2014 at 12:22 AM.

  10. #68
    YOUCEFHam's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    Algeria
    Posts
    287
    Reputation
    24
    Thanks
    722
    My Mood
    Cool

    Thumbs up MP9 SP PN.ahk

    Quote Originally Posted by CatNyan View Post
    Hi, great cheat and do you mind configuring for this weapon, mouse speed is 30.



    Thanks
    Hello CatNyan,

    I'm sorry to tell you, your scope is problem, because I can't make script for "standing/cover" and "zoom in/out".

    And this is the script for normal scope:




    "MP9 SP PN.ahk"
    Code:
    ;
    ; AutoHotkey Version: 1.x
    ; Language:       English
    ; Platform:       Win9x/NT
    ; Author:         A.N.Other <myemail@nowhere.com>
    ;
    ; Script Function:
    ;    Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
    ;
    
    #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
    SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
    
    ;-----Please modify the two values only or the script will broken
    
    ;----------------Here the key for pause the script [AltGr + P]
    ^!p::Suspend
    ;----------------Here the key for reload the script [AltGr + O]
    ^!o::Reload
    
    ~LButton::
    {
    ;---if you want to change the key to "NumLock". (remplace "Capslock")
    if GetKeyState("Capslock", "T")=0
        {
            while GetKeyState("LButton", "P")=1
            {
                BlockInput, MouseMove
                DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
                Sleep, 1        ;you can change this two.
                Sleep, 1        ;you can change this two.
                Sleep, 1        ;you can change this two.
                BlockInput, MouseMoveoff
            }
            return
        }
    }
    return
    
    ;----------------Here the key for Exit the script [AltGr + M]
    ^!m::ExitApp

  11. The Following User Says Thank You to YOUCEFHam For This Useful Post:

    CatNyan (10-20-2014)

  12. #69
    YOUCEFHam's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    Algeria
    Posts
    287
    Reputation
    24
    Thanks
    722
    My Mood
    Cool
    Quote Originally Posted by nappa-nappa View Post
    I try a lot number with my P90 SD WAR ,but it seem it not "no recoil" as i aspect.and i keep confuse ^^
    will u configuring this weapon for me too.


    Hello nappa-nappa,

    Please tell me your mouse speed.



  13. #70
    nappa-nappa's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    5
    My Mood
    Bored
    oh !! sorry i forget it
    my mouse speed 25

  14. #71
    YOUCEFHam's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Location
    Algeria
    Posts
    287
    Reputation
    24
    Thanks
    722
    My Mood
    Cool
    Quote Originally Posted by nappa-nappa View Post
    I try a lot number with my P90 SD WAR ,but it seem it not "no recoil" as i aspect.and i keep confuse ^^
    will u configuring this weapon for me too.


    Quote Originally Posted by nappa-nappa View Post
    oh !! sorry i forget it
    my mouse speed 25
    Hi again,

    I can't find your weapon, but I use P90 and the same upgrade items, tell me if this is work or not.

    This is the script:


    P90.ahk
    Code:
    ;
    ; AutoHotkey Version: 1.x
    ; Language:       English
    ; Platform:       Win9x/NT
    ; Author:         A.N.Other <myemail@nowhere.com>
    ;
    ; Script Function:
    ;    Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
    ;
    
    #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
    SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
    
    ;-----Please modify the two values only or the script will broken
    
    ;----------------Here the key for pause the script [AltGr + P]
    ^!p::Suspend
    ;----------------Here the key for reload the script [AltGr + O]
    ^!o::Reload
    
    ~LButton::
    {
    ;---if you want to change the key to "NumLock". (remplace "Capslock")
    if GetKeyState("Capslock", "T")=0
        {
            while GetKeyState("LButton", "P")=1
            {
                BlockInput, MouseMove
                DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
                DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
                DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
                Sleep, 1        ;you can change this two.
                Sleep, 1        ;you can change this two.
                ;~ Sleep, 1        ;you can change this two.
                BlockInput, MouseMoveoff
            }
            return
        }
    }
    return
    
    ;----------------Here the key for Exit the script [AltGr + M]
    ^!m::ExitApp

  15. #72
    CatNyan's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    In space
    Posts
    23
    Reputation
    10
    Thanks
    5
    My Mood
    Bored
    Quote Originally Posted by YOUCEFHam View Post
    Hello CatNyan,

    I'm sorry to tell you, your scope is problem, because I can't make script for "standing/cover" and "zoom in/out".

    And this is the script for normal scope:




    "MP9 SP PN.ahk"
    Code:
    ;
    ; AutoHotkey Version: 1.x
    ; Language:       English
    ; Platform:       Win9x/NT
    ; Author:         A.N.Other <myemail@nowhere.com>
    ;
    ; Script Function:
    ;    Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
    ;
    
    #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
    SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
    
    ;-----Please modify the two values only or the script will broken
    
    ;----------------Here the key for pause the script [AltGr + P]
    ^!p::Suspend
    ;----------------Here the key for reload the script [AltGr + O]
    ^!o::Reload
    
    ~LButton::
    {
    ;---if you want to change the key to "NumLock". (remplace "Capslock")
    if GetKeyState("Capslock", "T")=0
        {
            while GetKeyState("LButton", "P")=1
            {
                BlockInput, MouseMove
                DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
                Sleep, 1        ;you can change this two.
                Sleep, 1        ;you can change this two.
                Sleep, 1        ;you can change this two.
                BlockInput, MouseMoveoff
            }
            return
        }
    }
    return
    
    ;----------------Here the key for Exit the script [AltGr + M]
    ^!m::ExitApp
    You are awesome! 10/10

  16. The Following User Says Thank You to CatNyan For This Useful Post:

    YOUCEFHam (10-22-2014)

  17. #73
    zxpe's Avatar
    Join Date
    Oct 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Hi
    Can u make one for type 95 ,can be normal or jgl version ? What mouse speed use as well

  18. #74
    nappa-nappa's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    38
    Reputation
    10
    Thanks
    5
    My Mood
    Bored
    Hi again,

    I can't find your weapon, but I use P90 and the same upgrade items, tell me if this is work or not.

    This is the script:
    thank for script ,My weapon is in WAR Pack.,
    this script only effect while aim mode right ?,if so it perfect i like it.
    but when im shoot without aiming ,recoil it keep goes down ,it should be like this or not ?

  19. #75
    jhyapexxx's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    ███████████
    Posts
    53
    Reputation
    20
    Thanks
    11
    My Mood
    Dead
    Hello! Can u plz help me with these weapons. I would really appreciate it. My Mouse speed is 10.
    Attached Thumbnails Attached Thumbnails
    AsVal.jpg  

    CBS.jpg  

    M96-H.jpg  


  20. The Following 3 Users Say Thank You to jhyapexxx For This Useful Post:

    gube (12-02-2014),ifrits0 (10-23-2014),kojot_k (10-21-2014)

Page 5 of 12 FirstFirst ... 34567 ... LastLast

Similar Threads

  1. Ghost Recon Phantom Hack
    By ANIKETH007 in forum User Services
    Replies: 4
    Last Post: 11-17-2014, 07:34 AM
  2. NoAFK For Ghost Recon Phantoms And All Games.
    By YOUCEFHam in forum User Services
    Replies: 6
    Last Post: 11-04-2014, 07:45 AM
  3. Ghost recon phantoms hack like No Recoil 80%
    By YOUCEFHam in forum User Services
    Replies: 33
    Last Post: 10-11-2014, 09:48 AM
  4. Any hacks for ghost recon online out there
    By kevo54 in forum User Services
    Replies: 5
    Last Post: 08-23-2013, 03:13 PM
  5. [Request] Hacks for Ghost Recon Advanced Warfighter 2 [Offline] SP
    By gurum in forum Hack Requests
    Replies: 0
    Last Post: 03-05-2012, 07:19 AM