Page 1 of 3 123 LastLast
Results 1 to 15 of 41
  1. #1
    Lakkesh's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    30
    My Mood
    Psychedelic

    Post Struggle & Wiggle AutoHotkey (Source file included)

    Hello, this is a simple script to make a keyboard
    macro for the key "X" for wiggle(being carried by the killer) & the key "Z" for struggle(on the hook)
    Enjoy!

    You can modify the script as you wish. Program used is AutoHotkey https://www.autohotkey.com/

    Run As Admin!

    Packed by: Lamron333

    Scans:
    https://www.virustotal.com/gui/file/...da1c/detection
    https://virusscan.jotti.org/en-US/fi...job/vygley2pa4
    <b>Downloadable Files</b> Downloadable Files

  2. The Following 30 Users Say Thank You to Lakkesh For This Useful Post:

    1139703072 (07-30-2020),70472270 (01-27-2020),abc3853 (12-19-2019),Axgxl (12-23-2019),basementbubba (06-03-2020),Bestman1069 (10-05-2020),blobrx (04-14-2020),bodyflipsa (12-25-2019),busti (01-12-2020),domme2204 (01-10-2020),Dom_123 (06-20-2021),dpraised1 (12-18-2019),fyron123 (12-19-2019),gelopuge (12-27-2019),Grimover (12-17-2019),harushigure (12-17-2019),HDoiO (12-26-2019),hihio88 (12-28-2019),IDKION (12-27-2019),Kapalot (08-31-2020),keerati5454 (01-15-2020),mr.mister10 (01-13-2021),nardokedru123 (04-22-2020),OblivionKali (12-13-2019),someoneidk576 (07-07-2020),Sp3ceYT (12-18-2019),sungerbob (07-30-2021),teetawat (06-15-2020),tommyck (10-10-2020),z11620 (02-17-2020)

  3. #2
    Ally's Avatar
    Join Date
    Dec 2014
    Gender
    female
    Location
       ♥
    Posts
    8,697
    Reputation
    1610
    Thanks
    8,499
    My Mood
    Angelic
    No proof but its just an AHK //approved

    Premium Member 22/4/16
    Steam Minion 22/12/2017
    OFPS Minion 5/2/2019
    MMO Minion 5/2/2019
    Minion+ 5/2/2019
    Mod 8/11/2020
    Retired 3/10/2022
    22 / Dec 7, 2001

  4. #3
    Lakkesh's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    30
    My Mood
    Psychedelic
    Quote Originally Posted by Ally View Post
    No proof but its just an AHK //approved
    I'll post a video showing it works. And thank you 😉

  5. #4
    idontlikedbd's Avatar
    Join Date
    Sep 2018
    Gender
    female
    Posts
    424
    Reputation
    10
    Thanks
    44
    My Mood
    Amazed
    any type of ahk its detectable xD

  6. #5
    Darku123's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    409
    Reputation
    10
    Thanks
    114
    My Mood
    Aggressive
    Na fuck that, i used an script like this one and got game banned
    the script was for moonwalk

  7. #6
    Lakkesh's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    30
    My Mood
    Psychedelic
    I use it every day

  8. #7
    T-800's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    Romania
    Posts
    17,076
    Reputation
    1688
    Thanks
    84,838
    Quote Originally Posted by Darku123 View Post
    Na fuck that, i used an script like this one and got game banned
    the script was for moonwalk
    Maybe because it was compiled....

    But if only just a script (not compiled)

    "Never stop being a good person because of bad people"


    Super User -> 15-7-2020
    Global Moderator -> 23-3-2019 - 15-7-2020
    Steam Moderator -> 12-12-2017 - 23-3-2019
    Steam Minion+ -> 09-04-2017 - 12-12-2017
    Steam Minion -> 03-01-2017 - 09-04-2017


  9. #8
    Lakkesh's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    30
    My Mood
    Psychedelic
    I Should clear up something. I am also "Lamron333".

    - - - Updated - - -

    Quote Originally Posted by T-800 View Post
    Maybe because it was compiled....

    But if only just a script (not compiled)
    I'm not sure, but I haven't been detected yet. I do tweek the timing sometimes.
    That might have something to do with it. The latest script is as follows:
     
    Code:
    global toggle
    #MaxThreadsPerHotkey 2
    z::	
    	toggle := !toggle
    	if (toggle)
    		ToolTip, Hook`nStruggle, 100, 150
    	while (toggle)
    	{
    		Send {Space}
    		Sleep, 27
    	}
    	ToolTip
    return
    x:: 
    	toggle := !toggle
    	if (toggle)
    		ToolTip, Carry`nStruggle, 100, 150
    	while (toggle)
    	{
    		Send {a down} 
    		Sleep, 26
    		Send {a up}
    		Sleep, 28
    		Send {d down}
    		Sleep, 29
    		Send {d up}
    		Sleep, 27
    	}
    	Tooltip
    return
    #MaxThreadsPerHotkey 1
    Last edited by Lakkesh; 12-12-2019 at 02:55 AM.

  10. #9
    T-800's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    Romania
    Posts
    17,076
    Reputation
    1688
    Thanks
    84,838
    Quote Originally Posted by Lakkesh View Post
    I Should clear up something. I am also "Lamron333".

    - - - Updated - - -



    I'm not sure, but I haven't been detected yet. I do tweek the timing sometimes.
    That might have something to do with it. The latest script is as follows:
     
    Code:
    global toggle
    #MaxThreadsPerHotkey 2
    z::	
    	toggle := !toggle
    	if (toggle)
    		ToolTip, Hook`nStruggle, 100, 150
    	while (toggle)
    	{
    		Send {Space}
    		Sleep, 27
    	}
    	ToolTip
    return
    x:: 
    	toggle := !toggle
    	if (toggle)
    		ToolTip, Carry`nStruggle, 100, 150
    	while (toggle)
    	{
    		Send {a down} 
    		Sleep, 26
    		Send {a up}
    		Sleep, 28
    		Send {d down}
    		Sleep, 29
    		Send {d up}
    		Sleep, 27
    	}
    	Tooltip
    return
    #MaxThreadsPerHotkey 1
    When you keep it private (only for you) , it's obvious you are not banned, however when you share it, it will be.

    Thats why, i don't think they can ban you when you have the actual script running without being compiled, could be wrong

    "Never stop being a good person because of bad people"


    Super User -> 15-7-2020
    Global Moderator -> 23-3-2019 - 15-7-2020
    Steam Moderator -> 12-12-2017 - 23-3-2019
    Steam Minion+ -> 09-04-2017 - 12-12-2017
    Steam Minion -> 03-01-2017 - 09-04-2017


  11. The Following 2 Users Say Thank You to T-800 For This Useful Post:

    ArtilleryGod (01-11-2020),Lakkesh (12-12-2019)

  12. #10
    Lakkesh's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    30
    My Mood
    Psychedelic
    Well, I don't want others to be banned,...

    - - - Updated - - -

    Quote Originally Posted by T-800 View Post
    When you keep it private (only for you) , it's obvious you are not banned, however when you share it, it will be.

    Thats why, i don't think they can ban you when you have the actual script running without being compiled, could be wrong
    I'll take the hint & STFU!

  13. #11
    Darkjin's Avatar
    Join Date
    May 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Trojan.PWS.Stealer.25463
    Lolwut??

  14. #12
    Lakkesh's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    30
    My Mood
    Psychedelic
    Dr.Web did a false positive. Don't take my word for it. Ask others & see the script!

  15. #13
    idontlikedbd's Avatar
    Join Date
    Sep 2018
    Gender
    female
    Posts
    424
    Reputation
    10
    Thanks
    44
    My Mood
    Amazed
    a lot of people used different types of ahk and got banned, i dont understand how it works that compiled or not (nobody explain me, please), but what i know is, every script we get here, we get banned so

  16. #14
    ImNotApersonl's Avatar
    Join Date
    Jun 2018
    Gender
    male
    Posts
    598
    Reputation
    86
    Thanks
    74
    My Mood
    Worried
    Quote Originally Posted by Darku123 View Post
    Na fuck that, i used an script like this one and got game banned
    the script was for moonwalk
    Why you even used a moonwalk macro, moonwalking is easy lmao

  17. #15
    T-800's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    Romania
    Posts
    17,076
    Reputation
    1688
    Thanks
    84,838
    Quote Originally Posted by idontlikedbd View Post
    a lot of people used different types of ahk and got banned, i dont understand how it works that compiled or not (nobody explain me, please), but what i know is, every script we get here, we get banned so
    maybe you know wrong??? I am juuust sayying

    "Never stop being a good person because of bad people"


    Super User -> 15-7-2020
    Global Moderator -> 23-3-2019 - 15-7-2020
    Steam Moderator -> 12-12-2017 - 23-3-2019
    Steam Minion+ -> 09-04-2017 - 12-12-2017
    Steam Minion -> 03-01-2017 - 09-04-2017


Page 1 of 3 123 LastLast

Similar Threads

  1. Source File is corrupted
    By Phoenix329 in forum CrossFire Help
    Replies: 10
    Last Post: 11-20-2010, 01:38 AM
  2. common_mp.ff and patch_mp.ff Source Files [Modding Resource]
    By HACKINGPIE in forum Call of Duty Modern Warfare 2 Discussions
    Replies: 2
    Last Post: 06-09-2010, 11:56 PM
  3. 2 Player Tic Tac Toe - source code included
    By Shark23 in forum C++/C Programming
    Replies: 0
    Last Post: 04-22-2010, 09:24 PM
  4. Using only the Ipod touch to create and compile source files
    By radnomguywfq3 in forum C++/C Programming
    Replies: 3
    Last Post: 03-22-2009, 11:26 AM
  5. My warrock phishing software source files for cheap
    By HeXel in forum Trade Accounts/Keys/Items
    Replies: 7
    Last Post: 03-30-2008, 08:01 AM

Tags for this Thread