Page 2 of 10 FirstFirst 1234 ... LastLast
Results 16 to 30 of 137
  1. #16
    MasterDMFourr's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    44
    Reputation
    10
    Thanks
    5
    New script grabs second item and below now.

  2. #17
    arGEARYHAREHerhrh$6YHRYH's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    271
    Reputation
    -26
    Thanks
    28
    My Mood
    Asleep
    It picks every item but not the last one, pretty annoying

  3. #18
    invoker23's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    Do not pick up guns? only equips?

  4. #19
    smokersix's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Does not grab first item at 2560x1440.

  5. #20
    xaznvietlife's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Los Angeles
    Posts
    416
    Reputation
    49
    Thanks
    85
    Tried both of the scripts. It picks everything up, BUT the first two items.
    Don't forget to Thank me if i helped.>>>>>

  6. #21
    ninjaman4bit's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    24
    Reputation
    10
    Thanks
    204
    My Mood
    Fine
    Hello everyone seems like the code will not work like that. so I did another way that will work for everyone. I'll do the tutorial later but for people that want to try now:

    1 - I will give 2 codes
    2 - save these 2 different codes in 2 .ahk files
    3 - the first code will be the fast loot program
    4 - the second code is the file that you will use to configure your .ahk for the first time (you just need to configure it 1 time)

    Fast loot script (you need to set configuration)
    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
    }
    Configuration script
    1 - run it
    2 - in game press numpad 1~4 to set the position of each item in your inventory
    3 - in game press numpad5 to set the position of your character head in your tab menu
    4 - when you set all positions close config .ahk and just run your fast loot script, it will work 100%
    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, up_item_posX, up_item_posY
    	sleep 1000
    	ToolTip, Item 2, up2_item_posX, up2_item_posY
    	sleep 1000
    	ToolTip, Item 3, down_item_posX, down_item_posY
    	sleep 1000
    	ToolTip, Item 4, down2_item_posX, down2_item_posY
    	sleep 1000
    	ToolTip, Inventory, inv_posX, inv_posY
    	sleep 1000
    }
    
    *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, up_item_posX, 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
    	ToolTip, Item 2, up2_item_posX, 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
    	ToolTip, Item 3, down_item_posX, 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
    	ToolTip, Item 4, down2_item_posX, 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
    	ToolTip, Inventory, inv_posX, inv_posY
    return
    Quick video:

    basically just put your mouse in your first item and press numpad1
    put in the second item press numpad2
    until numpad 4
    and then use numpad5 in your character head in your tab menu
    then just close the config .ahk and use the fast loot .ahk
    Last edited by ninjaman4bit; 11-12-2017 at 06:38 PM.

  7. The Following User Says Thank You to ninjaman4bit For This Useful Post:

    smokersix (11-12-2017)

  8. #22
    jackson7015's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Can not use the mouse target as a reference point ?
    hotkey is alt+mouse1

  9. #23
    smokersix's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    That works extremely well with the config. Thumbs up!

  10. #24
    OriginAIO's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Location
    USA
    Posts
    210
    Reputation
    33
    Thanks
    2,610
    My Mood
    Amused
    Nice release!! I did have some issues in the beginning up it someone how fixed 1440p isn’t working.

  11. #25
    ninjaman4bit's Avatar
    Join Date
    Oct 2017
    Gender
    male
    Posts
    24
    Reputation
    10
    Thanks
    204
    My Mood
    Fine

  12. #26
    Sparta18's Avatar
    Join Date
    Sep 2017
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    I will try it now.

  13. #27
    talha10com's Avatar
    Join Date
    Jan 2017
    Gender
    male
    Posts
    27
    Reputation
    10
    Thanks
    7
    is it working? Is there a risk of Ban?

  14. #28
    I love myself
    나도 너를 사랑해

    Former Staff
    Premium Member
    Jhem's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Location
    167,646,447
    Posts
    5,150
    Reputation
    1220
    Thanks
    7,394
    My Mood
    Stressed
    Quote Originally Posted by talha10com View Post
    is it working? Is there a risk of Ban?
    it is working, there is no probably risk for the ban cuz it is just a mouse script that.

  15. #29
    talha10com's Avatar
    Join Date
    Jan 2017
    Gender
    male
    Posts
    27
    Reputation
    10
    Thanks
    7
    I know, AHK on the black list. Right now, I'm not sure some one can use it safely.
    @Jhems

  16. #30
    Rhyss's Avatar
    Join Date
    May 2018
    Gender
    male
    Posts
    45
    Reputation
    10
    Thanks
    2
    My Mood
    Fine
    Thanks alot!

Page 2 of 10 FirstFirst 1234 ... LastLast

Similar Threads

  1. [Outdated] Team Destroy CrossFire Europe TriggerBot V2 | All Resolutions!
    By berryh in forum CrossFire Europe Hacks
    Replies: 820
    Last Post: 11-11-2012, 04:44 AM
  2. [Outdated] Mailbox Retriever, all resolutions supported, color detection added
    By maddoggy00 in forum Vindictus Hacks & Cheats
    Replies: 12
    Last Post: 04-21-2012, 12:00 AM
  3. [Outdated] Mailbox Retriever, all resolutions supported
    By maddoggy00 in forum Vindictus Hacks & Cheats
    Replies: 11
    Last Post: 04-19-2012, 10:26 PM
  4. [Release] [27.12.2010]New Fast ijji Account Maker (faster)
    By TGH Zero. in forum Soldier Front Hacks
    Replies: 18
    Last Post: 01-15-2011, 02:52 PM
  5. [Preview] Fast Reload All Weapons, Faster ROF
    By heydiddledagain in forum CrossFire Mods & Rez Modding
    Replies: 13
    Last Post: 07-04-2010, 10:37 AM