Page 1 of 5 123 ... LastLast
Results 1 to 15 of 70
  1. #1
    ninjaman4bit's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    24
    Reputation
    10
    Thanks
    205
    My Mood
    Fine

    Fast Loot (Config for all resolutions)

    This is a fast loot script based on the one that "lefkas" posted before, but improved.
    Now with a configuration for all resolutions, since the last one seems to not work for all resolutions.

    Tutorial
    1 - Download the file FastLoot.rar and extract it.
    you will see something like this:

    2 - at first open the "[CONFIG SCRIPT] RUN ME FIRST.ahk". you will need to use it only in the first time.
    3 - in your game press "tab"
    4 - remove at least 4 items of your inventory
    5 - put your mouse pointer on the middle of each item and press numpad1 for item 1, numpad2 for item 2... until item 4.
    you will be setting the position of each item
    6 - now you need to set your inventory position, aim at your character's head in tab menu and press numpad5 to save his head position.
    7 - Done! it's all configured. just press "del" to close the script and run "[FAST LOOT] RUN ME.ahk".

    tutorial video:


    Default hotkey is "V", but you may want to change it.
    How to change hotkey?
    1 - open the "[FAST LOOT] RUN ME.ahk"
    2 - press ctrl + F and find "Change your hotkey here"
    you will see something like this:
    Code:
    ~V:: ; Change your hotkey here
    Just change the letter "V" to another letter.
    example, letter "T".
    Code:
    ~T:: ; Change your hotkey here
    OBS: Be aware to do not modify any other thing in the code, like spaces and tabs. it may stop your script.
    3 - save the code and be happy!


    --------------------------------------
    If you don't want to download here is the code:
    [CONFIG SCRIPT] RUN ME FIRST.ahk
    Code:
    #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.
    #SingleInstance force ;It allows to run only one at the same time.
    SetTitleMatchMode, 2 ;Matching for window title.
    #ifwinactive, PLAYERUNKNOWN'S BATTLEGROUNDS ;Active only when in PUBG.
    
    up_item_posX := 200
    up_item_posY := 200
    up2_item_posX := 300
    up2_item_posY := 300
    down_item_posX := 400
    down_item_posY := 400
    down2_item_posX := 500
    down2_item_posY := 500
    inv_posX := 600
    inv_posY := 600
    
    
    Loop{
    	ToolTip, Item 1 -> key: numpad1, up_item_posX, up_item_posY,1
    	sleep 500
    	ToolTip, Item 2 -> key: numpad2, up2_item_posX, up2_item_posY,2
    	sleep 500
    	ToolTip, Item 3 -> key: numpad3, down_item_posX, down_item_posY,3
    	sleep 500
    	ToolTip, Item 4 -> key: numpad4, down2_item_posX, down2_item_posY,4
    	sleep 500
    	ToolTip, Inventory -> key: numpad5, inv_posX, inv_posY,5
    	sleep 500
    }
    
    *NumPad1::
    	MouseGetPos, xpos, ypos 
    	up_item_posX = %xpos%
    	up_item_posY = %ypos%
    	IniWrite, %up_item_posX%, config.ini, Coordinates, up_item_posX
    	IniWrite, %up_item_posY%, config.ini, Coordinates, up_item_posY
    	ToolTip, Item 1 -> key: numpad1, up_item_posX, up_item_posY,1
    return
    *NumPad2::
    	MouseGetPos, xpos, ypos 
    	up2_item_posX = %xpos%
    	up2_item_posY = %ypos%
    	IniWrite, %up2_item_posX%, config.ini, Coordinates, up2_item_posX
    	IniWrite, %up2_item_posY%, config.ini, Coordinates, up2_item_posY
    	ToolTip, Item 2 -> key: numpad2, up2_item_posX, up2_item_posY,2
    return
    *NumPad3::
    	MouseGetPos, xpos, ypos 
    	down_item_posX = %xpos%
    	down_item_posY = %ypos%
    	IniWrite, %down_item_posX%, config.ini, Coordinates, down_item_posX
    	IniWrite, %down_item_posY%, config.ini, Coordinates, down_item_posY
    	ToolTip, Item 3 -> key: numpad3, down_item_posX, down_item_posY,3
    return
    *NumPad4::
    	MouseGetPos, xpos, ypos 
    	down2_item_posX = %xpos%
    	down2_item_posY = %ypos%
    	IniWrite, %down2_item_posX%, config.ini, Coordinates, down2_item_posX
    	IniWrite, %down2_item_posY%, config.ini, Coordinates, down2_item_posY
    	ToolTip, Item 4 -> key: numpad4, down2_item_posX, down2_item_posY,4
    return
    *NumPad5::
    	MouseGetPos, xpos, ypos 
    	inv_posX = %xpos%
    	inv_posY = %ypos%
    	IniWrite, %inv_posX%, config.ini, Coordinates, inv_posX
    	IniWrite, %inv_posY%, config.ini, Coordinates, inv_posY
    	ToolTip, Inventory -> key: numpad5, inv_posX, inv_posY,5
    return
    
    *Del::
    	ToolTip,Script Configured,500,500,6
    	Sleep 2000
    	ExitApp
    return
    [FAST LOOT] RUN ME.ahk
    Code:
    #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.
    #SingleInstance force ;It allows to run only one at the same time.
    SetTitleMatchMode, 2 ;Matching for window title.
    #ifwinactive, PLAYERUNKNOWN'S BATTLEGROUNDS ;Active only when in PUBG.
    
    IniRead up_item_posX, config.ini, Coordinates, up_item_posX
    IniRead up_item_posY, config.ini, Coordinates, up_item_posY
    IniRead up2_item_posX, config.ini, Coordinates, up2_item_posX
    IniRead up2_item_posY, config.ini, Coordinates, up2_item_posY
    IniRead down_item_posX, config.ini, Coordinates, down_item_posX
    IniRead down_item_posY, config.ini, Coordinates, down_item_posY
    IniRead down2_item_posX, config.ini, Coordinates, down2_item_posX
    IniRead down2_item_posY, config.ini, Coordinates, down2_item_posY
    IniRead inv_posX, config.ini, Coordinates, inv_posX
    IniRead inv_posY, config.ini, Coordinates, inv_posY
    
    ;#####################
    ;#     Fast Loot     #
    ;#####################
    
    ~V:: ; Change your hotkey here
    	if (isMouseShown() == true)
    	{
    		Sleep 1
    		MouseClickDrag, Left,up_item_posX, up_item_posY, inv_posX, inv_posY , 0
    		Sleep 1
    		MouseClickDrag, Left, up2_item_posX, up2_item_posY, inv_posX, inv_posY , 0
    		Sleep 1
    		MouseClickDrag, Left, down_item_posX, down_item_posY, inv_posX, inv_posY , 0
    		Sleep 1
    		MouseClickDrag, Left, down2_item_posX, down2_item_posY, inv_posX, inv_posY , 0
    		Sleep 1
    	}
    return
    
    isMouseShown()
    {
    	StructSize := A_PtrSize + 16
    	VarSetCapacity(InfoStruct, StructSize)
    	NumPut(StructSize, InfoStruct)
    	DllCall("GetCursorInfo", UInt, &InfoStruct)
    	Result := NumGet(InfoStruct, 8)
    	if Result > 1
    		Return true
    	else
    		Return false
    }
    <b>Downloadable Files</b> Downloadable Files

  2. The Following 187 Users Say Thank You to ninjaman4bit For This Useful Post:

    1061024342 (02-12-2018),1181935195 (11-25-2017),1byom (04-17-2018),2bsheep (11-13-2017),673511120 (01-26-2018),a1120207578 (05-30-2018),abuma7fuz (12-13-2023),Akalys (07-13-2018),alsrms82 (03-08-2018),anhtu0609 (08-18-2018),anmarfarhan99 (03-26-2018),apidotmy (12-20-2017),arosito (11-17-2017),aziz41 (01-01-2018),BabaYaga69 (04-10-2018),bela1040 (12-28-2019),bigoldfart (09-08-2018),borzalmas (11-16-2017),Brettbabin4460 (02-14-2018),brightdan (01-30-2018),bubbles1241 (08-22-2019),Cammy Bammy (04-02-2018),carelylo364 (08-30-2018),Chocolatine65 (05-16-2018),cight (07-18-2018),ciscoswitch2950 (12-31-2017),Coldflamez27 (02-20-2018),csgogaming1233 (02-09-2018),dali199612 (11-08-2018),dannyfear11 (02-24-2018),darkmonsterzxc (01-05-2018),DestinyStarzzz (12-26-2017),Dj3max (12-30-2017),dkssud0638 (04-10-2019),dohoang442 (11-13-2017),dreiker (11-15-2017),DrSpazzer (09-26-2018),DUN3RAT (02-19-2024),ebunburo (03-26-2018),elpichi (01-16-2018),exoeli (01-12-2018),exotich (02-07-2019),finest1G (11-13-2017),flookty123 (01-18-2018),flyingdog129 (12-23-2017),fpillet21 (01-13-2019),gabrielbm80 (03-14-2018),gainb (11-13-2017),galerboyss (07-16-2018),Gamble69 (07-29-2018),gamer133774 (11-25-2017),Gamerdude256 (03-17-2018),GenesisReb (01-13-2019),Gixxer0926 (02-05-2018),godn9ne (02-03-2018),guigggg (11-13-2017),guilted007 (05-18-2018),gxabdullah (11-28-2018),hello_hack (11-28-2018),hemaden (11-18-2017),hoangvana (11-21-2017),Holowati1 (08-16-2018),hqs10 (10-06-2018),iam_aj5 (02-19-2019),ikramamir123 (02-11-2019),iloles741 (11-13-2017),inuda (07-26-2018),jesuiscool7 (02-20-2018),jghost087 (11-08-2018),johnny3finger (08-04-2018),Jokeras (12-09-2018),Jonnee (02-03-2018),Joshi112 (12-26-2017),Jungmonkey123 (03-24-2018),kadir1272 (05-02-2018),Kaujax (07-23-2018),kevintan88 (11-13-2017),khang2711 (06-03-2021),king696 (01-06-2018),kirg (11-19-2017),kirigaya16 (05-12-2018),kitano124 (07-29-2019),klopos (03-06-2018),koivunen (12-18-2017),krystianw2p (12-01-2018),laijerry01 (10-29-2018),lexsus90 (02-04-2018),lmwsml (11-14-2017),Loloeeee (04-22-2019),Lopszig1 (02-21-2023),lord644 (03-28-2018),luadaotao (01-30-2022),luuukinhas2 (01-15-2018),lynxpointlizzie (12-29-2019),macar_tr (07-29-2018),maho55 (02-17-2018),maks08 (03-11-2018),MathiasBro (12-28-2017),megamine0509 (11-13-2017),mgucc1 (05-27-2019),MiffyL (01-18-2018),mikeu1 (03-07-2018),mirkocrocop (04-15-2018),Moritzvon (11-13-2017),mpunkz (03-15-2018),Nagm (05-14-2018),nc1994 (1 Week Ago),nidz (06-02-2018),nihat41 (05-09-2018),nikopogi12 (02-07-2018),nisala4423 (03-12-2018),niv1234567890 (11-20-2017),nquynh81 (03-10-2018),OTHONSHOT (06-19-2019),p1516 (07-20-2018),palmboy01 (03-20-2018),panislife (02-06-2018),Papaslee (03-03-2018),perolav12 (09-30-2018),Phail_ (12-26-2017),pifapishawn (09-22-2018),Pinochet1337 (01-29-2018),plopo23 (08-07-2018),pondan159753 (11-18-2017),prathyush05 (03-02-2019),quensher (01-12-2018),qwexzxz (12-29-2017),ReallyGamer (03-31-2018),ReaZon17 (07-15-2018),rillsmiller (03-11-2018),Riu (03-09-2018),ryaanpangestu (03-06-2018),samsimx123 (01-11-2018),Scough (01-15-2018),Sean423807 (03-27-2018),seyedx (09-05-2022),Shadew1 (11-13-2017),sharljimhtsin (11-13-2017),shoo11 (04-09-2018),shwnmnds (03-06-2018),sidgnosis (01-13-2018),slowurrizzo (08-04-2018),smcn994 (05-17-2018),sod.dawi (11-16-2017),splattik (03-01-2018),SUMega (07-24-2018),swat_iq (08-10-2023),Syxx12 (02-18-2018),tabajaa (01-08-2024),Talat Can (11-23-2019),terrencemgm1 (07-23-2020),testgames (03-14-2018),thanhmklc (04-13-2022),TheIconTee (11-26-2018),thomb30 (02-21-2018),tiendasimu (03-30-2018),tonynguyen215 (11-18-2017),trungkoi92 (09-13-2018),ts06525332 (01-08-2018),VACcsgo (03-27-2018),veris (11-15-2017),Vicious- (05-22-2018),vixtory99 (04-14-2018),wherelove0924 (01-06-2018),white_poem_ii (11-22-2019),winnersl123 (11-13-2017),wisam007 (12-12-2023),wltjq822 (01-06-2018),woshiyizi0800 (12-09-2017),xborickie (11-17-2018),xuguangmao (01-02-2018),xujiantao (04-22-2018),xxwebsxx (01-15-2018),XxXenomxX (01-03-2019),yaraktms (06-08-2018),yemci35 (08-14-2018),yeohkhaichee (02-16-2018),yleooBalbo77 (01-12-2018),yolo123456789012 (04-05-2018),youngye (02-18-2018),yunusgokce (05-16-2018),yurimaru060192 (08-11-2019),Yxp000 (11-20-2017),ZeroEffect (01-12-2018),znecro (03-12-2018),zStefano (12-31-2017),zxcv9876 (10-14-2018)

  3. #2
    T-800's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    Romania
    Posts
    17,076
    Reputation
    1688
    Thanks
    84,840
    //Approved

    "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


  4. #3
    UnDeRc0vEr's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Posts
    105
    Reputation
    10
    Thanks
    4
    Working on fullscreen?

  5. #4
    ninjaman4bit's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    24
    Reputation
    10
    Thanks
    205
    My Mood
    Fine
    Quote Originally Posted by UnDeRc0vEr View Post
    Working on fullscreen?
    yes, since you configure it on full screen, it will work.

  6. #5
    UnDeRc0vEr's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Posts
    105
    Reputation
    10
    Thanks
    4
    After running the "runmefirst" ahk script i cannot open my game. It is minimized but i cannot open it, because the script minimizes it again

  7. #6
    ninjaman4bit's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    24
    Reputation
    10
    Thanks
    205
    My Mood
    Fine
    Quote Originally Posted by UnDeRc0vEr View Post
    After running the "runmefirst" ahk script i cannot open my game. It is minimized but i cannot open it, because the script minimizes it again
    it is probably a problem with "tooltip" function of AHK. I didn't had this problem so I don't really know how to fix. but you can try to unistall your AHK and install the most recent version or you can try the code without the tooltip.

    this one:
    Code:
    #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.
    #SingleInstance force ;It allows to run only one at the same time.
    SetTitleMatchMode, 2 ;Matching for window title.
    #ifwinactive, PLAYERUNKNOWN'S BATTLEGROUNDS ;Active only when in PUBG.
    
    up_item_posX := 200
    up_item_posY := 200
    up2_item_posX := 300
    up2_item_posY := 300
    down_item_posX := 400
    down_item_posY := 400
    down2_item_posX := 500
    down2_item_posY := 500
    inv_posX := 600
    inv_posY := 600
    
    *NumPad1::
    	MouseGetPos, xpos, ypos 
    	up_item_posX = %xpos%
    	up_item_posY = %ypos%
    	IniWrite, %up_item_posX%, config.ini, Coordinates, up_item_posX
    	IniWrite, %up_item_posY%, config.ini, Coordinates, up_item_posY
    return
    *NumPad2::
    	MouseGetPos, xpos, ypos 
    	up2_item_posX = %xpos%
    	up2_item_posY = %ypos%
    	IniWrite, %up2_item_posX%, config.ini, Coordinates, up2_item_posX
    	IniWrite, %up2_item_posY%, config.ini, Coordinates, up2_item_posY
    return
    *NumPad3::
    	MouseGetPos, xpos, ypos 
    	down_item_posX = %xpos%
    	down_item_posY = %ypos%
    	IniWrite, %down_item_posX%, config.ini, Coordinates, down_item_posX
    	IniWrite, %down_item_posY%, config.ini, Coordinates, down_item_posY
    return
    *NumPad4::
    	MouseGetPos, xpos, ypos 
    	down2_item_posX = %xpos%
    	down2_item_posY = %ypos%
    	IniWrite, %down2_item_posX%, config.ini, Coordinates, down2_item_posX
    	IniWrite, %down2_item_posY%, config.ini, Coordinates, down2_item_posY
    return
    *NumPad5::
    	MouseGetPos, xpos, ypos 
    	inv_posX = %xpos%
    	inv_posY = %ypos%
    	IniWrite, %inv_posX%, config.ini, Coordinates, inv_posX
    	IniWrite, %inv_posY%, config.ini, Coordinates, inv_posY
    return
    
    *Del::
    	Sleep 2000
    	ExitApp
    return
    This code will work the same way as the other one but you will not be able to see any "tooltip drawing" in your screen. but you just need to configure the code 1 time so I guess it will be ok for you.

  8. #7
    zgkg's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Location
    universe
    Posts
    30
    Reputation
    10
    Thanks
    43
    My Mood
    Sleepy
    Nice tool, thanks!

  9. #8
    gaurang's Avatar
    Join Date
    Jul 2017
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    2
    installation smoothly
    running with the standard V key
    using 1920x1080
    full windows screen
    can't pick up loot while pressing V
    any idea?
    thanks

  10. #9
    hackyoshi's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    1
    exelent tool bro ! thx for this is the best fast lot !! work 1000% perfect !! thx fot this !

  11. #10
    poopiequeen's Avatar
    Join Date
    Nov 2017
    Gender
    female
    Posts
    40
    Reputation
    10
    Thanks
    0
    I like this macro but you need to make one more which will help a lot IMO.

    here is the idea...

    When we tab to open inventory and press m1 on item..macro should drag that item to right and release m1 and then set the cursor position back to the old spot from where we picked item. This way all i have to is press M1 on selective items i want instead of right click which is so fucking slow..

  12. #11
    UnDeRc0vEr's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Posts
    105
    Reputation
    10
    Thanks
    4
    I used two ahk scripts. One is the "NoRecoil V5" and the other one is "Fastloot" Ahk.

    I got banned for one of these scripts(maybe both)!

    Stop using it !

  13. #12
    MasterDMFourr's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    44
    Reputation
    10
    Thanks
    5
    Quote Originally Posted by UnDeRc0vEr View Post
    I used two ahk scripts. One is the "NoRecoil V5" and the other one is "Fastloot" Ahk.

    I got banned for one of these scripts(maybe both)!

    Stop using it !
    Yet I can see from your posts you've been using injection methods, ini edits the lot LOL. Yeah, okay.

  14. #13
    UnDeRc0vEr's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Posts
    105
    Reputation
    10
    Thanks
    4
    Lmfao, i used this two ahk's and no grass edit. No grass is not detectable. And fastlootahk, did not work for me so i deleted it. The only ahk i did not close was NoRecoil. So it has to be NoRecoil.ahk or fastloot.ahk

  15. #14
    MasterDMFourr's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    44
    Reputation
    10
    Thanks
    5
    Quote Originally Posted by UnDeRc0vEr View Post
    Lmfao, i used this two ahk's and no grass edit. No grass is not detectable. And fastlootahk, did not work for me so i deleted it. The only ahk i did not close was NoRecoil. So it has to be NoRecoil.ahk or fastloot.ahk
    Or you had a delayed ban from when you were using injections... LOL.

  16. #15
    UnDeRc0vEr's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Posts
    105
    Reputation
    10
    Thanks
    4
    Quote Originally Posted by MasterDMFourr View Post
    Or you had a delayed ban from when you were using injections... LOL.
    I do not know what your problem is. I'm telling you that i used nothing except these three things. One ini.file edit and 2 ahk scripts! Whot f tells you such bullsh**?

Page 1 of 5 123 ... LastLast

Similar Threads

  1. [Release] Fast Loot [ALL RESOLUTIONS][FASTER]
    By ninjaman4bit in forum PLAYERUNKNOWN'S BATTLEGROUNDS (PUBG) Hacks & Cheats
    Replies: 136
    Last Post: 02-13-2023, 05:59 PM
  2. [WTS] GAMEKEYSOURCE-SPAWN SERVICE [TRUSTED] [FAST] [CHEAP] - 2 $ for all you want
    By KSnipZ in forum DayZ Selling / Trading / Buying
    Replies: 4
    Last Post: 02-05-2013, 08:52 AM
  3. [WTS] DayZ KeyZ For All! $2 Each - Bulk Deals if you Contact Me! [Warranty][Fast][Cheap]
    By KidoThe in forum DayZ Selling / Trading / Buying
    Replies: 14
    Last Post: 01-30-2013, 09:35 AM
  4. [Help] Help for computer which are really too fast for all patch...
    By bastard321 in forum Blackshot Hacks & Cheats
    Replies: 11
    Last Post: 12-05-2012, 12:06 PM
  5. [Release] [MELEE WEAPONS] All (human) melee weapons turn into fast knife! (also for CFNA)
    By RoLe in forum CrossFire Mods & Rez Modding
    Replies: 103
    Last Post: 06-04-2012, 11:16 AM