[AHK] Lazy script for low cost shipment menu

User Tag List

Results 1 to 5 of 5
  1. #1
    ragingdemon's Avatar Member
    Reputation
    2
    Join Date
    Jul 2018
    Posts
    3
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [AHK] Lazy script for low cost shipment

    Because i don't care for maintaining high gold cost of the town, i use this script to send 1 Verisum Bar and 55 Dust to Riben Fell, this gives 3 scarabs and 2 runes per ship. Coordinates are hard coded for 1920x1080, maybe you can get some AI to give you equivalent pixels for your resolution. Use Ctrl+P to activate, this will prepare shipments, select port, and sent them.
    If you wish to change the shipments change the Value function.

    Code:
    #NoEnv   ; Recommended for performance and compatibility with future AutoHotkey releases.
    #Warn   ; Enable warnings to assist with detecting common errors.
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
    
    #IfWinActive  ahk_exe PathOfExile.exe
    
    ^p:: ; This is the hotkey for Ctrl+P
        BlockInput 1
        SetDefaultMouseSpeed, 8 ; The speed to move the mouse in the range 0 (fastest) to 100 (slowest). A speed of 0 will move the mouse instantly.
        shipment()
        selectPort()
        sail()
        BlockInput 0
    return
    
    sail()
    {
        MouseMove 406, 255
        Click
        MouseMove 406, 505
        Click
        MouseMove 406, 754
        Click
    }
    
    shipment()
    {
        MouseMove 406, 88
        Click
        value()
        MouseMove 406, 337
        Click
        value()
        MouseMove 406, 586
        Click
        value()
    }
    
    selectPort()
    {
        MouseMove 406, 255
        Click
        MouseMove 1150, 410
        Click
        MouseMove 406, 505
        Click
        MouseMove 1150, 410
        Click
        MouseMove 406, 754
        Click
        MouseMove 1150, 410
        Click
    }
    
    value()
    {
        MouseMove 750, 482
        Click
        SendInput "1"
        MouseMove 750, 641
        Click
        SendInput "55"
        MouseMove 750, 675
        Click
    }

    [AHK] Lazy script for low cost shipment
  2. Thanks azamatw (1 members gave Thanks to ragingdemon for this useful post)
  3. #2
    camapxam's Avatar Active Member
    Reputation
    27
    Join Date
    Nov 2009
    Posts
    311
    Thanks G/R
    250/23
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ragingdemon View Post
    Because i don't care for maintaining high gold cost of the town, i use this script to send 1 Verisum Bar and 55 Dust to Riben Fell, this gives 3 scarabs and 2 runes per ship. Coordinates are hard coded for 1920x1080, maybe you can get some AI to give you equivalent pixels for your resolution. Use Ctrl+P to activate, this will prepare shipments, select port, and sent them.
    If you wish to change the shipments change the Value function.

    Code:
    #NoEnv   ; Recommended for performance and compatibility with future AutoHotkey releases.
    #Warn   ; Enable warnings to assist with detecting common errors.
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
    
    #IfWinActive  ahk_exe PathOfExile.exe
    
    ^p:: ; This is the hotkey for Ctrl+P
        BlockInput 1
        SetDefaultMouseSpeed, 8 ; The speed to move the mouse in the range 0 (fastest) to 100 (slowest). A speed of 0 will move the mouse instantly.
        shipment()
        selectPort()
        sail()
        BlockInput 0
    return
    
    sail()
    {
        MouseMove 406, 255
        Click
        MouseMove 406, 505
        Click
        MouseMove 406, 754
        Click
    }
    
    shipment()
    {
        MouseMove 406, 88
        Click
        value()
        MouseMove 406, 337
        Click
        value()
        MouseMove 406, 586
        Click
        value()
    }
    
    selectPort()
    {
        MouseMove 406, 255
        Click
        MouseMove 1150, 410
        Click
        MouseMove 406, 505
        Click
        MouseMove 1150, 410
        Click
        MouseMove 406, 754
        Click
        MouseMove 1150, 410
        Click
    }
    
    value()
    {
        MouseMove 750, 482
        Click
        SendInput "1"
        MouseMove 750, 641
        Click
        SendInput "55"
        MouseMove 750, 675
        Click
    }
    this is for fullscreen 1920x1080, let me ask some ai to make it window

  4. #3
    ragingdemon's Avatar Member
    Reputation
    2
    Join Date
    Jul 2018
    Posts
    3
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I use it with window borderless.

  5. #4
    camapxam's Avatar Active Member
    Reputation
    27
    Join Date
    Nov 2009
    Posts
    311
    Thanks G/R
    250/23
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ragingdemon View Post
    I use it with window borderless.
    that's poe's window fullscreen, i play it in window, it has title bar, so i have to +30 to all the Y

  6. #5
    Mencius's Avatar Member
    Reputation
    1
    Join Date
    May 2009
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    FYI, 2 bars and 2 dust does the exact same thing.

Similar Threads

  1. Replies: 29
    Last Post: 05-30-2024, 09:00 PM
  2. [Auto-Clicker] [AHK] Simple script for expedition: Gwennen - buy highlighted items+reroll with hotkey
    By letalko in forum PoE Bots and Programs
    Replies: 7
    Last Post: 12-30-2023, 04:30 PM
  3. [Release] [AHK] Simple script for expedition: Tujen Haggle - quick buy/reroll with hotkey
    By xerance in forum PoE Bots and Programs
    Replies: 77
    Last Post: 09-16-2023, 07:16 AM
  4. [Bot] WTB AHK custom Script for Elite dangerous! [Serious Only]
    By BAKERKUSH in forum MMO Exploits|Hacks
    Replies: 0
    Last Post: 08-17-2018, 10:39 AM
  5. Easy Greater Nether Essence gathering for low cost
    By statsministern in forum World of Warcraft Guides
    Replies: 3
    Last Post: 09-28-2008, 09:45 AM
All times are GMT -5. The time now is 06:22 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search